/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                url('https://images.unsplash.com/photo-1550431320-9411933baee3?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 var(--space-6);
}

.hero-content {
    max-width: 680px;
    animation: heroFadeIn 0.8s ease-out;
}

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

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: var(--space-5);
}

.hero p {
    font-size: 1.15rem;
    max-width: 520px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.hero .btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 1.05rem;
    padding: var(--space-4) var(--space-8);
}

.hero .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
    }
}

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