/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.9)), url('../../images/hero.png') center/cover no-repeat;
    color: var(--neutral);
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 70px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent);
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
        min-height: 60vh;
    }
}