/* 🔥 Kill Bootstrap navbar interference */
.site-nav,
.site-nav * {
    box-sizing: border-box;
}

.site-nav .nav,
.site-nav .navbar,
.site-nav .navbar-nav,
.site-nav .nav-link {
    all: unset;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #999;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
}




.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
}









/* 🎯 Navbar Styles */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: height 0.3s ease, background-color 0.3s ease;
}


/* 🔥 Exaggerated Shrinking Effect */
.site-nav.shrink {
    height: 65px;
    background-color: rgba(0, 0, 0, 0.95);
}

/* 🔹 Navbar Layout */
.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease-in-out;
}



.nav-brand .brand-text {
    font-family: 'Satisfy', cursive;
    padding-right: 100px; 
    font-size: 32px;
    font-weight: bold;
    color: #C9A227;
    text-decoration: none;
    text-shadow:
        1px 1px 0 rgba(0,0,0,0.6),
        -1px -1px 0 rgba(0,0,0,0.6),
        1px -1px 0 rgba(0,0,0,0.6),
        -1px 1px 0 rgba(0,0,0,0.6);
    transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}


/* Brighter Gold on Hover */
.nav-brand .brand-text:hover {
    color: #FFD95A; /* Light-reflective gold */
}





.nav-brand .brand-text {
    text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        1px 0 2px rgba(0,0,0,0.85),
       -1px 0 2px rgba(0,0,0,0.85),
        0 -1px 2px rgba(0,0,0,0.85);
}







/* ⏬ Shrink logo text slightly when scrolling */
.site-nav.shrink .nav-brand .brand-text {
    font-size: 24px; /* Shrinks text more */
}

/* 🔹 Navigation Links (Right) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    transition: margin 0.3s ease-in-out;
}



/* 🔹 Menu Links */
.nav-links a, .logout-btn {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #999;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, padding 0.3s ease-in-out, transform 0.3s ease-in-out;
}



/* 🔹 Adjust link alignment */
.site-nav.shrink .nav-links a {
/*    padding: 0.3rem 1rem; */
    transform: translateY(0); /* Remove unnecessary upward shift */
}

/* Hover Effect */
.nav-links a:hover, .logout-btn:hover {
    color: white;
}

/* 🔹 Logout Button Styling */
.logout-btn {
    background: none;
    border: none;
    cursor: pointer;
}

/* 📱 Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 35px;
    transition: top 0.3s ease-in-out;
}

/* ⏫ Move mobile menu icon when navbar shrinks */
.site-nav.shrink .menu-toggle {
    top: 15px;
}

/* 📱 Mobile Menu Styles */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px;
        transition: top 0.3s ease-in-out;
    }

    .site-nav.shrink .nav-links {
        top: 60px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        right: 50px;
    }
}














.logout-btn {
    background: none;
    border: none;
/*    color: inherit;*/
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    display: block; /* Forces it to behave like other links */
    width: 100%; /* Ensures it takes up the full space like <a> */
    text-align: left; /* Matches other list items */
}

/* Ensure the <li> containing the form behaves like the others */
li form {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns with other menu items */
}











.admin-panel .nav-links {
    margin-left: 0 !important; /* Remove the left margin */
    justify-content: center; /* Center align menu items */
}











.site-nav a,
.site-nav .brand-text {
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}




