/* HERO PAGINA */
.page-hero {
    background: linear-gradient(to bottom, #f7e0ea, #f3d2e2);
    padding: 20px 0;
    text-align: center;
}

.page-hero h1 {
    font-family: "Quicksand", sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #111;
}

.page-hero p {
    font-size: 1.2rem;
    color: #444;
}

/* CONTENUTO */
.scuola-content {
    padding: 60px 0;
}

.scuola-descrizione h2,
.scuola-galleria h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

.scuola-descrizione p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

/* Galleria Immagini */
.galleria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.galleria img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    background: #fff;
    padding: 6px;
    border: 1px solid rgba(231, 177, 200, 0.45);

    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.12),
        0 8px 18px rgba(0, 0, 0, 0.10),
        0 14px 28px rgba(0, 0, 0, 0.08);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: zoom-in;
}

/* Effetto hover 3D */
.galleria img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.18),
        0 14px 28px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.12);
}