/* =========================================
   HEADER STYLES
   ========================================= */

/* Base Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.glass-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    display: inline-block;
}

.logo-gold {
    background: linear-gradient(135deg, #FFD700, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo-silver {
    background: linear-gradient(135deg, #C0C0C0, #E0E0E0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 1.5rem;
}

.desktop-nav a:hover {
    color: gold;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: gold;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-discuss {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    color: gold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }
}