/**
 * Widget: restaurant|hero-content
 * Sezione crema: a sinistra pannello chiaro con il contenuto, a destra la gallery
 * (slider con frecce, componente reveal-gallery). Tutte le regole scopate sotto
 * .restaurant-hero-content.
 */

.restaurant-hero-content {
    display: block;
    background-color: var(--website-color-secondary, #E9DEC7);
    padding: clamp(40px, 6vw, 80px) 0;
}
.restaurant-hero-content .restaurant-hero-content-inner {
    max-width: var(--website-container-max-width, 1440px);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
}

/* Pannello testo (sinistra) */
.restaurant-hero-content .restaurant-hero-content-panel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--website-color-light, #FFFAF0);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}
.restaurant-hero-content .restaurant-hero-content-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--website-color-txt-body, #4D5359);
    font-size: 1rem;
    line-height: 1.6;
}
.restaurant-hero-content .restaurant-hero-content-text > :first-child { margin-top: 0; }
.restaurant-hero-content .restaurant-hero-content-text > :last-child { margin-bottom: 0; }
.restaurant-hero-content .restaurant-hero-content-text h2,
.restaurant-hero-content .restaurant-hero-content-text h3,
.restaurant-hero-content .restaurant-hero-content-text h4 {
    margin: 0;
    font-family: 'Erode', serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--website-color-txt-title, #3D3D3D);
    line-height: 1.1;
}
.restaurant-hero-content .restaurant-hero-content-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.restaurant-hero-content .restaurant-hero-content-text h3 { font-size: 1.7rem; }
.restaurant-hero-content .restaurant-hero-content-text h4 { font-size: 1.2rem; }
.restaurant-hero-content .restaurant-hero-content-text p { margin: 0; }

/* Gallery (destra) */
.restaurant-hero-content .restaurant-hero-content-gallery {
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
    aspect-ratio: 1;
    background: rgba(12, 10, 9, 0.12);
}
.restaurant-hero-content .restaurant-hero-content-img,
.restaurant-hero-content .reveal-gallery-slide picture { width: 100%; height: 100%; display: block; }
.restaurant-hero-content .restaurant-hero-content-img { object-fit: cover; }

@media (max-width: 767.98px) {
    .restaurant-hero-content .restaurant-hero-content-inner { grid-template-columns: 1fr; }
    .restaurant-hero-content .restaurant-hero-content-gallery { min-height: 0; aspect-ratio: 4 / 3; }
}
