/* Modern Christmas Landing Page Styles */

/* ============================================
   CHRISTMAS COLOR SCHEME
   ============================================ */
:root {
    --christmas-red: #C41E3A;
    --christmas-red-dark: #8B1538;
    --christmas-red-light: #E63946;
    --snow-white: #FFFFFF;
    --warm-cream: #FFF8F0;
    --forest-green: #2D5016;
    --gold-accent: #FFD700;
    --text-dark: #2c3e50;
}

/* ============================================
   SNOWFLAKES ANIMATION
   ============================================ */
#snowflakes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.2em;
    opacity: 0.8;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(odd) {
    animation-name: snowfall-left;
    animation-duration: 8s;
}

.snowflake:nth-child(even) {
    animation-duration: 10s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes snowfall-left {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(-100px) rotate(-360deg);
        opacity: 0.3;
    }
}

/* ============================================
   HERO SECTION - CHRISTMAS THEME
   ============================================ */
.hero-christmas {
    background: linear-gradient(135deg, var(--christmas-red-dark) 0%, var(--christmas-red) 50%, var(--christmas-red-light) 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-christmas::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 150"><path d="M0,80 Q200,40 400,80 T800,80 T1200,80 L1200,150 L0,150 Z" fill="white" opacity="0.95"/><path d="M100,90 Q150,70 200,90 T300,90" fill="none" stroke="%23C41E3A" stroke-width="2" opacity="0.3"/><path d="M500,85 Q550,65 600,85 T700,85" fill="none" stroke="%23C41E3A" stroke-width="2" opacity="0.3"/><path d="M900,88 Q950,68 1000,88 T1100,88" fill="none" stroke="%23C41E3A" stroke-width="2" opacity="0.3"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.btn-christmas-primary {
    background: var(--forest-green);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-christmas-primary:hover {
    background: #1a3a0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.btn-christmas-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-christmas-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   CHRISTMAS BADGE
   ============================================ */
.christmas-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--christmas-red-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--christmas-red-light), var(--christmas-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.section-christmas-bg {
    background: linear-gradient(to bottom, var(--warm-cream) 0%, #ffffff 100%);
    position: relative;
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--christmas-red-light);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: var(--christmas-red);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '❄️';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.cta-band::after {
    content: '🎄';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-band h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-christmas {
    background: var(--christmas-red-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-christmas a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-christmas a:hover {
    color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-christmas-red {
    color: var(--christmas-red) !important;
}

.bg-christmas-red {
    background-color: var(--christmas-red) !important;
}

.shadow-christmas {
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.15) !important;
}

.hover-text-white:hover {
    color: white !important;
}

.hover-shadow-lg {
    transition: box-shadow 0.3s ease;
}

.hover-shadow-lg:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ============================================
   BOOTSTRAP OVERRIDES
   ============================================ */
.accordion-button:not(.collapsed) {
    background-color: rgba(196, 30, 58, 0.1);
    color: var(--christmas-red);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25);
}

.card {
    border-radius: 20px;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.border-christmas-red {
    border-color: var(--christmas-red) !important;
}
