/* ========== HEADER & NAVIGATION ========== */
header {
    background: linear-gradient(135deg, var(--violet-dusty), var(--grape-muted));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(143, 130, 170, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0 !important;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60px;
    width: 100%;
}

/* Mobile Logo (visible only on mobile) */
.mobile-logo {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 0;
    margin: 0;
}

/* Navigation */
nav {
    display: block;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-fast);
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
}

nav a .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

nav a .nav-text {
    display: inline-block;
    position: relative;
    transition: color var(--transition-fast);
}

nav a:hover .nav-icon {
    transform: scale(1.1);
    color: var(--golden-yellow);
}

nav a:hover .nav-text {
    color: var(--golden-yellow);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--golden-yellow), var(--sage-green));
    transition: width var(--transition-fast);
}

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

nav a.active {
    color: var(--golden-yellow);
}

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.nav-overlay.active {
    display: block;
}