:root {
    --primary-bg: #F8F8F8;
    --dark-bg: #000000;
    --light-text: #FFFFFF;
    --hover-color: #FFA500;
}

body {
    background-color: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 0.75rem;
}

.top-bar .contact-info i {
    margin-right: 0.5rem;
    color: var(--hover-color);
}

.top-bar .contact-info span {
    margin-right: 1.5rem;
}

/* Navbar Styles */
.navbar {
    background-color: var(--dark-bg);
    padding: 30px;
}

.navbar-brand {
    color: var(--light-text);
}

.navbar .navbar-toggler {
    border-color: var(--light-text);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.nav-link {
    color: var(--light-text) !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    color: var(--hover-color) !important;
}

.nav-link.active {
    color: var(--hover-color) !important;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0;
    margin-top: auto;
}

.footer h5 {
    margin-bottom: 1.5rem;
    color: var(--hover-color);
}

.footer .gallery img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer .gallery img:hover {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--dark-bg);
    color: var(--light-text);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--hover-color);
    color: var(--dark-bg);
}

/* Media Queries */
@media (max-width: 768px) {
    .top-bar .contact-info span {
        display: block;
        margin-bottom: 0.5rem;
    }
    .logo {
        left: 20px; /* Center the logo on smaller screens */
        width: 50px; /* Adjust size for mobile if needed */
    }
}

/* Logo styles */
.logo {
    position: absolute; /* Position the logo absolutely */
    top: 10px; /* Adjust this value to control the overlap */
    width: 60px; /* Set a desired width */
    height: auto; /* Maintain aspect ratio */
    z-index: 20; /* Ensure it appears above the navbar */
    max-width: 100%;
}

/*** Booking ***/
.booking {
    background: linear-gradient(rgba(244, 245, 246, 0.9), rgba(244, 245, 246, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
}
/***     background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9));
 ***/


.gallery-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: center;

}