/* Luxury Navigation */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-nav.scrolled {
    padding: 8px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
}

.nav-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--ivory-white);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-right: 20px;
}

.nav-item {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(248, 246, 242, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--ivory-white);
}

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

.nav-login {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--warm-gold);
    padding: 10px 16px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-login:hover {
    background: var(--warm-gold);
    color: var(--deep-charcoal);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 1px;
    background: var(--ivory-white);
    transition: all 0.3s ease;
}
