body {
    zoom: 90%; /* Consider removing this if it causes issues */
    
}


.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

footer {
    background-color: #f9f9f9;
    color: #9c8a5a;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&family=Rufina:wght@400;700&display=swap');

:root {
    --primary: #9c8a5a;
    --primary-light: #b9a87d;
    --primary-dark: #7d6d48;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-primary: 'Rufina', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    

}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.top-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
    transition: var(--transition);
    height: 70px;
    letter-spacing: 0.5px;
    position: relative; 
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 6px;
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

/* New tour-info styles */
.tour-info {
    position: relative;
    padding: 0 15px;
}

.tour-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--light-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(156, 138, 90, 0.1), rgba(156, 138, 90, 0.2));
    border-radius: 25px;
    transition: var(--transition);
    display: inline-block;
}

.tour-text:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.tour-text:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.tour-info:hover .tour-text {
    color: var(--primary);
    background: linear-gradient(45deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-info:hover .tour-text:before,
.tour-info:hover .tour-text:after {
    opacity: 1;
}



.navbar {
    background-color: rgba(26, 26, 26, 0.2);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; 
    color: var(--light-color); ;
}

.navbar.scrolled {
    background-color: var(--light-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 80px;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1001; /* Higher than header to appear above */
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-brand {
    position: relative;
    padding: 0 10px;
}

.navbar-brand:before, .navbar-brand:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.navbar-brand:before {
    left: -5px;
}

.navbar-brand:after {
    right: -5px;
}

.navbar-brand:hover:before, .navbar-brand:hover:after {
    opacity: 1;
}

.navbar-brand a {
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.luxury-text {
    font-size: 40px;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 6px;
    margin-bottom: -5px;
}

.tours-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 10px;
    text-transform: uppercase;
}

.navbar.scrolled .luxury-text {
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.nav-link {
    text-decoration: none;
   color: #eee;
    font-weight: 500;
    font-size: 15px;
    padding: 38px 15px;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 30px;
    left: 15px;
    transition: var(--transition);
}

.nav-link.active:after, .nav-link:hover:after {
    width: calc(100% - 30px);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
    padding: 30px 15px;
}

.navbar.scrolled .nav-link:after {
    bottom: 22px;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary);
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--light-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    padding: 15px 0;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.dropdown-menu a:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background-color: rgba(0, 136, 204, 0.05);
    padding-left: 30px;
}

.dropdown-menu a:hover:before {
    background-color: var(--primary);
}

/* CTA Button */
.cta {
    margin-left: 15px;
}

.btn-book {
    background-color: var(--primary);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid var(--primary);
}

.btn-book:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.navbar.scrolled .btn-book:hover {
    color: var(--primary);
}


/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--light-color);
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background-color: var(--dark-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-link {
        padding: 38px 10px;
        font-size: 14px;
    }
    
    .navbar.scrolled .nav-link {
        padding: 30px 10px;
    }
    
    .nav-link:after {
        left: 10px;
    }
    
    .nav-link.active:after, .nav-link:hover:after {
        width: calc(100% - 20px);
    }
    
    .luxury-text {
        font-size: 36px;
    }
    
    .tours-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .navbar, .navbar.scrolled {
        height: 80px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--light-color);
        width: 300px;
        height: calc(100vh - 80px);
        text-align: left;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link, .navbar.scrolled .nav-link {
        color: var(--dark-color);
        padding: 15px 25px;
    }

    .nav-link:after, .navbar.scrolled .nav-link:after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-top: none;
        background-color: rgba(0, 0, 0, 0.02);
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 40px;
    }

    .cta {
        margin: 20px 25px;
    }
    
    .btn-book {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .search-box {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        height: auto;
        padding: 12px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .luxury-text {
        font-size: 32px;
    }
    
    .tours-text {
        font-size: 12px;
        letter-spacing: 8px;
    }
    
    .close-search {
        top: 20px;
        right: 20px;
    }
    
    .overlay-search-form input {
        font-size: 18px;
        padding: 15px 40px 15px 15px;
    }
    
    .overlay-search-form button {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-info, .social-icons {
        gap: 15px;
    }
     
    .navbar.scrolled{
        height: 100px;
    }

}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    animation: fadeInDown 0.6s ease forwards;
}

/* Map container styling */
.map-container {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container p {
    padding: 0 8px;
    color: #666;
    font-size: 13px;
    text-align: center;
}