/* public\assets\css\navbar.css */
.site-navbar {
    background: #ffffff !important;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 9999; 
    width: 100%;
    font-family: 'Inter', sans-serif !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 75px; 
    width: auto;
    display: block;
}


.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333 !important;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}
.nav-links {
    display: flex;
    align-items: center;
    
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #555 !important; 
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif !important;
}

.nav-links a:hover {
    color: #C9A14A !important; 
}

.admin-link {
    border: 1px solid #333 !important;
    padding: 7px 18px !important;
    border-radius: 4px;
}

/* Hide hamburger on desktop */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
}

/* --- MOBILE RESPONSIVE NAV --- */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* Show icon on mobile */
    }
    .nav-container {
        flex-direction: row; /* Keep logo and hamburger on one line */
        justify-content: space-between;
    }

    .logo img {
        height: 50px; /* Smaller logo for mobile screens */
    }

    .nav-links {
        display: none; /* Hide menu by default */
        position: absolute;
        top: 100%; /* Sits right below the navbar */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .admin-link {
        margin-top: 10px; /* Separation for the admin button */
        padding: 5px 12px !important;
    }
}


/* Extra Small Devices (Very narrow phones) */
@media (max-width: 480px) {
    .nav-links {
        flex-direction: column; /* Full vertical stack for very small screens */
        gap: 12px;
    }
    
    .nav-links a {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}