.navbar {
    background: #0a0a0a;
    border-bottom: 1px solid #a37833;
    min-height: 90px;
    padding: 0;
}

.navbar .container {
    min-height: 90px;
}

/* Logo */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.logo-img {
    width: 120px;
    height: auto;
}

.logo-small {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: white;
    margin-top: 4px;
    white-space: nowrap;
}

/* Nav Links */
.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.15em;
}

.nav-link:hover {
    border-bottom: 2px solid #a37833;
}

/* Social Icons */
.social-nav {
    display: flex;
    gap: 1.4rem;

}

.social-nav a {
    color: white;
    font-size: 1.1rem;
    transition: opacity 0.3s;
    text-decoration: none;
    /* background: #a37833;
      padding: 0.3rem 0.8rem;
      border-radius: 20px; */
}

.social-nav a:hover {
    opacity: 0.7;
}

/* Call Button */
.btn-outline-luxury {
    background: transparent;
    border: 1.5px solid #a37833;
    color: black !important;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-outline-luxury:hover {
    background: #a37833;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid #a37833 !important;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3csvg%3e") !important; */
}

/* Desktop & Tablet (≥992px) - Show desktop nav, hide mobile completely */
@media (min-width: 992px) {
    .navbar .container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
    }

    .navbar-left {
        display: flex;
        justify-content: flex-start;
        gap: 0.55rem;
    }

    .navbar-brand {
        grid-column: 2;
        justify-self: center;
    }

    .navbar-right {
        display: flex;
        margin: 0 40px;
        /* justify-content: flex-end; */
        align-items: center;
        gap: 0.55rem;
    }


    /* CRITICAL: Hide mobile elements completely */
    .navbar-toggler,
    #mobileMenu,
    .mobile-only {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Tablet specific adjustments */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem !important;
    }

    .logo-img {
        width: 100px;
    }

    .btn-outline-luxury {
        padding: 0.35rem 0.9rem;
        font-size: 0.7rem;
    }

    .social-nav {
        gap: 0.75rem;
    }

    .social-nav a {
        font-size: 1rem;
    }
}

/* Mobile (<992px) - Hide desktop nav, show mobile menu */
@media (max-width: 991px) {
    .navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    /* Hide desktop navigation completely */
    .navbar-left,
    .navbar-right {
        display: none !important;
        visibility: hidden !important;
    }

    /* Show mobile elements */
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
    }

    .navbar-brand {
        margin-right: auto;
        align-items: flex-start;
    }

    .logo-img {
        width: 100px;
    }

    /* Mobile Menu Styling */
    #mobileMenu {
        background: #0a0a0a;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
        border: 1px solid #a37833;
        width: 100%;
    }

    #mobileMenu .nav-link {
        width: 100%;
        border-bottom: 1px solid #333;
        padding: 0.75rem 0 !important;
        font-size: 1.1rem;
        display: block;
    }

    #mobileMenu .btn-outline-luxury {
        width: 100%;
        text-align: center;
        margin: 0.75rem 0;
        padding: 0.6rem;
        display: block;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .mobile-social a {
        color: white;
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .navbar {
        min-height: 70px;
    }

    .navbar .container {
        min-height: 70px;
    }

    .logo-img {
        width: 85px;
    }

    .logo-small {
        font-size: 0.45rem;
        letter-spacing: 0.2em;
    }

    #mobileMenu {
        padding: 1rem;
    }
}