/* Queen of Global Luxury LLC - Custom Stylesheet */

.gold-gradient {
    background: linear-gradient(135deg, #B38728 0%, #FBF5B7 25%, #DAA520 50%, #FBF5B7 75%, #AA771C 100%);
}

.gold-text-gradient {
    background: linear-gradient(135deg, #FBF5B7 0%, #D4AF37 50%, #9A7B3E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-shadow {
    box-shadow: 0 10px 30px -10px rgba(197, 160, 89, 0.15);
}

.luxury-shadow-hover:hover {
    box-shadow: 0 15px 35px -5px rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
}

.glassmorphism {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0B0B;
}
::-webkit-scrollbar-thumb {
    background: #C5A059;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Hero Slideshow Styles */
.hero-slide {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-color: #050505;
    background-position: center center;
    background-size: cover;
    filter: brightness(1.15) contrast(1.05);
    transition: opacity 2500ms ease-in-out;
}

@media (min-width: 1024px) {
    .hero-slide {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 1023px) {
    .hero-slide {
        background-size: cover;
        background-position: 65% center;
    }
}

/* Marquee Animation & Brand Logos */
@keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0); }
}

.animate-marquee {
    --marquee-gap: 1.5rem;
    display: flex;
    gap: var(--marquee-gap);
    width: max-content;
    animation: marquee 35s linear infinite;
    will-change: transform;
}

@media (min-width: 640px) {
    .animate-marquee {
        --marquee-gap: 2rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .animate-marquee:hover {
        animation-play-state: paused;
    }
}

.brand-logo {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-logo {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Bot-trap field: remains available to automated form fillers but not visitors. */
.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 639px) {
    .registration-header-row {
        height: auto;
        min-height: 6rem;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .registration-brand {
        min-width: 0;
        gap: 0.55rem;
    }

    .registration-brand > div:first-child {
        width: 3rem;
        height: 3rem;
        flex: 0 0 auto;
    }

    .registration-brand span {
        font-size: 0.8rem;
        letter-spacing: 0.06em;
    }

    .registration-actions {
        gap: 0.55rem;
        flex: 0 0 auto;
    }

    .registration-back span {
        display: none;
    }

    .registration-back {
        width: 2.25rem;
        height: 2.25rem;
        justify-content: center;
        border: 1px solid rgba(197, 160, 89, 0.3);
        border-radius: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Keep the brand rail discoverable, but move it more gently. */
    .animate-marquee {
        animation-duration: 70s !important;
        animation-iteration-count: infinite !important;
    }
}