/**
 * HERO.CSS - Main Headers
 */

.hero {
    background: linear-gradient(135deg, #2e005c 0%, #6401c9 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 120px;
    position: relative;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero { padding: 60px 15px 100px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; }
}
