/* Sacred Gold Luxury Theme */

/* Typography */
body {
    font-family: 'Outfit', sans-serif;
    color: #2b2b2b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.font-luxury {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Outfit', sans-serif;
}

/* Gold Accents */
.text-gold-500 {
    color: #D4AF37;
}

.text-gold-400 {
    color: #E5C558;
}

.bg-gold-500 {
    background-color: #D4AF37;
}

.bg-gold-600 {
    background-color: #B8860B;
}

.border-gold-500 {
    border-color: #D4AF37;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.bg-gradient-dark {
    background: linear-gradient(to bottom, #0F0518, #1A0B2E);
}

/* Glassmorphism 2.0 - Sacred Gold Edition */
.glass-gold {
    background: radial-gradient(circle at top left, rgba(45, 27, 78, 0.7) 0%, rgba(26, 11, 46, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.glass-gold:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Luxury Shimmer Animation */
.luxury-shimmer {
    position: relative;
    overflow: hidden;
}

.luxury-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(212, 175, 55, 0.1) 48%,
            rgba(212, 175, 55, 0.2) 50%,
            rgba(212, 175, 55, 0.1) 52%,
            transparent 55%);
    transform: rotate(25deg) translateX(-100%);
    animation: luxury-shimmer-move 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes luxury-shimmer-move {
    0% {
        transform: rotate(25deg) translateX(-120%);
    }

    20%,
    100% {
        transform: rotate(25deg) translateX(120%);
    }
}

@keyframes shimmer-slide {
    100% {
        transform: translateX(100%);
    }
}

/* GSAP Helper Classes */
.hero-title,
.hero-subtitle,
.section-title,
.fleet-card,
.review-card,
.journey-path {
    /* Initial state handled by JS to prevent FOUC, but good to have Opacity 0 here if JS loads fast */
}