/* Hero Block */

.hero-block {
    position: relative;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(199, 62, 58, 0.6) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.hero-search-form {
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-stat strong {
    color: #fff;
    font-weight: 600;
}

/* Responsive hero */
@media (min-width: 400px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-block {
        min-height: 40vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .hero-block {
        min-height: 45vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}
