/* ---- HERO SECTION ---- */
.hero-section {
    position: relative;
    min-height: 800px;
    background: url('../ASSETS/images/pagina-home/hero-section-bg.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    color: var(--text-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.526);
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.titolo {
    margin-bottom: 28px;
}

.titolo span {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.15em;
    font-weight: 400;
    opacity: 0.9;
}

.titolo h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.titolo h1 small {
    display: block;
    font-size: 0.28em;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.85;
    margin-top: 6px;
}

.prenota {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.prenota button,
button[aria-label*="Prenota"] {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.prenota button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.prenota p {
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 0.03em;
}

/* ---- CHI SIAMO ---- */
.chi-siamo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    padding: 50px 60px;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.chi-siamo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.chi-siamo div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.chi-siamo h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-dark);
    line-height: 1.3;
}

.chi-siamo p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.75;
}

.chi-siamo button {
    align-self: flex-start;
    background: var(--blue-mid);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.07em;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
}

.chi-siamo button:hover {
    background: var(--blue-section);
}

/* ---- COSA OFFRIAMO (icone) ---- */
.cosa-offriamo {
    background: var(--blue-section);
    padding: 36px 40px;
}

.list-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
    min-width: 100px;
}

.item i {
    font-size: 34px;
    opacity: 0.95;
}

.item span {
    font-size: 16px;
    max-width: 120px;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---- RISTOMONANZE---- */
.ristoMONIANZE {
    background: var(--bg-light);
    padding: 60px 40px;
    text-align: center;
}

.ristoMONIANZE h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 30px);
    margin-bottom: 36px;
    color: var(--text-dark);
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    padding: 28px 24px 20px;
    max-width: 280px;
    width: 100%;
    text-align: center;
}

.card-message p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pfp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-grey);
    margin-bottom: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nome {
    font-size: 14px;
    font-weight: 700;
}

.status {
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.06em;
}

.ristomonianze-button  {
    background: var(--blue-mid);
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
    margin-top: 10px;
}

.ristomonianze-button:hover {
    background: var(--blue-section);
}

/* ---- RISTOBLOG ---- */
.ristoBLOG {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
}

.ristoBLOG h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 36px;
    color: var(--text-dark);
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto 30px;
}

.blog-article {
    max-width: 280px;
    width: 100%;
    text-align: left;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.356);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-article:hover {
    transform: translateY(-4px);
}

.blog-photo {
    width: 100%;
    height: 170px;
    background: var(--bg-grey);
}

.blog-article h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 16px;
}

.blog-article h3 a {
    color: var(--blue-mid);
    transition: color 0.2s;
}

.blog-article h3 a:hover {
    color: var(--blue-section);
}

.ristoBLOG > a > button {
    background: var(--blue-mid);
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
}

.ristoBLOG > button:hover {
    background: var(--blue-section);
}



/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .chi-siamo {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 24px;
    }

    .hero-section {
        min-height: 300px;
        padding: 60px 20px 40px;
    }
}

@media (max-width: 480px) {
    .list-container {
        gap: 20px 30px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-container {
        flex-direction: column;
        align-items: center;
    }
}