/* Qui è stato inserito tutto il css base/comune con queso elenco:
    1. reset
    2. layout generale
    5. hero
    6. componenti
    9. pagine interne
    10.3.1 google maps
    12. info card
*/
/* ============================================================
   1. RESET
============================================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* ============================================================
   2. LAYOUT GENERALE
============================================================ */
body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
    font-family:Arial, Helvetica, sans-serif;
    background:#004f9f;
    color:#161515;
    padding-top:90px;
}

main{
    flex:1;
    width:100%;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}
/* ============================================================
   5. HERO
============================================================ */
.hero{
    padding:80px 20px;
    text-align:center;
    background:#003366;
    color:white;
}

.hero h2{
    margin-bottom:20px;
    color:white;
    font-size:2.3rem;
}

.hero p{
    max-width:800px;
    margin:auto;
    margin-bottom:40px;
    font-size:1.2rem;
    line-height:1.7;
}
/* ============================================================
   6. COMPONENTI
============================================================ */
.button{
    display:inline-block;
    padding:15px 35px;
    background:#0066cc;
    color:white;
    text-decoration:none;
    font-weight:bold;
    border-radius:8px;
    transition:.3s;
}

.button:hover{
    background:#004f9f;
}
/* ============================================================
   9. PAGINE INTERNE
============================================================ */
.page-content{
    max-width:1100px;
    margin:40px auto;
    padding:40px;
    background:white;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

.page-content h2{
    margin-bottom:20px;
    color:#003366;
}

.page-content p{
    line-height:1.8;
}
/* ------------------------------------------------------------
   10.3.1 GOOGLE MAPS
------------------------------------------------------------ */
.home-map{
    margin-top:20px;
    border-radius:12px;
    overflow:hidden;
}

.home-map iframe{
    width:100%;
    height:280px;
    border:0;
    display:block;
}

.contact-map{
    margin-top:20px;
    border-radius:12px;
    overflow:hidden;
}

.contact-map iframe{
    width:100%;
    height:300px;
    border:0;
    display:block;
}
/* ============================================================
   12. INFO CARD
============================================================ */
.info-card{
    max-width:900px;
    margin:0 auto;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    text-align:center;
}

.info-card h3{
    color:#003366;
    margin-bottom:25px;
}

.info-card p{
    margin-bottom:18px;
    line-height:1.8;
}