/* 📌 Sticky Header - Always Visible */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent */
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 15px 20px;
    transition: background-color 0.3s ease-in-out;
}

/* 🔹 Flexbox for Proper Alignment */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🏷️ Keep Logo/Title on the Left */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    max-height: 50px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* 🏷️ Desktop Menu */
.desktop-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.desktop-menu li {
    display: inline-block;
}

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.desktop-menu a:hover {
    color: #ffcc00;
}

/* 📱 Mobile Menu Button */
.mobile-menu-button {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* 📱 Mobile Menu Styles */
.mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    text-align: center;
    padding: 10px 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    padding: 10px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: block;
}

/* 📱 Show Mobile Menu on Small Screens */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .desktop-menu {
        display: none; /* Hide the desktop menu */
    }
    
    .mobile-menu-button {
        display: block; /* Show mobile menu button */
    }

    /* Keep logo/title left aligned */
    .logo-container {
        flex: 1;
    }
}

/* 📱 Show Menu When Opened */
.mobile-menu.show {
    display: block;
}
