@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Marcellus&display=swap");


@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');




.navbar {
    font-family: auto !important;
    /* CHANGE 3: Transparent navbar by default */
    background: rgba(0, 0, 0, 0.17);
    box-shadow: none;
    padding: 0.4rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    border-bottom: none;
    min-height: 12vh;
    /* Fixed height */
}

.navbar.scrolled {
    /* CHANGE 3: White background when scrolled */
   background: rgba(255, 255, 255, 0.796);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px var(--shadow);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(107, 122, 63, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-family: "Montserrat", sans-serif !important;
    font-family: "Marcellus", serif !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.2rem 0;
    position: relative;
    z-index: 1000;
}

.brand-logo {
    /* CHANGE 2: Scale 2 by default, normal size when scrolled */
    width: 150px;
    height: 150px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.navbar.scrolled .brand-logo {
    width: 75px;
    height: 75px;
}

.navbar.scrolled .nav-link {
    color: rgb(15, 15, 15);
}


.navbar-brand:hover .brand-logo {
    transform: scale(1.1);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: white;
    padding: 0.6rem 1rem !important;
    margin: 0 0.1rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 122, 63, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary-olive) !important;
    background: rgba(107, 122, 63, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 122, 63, 0.15);
}

.nav-link.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, var(--primary-olive), var(--secondary-olive));
    box-shadow: 0 4px 15px rgba(107, 122, 63, 0.3);
}

.nav-link.active::before {
    display: none;
}

/* Enhanced Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    margin-top: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(107, 122, 63, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    padding: 1rem 1.8rem;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-olive);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 122, 63, 0.05), transparent);
    transition: left 0.5s;
}

.dropdown-item:hover::after {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(107, 122, 63, 0.1), rgba(139, 157, 95, 0.05));
    color: var(--primary-olive);
    transform: translateX(8px);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--secondary-olive);
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    color: var(--primary-olive);
    transform: scale(1.1) rotate(5deg);
}

/* Dropdown Arrow Animation */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* CHANGE 1: Luxury Animated Hamburger */
.navbar-toggler {
    border: none;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-olive), var(--secondary-olive));
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(107, 122, 63, 0.3);
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.navbar-toggler:hover::before {
    transform: translateX(100%);
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, var(--primary-olive), var(--primary-olive));
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(107, 122, 63, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(107, 122, 63, 0.4);
}

/* Custom Hamburger Animation */
.navbar-toggler-icon {
    display: none;
}

.hamburger-lines {
    width: 25px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1;
}

.hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-lines .line1 {
    transform-origin: 0% 0%;
}

.hamburger-lines .line3 {
    transform-origin: 0% 100%;
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines .line1 {
    transform: rotate(45deg) translate(2px, 2px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines .line2 {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines .line3 {
    transform: rotate(-45deg) translate(2px, -2px);
}

.contact-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-olive), var(--secondary-olive));
    color: white;
    padding: 0.7rem 1.1rem;
    /* Reduced padding */
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(107, 122, 63, 0.3);
    font-size: 0.9rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 122, 63, 0.4);
    color: white;
}

.social-icons {
    display: flex;
    gap: 0.3rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(107, 122, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
}

.navbar.scrolled .social-icon {
     border: 1px solid rgb(25, 53, 19);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-olive);

}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-olive);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    /* body {
        padding-top: 65px;
     
    } */

    .navbar {
        min-height: 65px;
        /* Smaller mobile navbar */
    }

    /* CHANGE 2: Logo normal size on mobile */
    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .navbar.scrolled .brand-logo {
        width: 50px;
        height: 50px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(107, 122, 63, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        color: #182113;
        text-align: center;
        padding: 0.8rem 1rem !important;
        border-radius: 10px;
        width: 100%;
    }

    /* Mobile Dropdown - Show as single list */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(107, 122, 63, 0.05);
        border: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        border-radius: 10px;
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        margin: 0.2rem 0.5rem;
        background: rgba(255, 255, 255, 0.5);
    }

    .dropdown-item:hover {
        background: rgba(107, 122, 63, 0.1);
        transform: translateX(5px);
    }

    .contact-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(107, 122, 63, 0.1);
    }

    .social-icons {
        justify-content: center;
    }

    .contact-btn {
        justify-content: center;
        width: 100%;
    }
}

/* Desktop only - Absolute positioning for large logo */
@media (min-width: 992px) {
    .navbar-brand {
        position: absolute;
        left: 2%;
        transform: translateX(-50%);
        top: -21px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgb(0, 0, 0);
        border: var(--primary-color) 1px solid;
    }

    .navbar.scrolled .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
        top: auto;
    }

    .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }

    .container {
        position: relative;
    }
}

/* Demo Content */
.demo-content {
    padding: 4rem 0;
    text-align: center;
}

.demo-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-olive);
    margin-bottom: 1rem;
}

.demo-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Loading Animation */
.navbar-brand .brand-logo {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(107, 122, 63, 0.2);
    }

    50% {
        box-shadow: 0 6px 25px rgba(107, 122, 63, 0.4);
    }

    100% {
        box-shadow: 0 4px 15px rgba(107, 122, 63, 0.2);
    }
}


/* Small-screen laptop adjustments */
@media (min-width: 900px) and (max-width: 1300px) {
  .navbar-brand {
    left: 5% !important;
    transform: translateX(0%) !important;
  }
}

.navbar-collapse,
.navbar-nav,
.navbar {
  transition: none !important;
}

html, body {
  overflow-x: hidden;
}

.navbar-collapse {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0; /* remove extra margin */
  border-radius: 0; /* optional for full-width mobile menu */
}



