.hero {
    position: relative;
    height: 30rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 992px) {
    .hero {
        height: 40rem;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(80px);
    animation: fadeUp 1.8s ease forwards;
    animation-delay: 0.2s;
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    max-width: 900px;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.4s;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero p {
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 600px;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons a {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: #f87171;
    color: white;
}

.btn-primary-custom:hover {
    background: #fca5a5;
    color: #111827;
}

.btn-secondary-custom {
    border: 1px solid white;
    color: white;
}

.btn-secondary-custom:hover {
    background: #e5e7eb;
    color: #111827;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}