/* Luxury Minimal Navigation Banner */
.valenora-nav-banner {
    background: #050505;
    color: #F5F1E8;
    height: 70px;
    border-bottom: 1px solid rgba(216, 179, 106, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.valenora-nav-banner-inner {
    width: min(1200px, 92%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.valenora-nav-brand a {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #F5F1E8;
    text-decoration: none;
    text-transform: uppercase;
}

.valenora-nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.valenora-nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #C5BBA7;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.valenora-nav-links a:hover {
    color: #D8B36A;
}

@media (max-width: 768px) {
    .valenora-nav-banner {
        height: auto;
        padding: 1rem 0;
    }
    .valenora-nav-banner-inner {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    .valenora-nav-links {
        gap: 1.5rem;
        justify-content: center;
    }
}