/* SEZIONE CONTATTI */
.contatti {
    padding: 80px 10%;
    text-align: center;
}

.contatti h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

/* GRIGLIA CONTATTI */
.contatti-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;   /* tutte le card stessa altezza */
}

@media (max-width: 768px) {
    .contatti-box {
        grid-template-columns: 1fr; /* 1 card per riga */
        gap: 25px;
    }
}

/* CARD */
.contatto {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra il contenuto */
    min-height: 180px;       /* altezza minima uguale */
}


.contatto:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* NOME */
.contatto h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

/* NUMERO */
.numero {
    font-size: 20px;
    font-weight: 700;
    color: #97CA41;
    margin-bottom: 8px;
}

/* RUOLO */
.ruolo {
    font-size: 16px;
    color: #555;
}

/* SEGRETERIA PIÙ GRANDE */
.segreteria {
    grid-column: span 2;
}

/* SOCIAL */
.social {
    padding: 60px 10%;
    text-align: center;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.fb {
    background: #3b5998;
}

.ig {
    background: #e1306c;
}

.social-btn:hover {
    opacity: 0.8;
}

/* MAPPA */
.mappa {
    padding: 60px 10%;
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
}

/* ORARI */
.orari {
    padding: 60px 10%;
    text-align: center;
    font-size: 18px;
}

.iscrizioni {
    padding: 60px 10%;
    text-align: center;
}

.iscrizioni h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.iscrizioni p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-iscrizione {
    display: inline-block;
    padding: 14px 32px;
    background: #97CA41;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-iscrizione:hover {
    background: #7fb336;
}

.lavora {
    padding: 60px 10%;
    text-align: center;
}

.lavora h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.lavora p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.lavora-form iframe {
    border-radius: 12px;
    background: #ffffffd0;
}
