.main-nav {
    padding: 1.6rem 5%;
    position: fixed;
    width: 100%;
    background-color: white;
    opacity: 0.98;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    padding-bottom: 1rem;
}

.brand {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--accent);
}

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

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.4rem;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-mute);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}