/* ========================================
   Hero with Background Image
   ======================================== */
.hero {
    position: relative;
    min-height: 400px;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Dark overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        hsla(240, 20%, 4%, 0.7) 0%,
        hsla(240, 20%, 4%, 0.85) 50%,
        hsla(240, 20%, 4%, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero {
        min-height: 350px;
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 300px;
        padding: 50px 0;
    }
}
