/* Header Styling */
header.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-divider {
    width: 1px;
    height: 30px;
    background: rgba(201, 168, 76, 0.3);
}

@media (min-width: 1024px) {
    .header-divider {
        display: none;
    }
}

/* Mobile Toggle - Utensil Style */
#mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 2000;
}

.cutlery-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.1);
}

#mobile-menu-toggle.open .cutlery-icon {
    transform: rotate(90deg) scale(1.1);
}

#mobile-menu-toggle:hover .cutlery-icon {
    transform: scale(1.1);
}

#mobile-menu-toggle:hover .cutlery-icon {
    opacity: 0.8;
}

/* Mobile Nav Overlay */
#nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

#nav-menu.active {
    right: 0;
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin: 2rem 0;
}

.nav-links a {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 300;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--gold-primary);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    #mobile-menu-toggle {
        display: none;
    }

    #nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
    }

    .nav-links {
        display: flex;
        gap: 3rem;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold-primary);
        transition: var(--transition-smooth);
    }

    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }
}
