@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --color-gold: #cc9933;
    --color-gold-light: #F3E5AB;
    --color-slate-900: #0F172A;
    --color-slate-800: #1E293B;
    --color-slate-50: #F8FAFC;
    --color-orange: #FF6B00;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-slate-50);
    color: #475569;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--color-slate-300);
    color: var(--color-gold);
}

::-moz-selection {
    background: var(--color-slate-300);
    color: var(--color-gold);
}


/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.text-gold { color: var(--color-gold); }

/* .text-gold:hover { color: var(--color-gold-light); } Removed to prevent visibility issues on light backgrounds */
.stroke-gold { stroke: var(--color-gold); }
.border-gold { border-color: var(--color-gold); }
.bg-gold { background-color: var(--color-gold); }

/* Custom Classes */
.bg-pearl {
    background-color: #FAFAF9;
    background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
    background-size: 40px 40px;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B59410 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}



/* Animations */
@keyframes bounce-short {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-short {
    animation: bounce-short 0.3s ease-in-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* New Section Transition */
.section-transition {
    position: relative;
    height: 60px; /* Reduced height for a more subtle transition */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* Changed to transparent */
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent); /* Subtle gold gradient line */
}

.section-transition .icon-wrapper {
    position: relative;
    z-index: 1;
    background-color: transparent; /* Changed to transparent */
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-transition .icon-wrapper i {
    color: var(--color-gold); /* Gold icon */
    width: 24px;
    height: 24px;
}

/* Image Styles */
.image-elegant-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.image-elegant-wrapper img {
    transition: transform 0.7s ease;
}
.image-elegant-wrapper:hover img {
    transform: scale(1.05);
}

.luxury-border {
    position: relative;
}
.luxury-border::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 10;
}

/* Level Cards */
.level-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    background: white;
}

.level-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.level-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.level-bronze { border-top: 4px solid #CD7F32; }
.level-silver { border-top: 4px solid #C0C0C0; }
.level-gold { border-top: 4px solid #D4AF37; }
.level-diamond { border-top: 4px solid #22D3EE; }

.level-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.level-card:hover .level-icon-wrapper {
    transform: rotateY(180deg);
}

.bg-bronze-light { background: linear-gradient(135deg, #FFF8F0 0%, #F5E6D8 100%); }
.bg-silver-light { background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%); }
.bg-gold-light { background: linear-gradient(135deg, #FFFCF0 0%, #FDF4D4 100%); }

.text-bronze { color: #A05A2C; }
.text-silver { color: #718096; }

/* Unique Hero Styles */
.hero-unique-bg {
    background: radial-gradient(circle at 100% 0%, #FFF8F0 0%, #FFFFFF 50%, #F8FAFC 100%);
}

.hero-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: blob-float 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 20px) scale(1.1); }
}

.hero-floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
    animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.text-stroke-gold {
    -webkit-text-stroke: 1px var(--color-gold);
    color: transparent;
}

/* New Organic Background Animation */
@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(10deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.animate-drift {
    animation: drift 20s infinite ease-in-out;
}

.animate-drift-slow {
    animation: drift 30s infinite ease-in-out reverse;
}

/* Enhanced Section Styling */
.section-highlight {
    position: relative;
}

.section-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Carousel Animation */
.mask-fade-sides {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
