/* Custom Styles & VFX for Chaina Delights Coming Soon Page */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #C8102E;
    --primary-glow: rgba(200, 16, 46, 0.4);
    --accent: #E5A93C;
    --accent-glow: rgba(229, 169, 60, 0.3);
    --dark: #0B0F19;
    --dark-surface: rgba(15, 23, 42, 0.7);
    --veg-green: #10B981;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark);
    color: #F8FAFC;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090D16;
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Canvas background overlay */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Mouse cursor glow */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.12) 0%, rgba(229, 169, 60, 0.05) 40%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: width 0.3s, height 0.3s;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 169, 60, 0.4);
    box-shadow: 0 20px 40px -15px rgba(200, 16, 46, 0.25);
}

/* Floating Animations */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.08); }
}

@keyframes steamUp {
    0% { opacity: 0; transform: translateY(0) scaleX(1); }
    30% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-80px) scaleX(1.4); }
}

.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.animate-float-reverse {
    animation: floatReverse 7s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Steam particles */
.steam-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    pointer-events: none;
    z-index: 10;
}
.steam-particle {
    position: absolute;
    bottom: 0;
    width: 25px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: steamUp 3.5s ease-out infinite;
}
.steam-1 { left: 20%; animation-delay: 0s; }
.steam-2 { left: 50%; animation-delay: 1.2s; }
.steam-3 { left: 80%; animation-delay: 2.1s; }

/* Glowing Text Gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFF 0%, #E5A93C 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-fire {
    background: linear-gradient(135deg, #FF6B6B 0%, #C8102E 50%, #E5A93C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Countdown Box */
.countdown-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(229, 169, 60, 0.25);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.countdown-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px -5px var(--primary-glow);
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}
.btn-glow:hover::before {
    transform: scale(1);
}

/* Custom Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #070A12;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
