/**
 * Hero Section Styles
 * Contains hero section, sticker dream hero, and related animations
 */

/* Hero Section */
.hero {
    background-image: linear-gradient(to right, rgba(44, 44, 84, 0.85), rgba(66, 133, 244, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 10px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(251, 188, 4, 0.2), transparent 70%);
    z-index: 1;
}

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

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: var(--heading-font);
    line-height: 1.2;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.hero h2::after,
.hero-headline::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background-color: var(--burgundy);
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero p {
    font-size: 1.6rem;
    font-family: var(--subheading-font);
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hero Section Enhancements */
.hero-subtitle {
    font-size: 1.4rem;
    font-family: var(--subheading-font);
    margin-bottom: 15px;
}

.hero-benefits {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
