.restaurants-hero-image {
    position: relative;
    min-height: calc(100vh - 76px);
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background-image: url('../images/site/restaurants-hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: inset 0 -80px 120px rgba(0, 0, 0, 0.2);
}

.restaurants-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.restaurants-hero-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.restaurants-hero-content h1 {
    margin: 0 0 0.9rem;
    max-width: 980px;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    margin-left: auto;
    margin-right: auto;
}

.restaurants-hero-content p {
    margin: 0;
    max-width: 980px;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .restaurants-hero-image {
        min-height: calc(88vh - 60px);
    }

    .restaurants-hero-content {
        min-height: calc(88vh - 60px);
        text-align: center;
    }
}
