/* =====================================================
   DIARI.CSS
   Stili per le pagine dei diari di viaggio
   Mare A Vela
===================================================== */


/* =====================================================
   FOTO PRINCIPALE DEL VIAGGIO
===================================================== */

.foto-copertina-diario {

    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    transition: .25s;

}


.foto-copertina-diario:hover {

    transform: scale(1.01);

}



/* =====================================================
   BOX VIAGGIO IN BREVE
===================================================== */

.box-viaggio {

    background: #f5f8fa;
    border: 1px solid #d9e2e8;
    border-radius: 12px;
    padding: 25px;
    height: 100%;

}


.box-viaggio h3 {

    color: #004080;
    font-size: 28px;
    margin-bottom: 20px;

}


.box-viaggio ul {

    list-style: none;
    padding: 0;
    margin: 0;

}


.box-viaggio li {

    padding: 7px 0;
    font-size: 17px;

}



/* =====================================================
   ITINERARIO
===================================================== */

.box-itinerario {

    text-align: center;

}


.itinerario-img {

    max-width:100%;
    max-height:360px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
    transition:.25s;

}


.itinerario-img:hover {

    transform:scale(1.02);

}



/* =====================================================
   SEZIONI GIORNATE
===================================================== */

section.giorno {

    max-width:1100px;
    margin:70px auto;
    padding-bottom:50px;
    border-bottom:1px solid #e5e5e5;

}


section.giorno:last-child {

    border-bottom:none;

}



/* =====================================================
   HEADER GIORNATA
   TESTO SINISTRA + FOTO DESTRA
===================================================== */

.giorno-header {

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    margin-bottom:35px;

}


.giorno-info {

    flex:1;

}


/* FOTO QUADRATA */

.giorno-foto-header {

    flex:0 0 280px;
    display:flex;
    justify-content:flex-end;

}


.giorno-foto-header img {

    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);

}



/* =====================================================
   TITOLO GIORNATA
===================================================== */

section.giorno h2 {

    font-size:15px !important;
    line-height:1.2 !important;
    color:#7a8a94 !important;
    font-weight:600 !important;
    letter-spacing:3px;
    margin:0 0 12px 0 !important;
    text-transform:uppercase;

}


.data-giorno {

    font-size:17px;
    font-weight:400;
    color:#555;
    margin-bottom:15px;

}



/* =====================================================
   FRASE EMOZIONALE
===================================================== */

.titolo-emozionale {

    font-size:32px;
    line-height:1.2;
    font-style:normal;
    font-weight:500;
    color:#004f6d;
    margin-bottom:15px;
    letter-spacing:-0.5px;

}



/* =====================================================
   TRATTA
===================================================== */

section.giorno h4 {

    font-size:14px !important;
    line-height:1.3 !important;
    color:#888;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    padding-top:0;
    margin:15px 0 0 0;

}



/* =====================================================
   TESTO DIARIO
===================================================== */

.giorno-testo {

    width:100%;

}


.giorno-testo p {

    margin-top:0;
    margin-bottom:6px;
    font-size:17px;
    line-height:1.55;
    color:#333;
    text-align:justify;

}



/* =====================================================
   TORNA ALL'INIZIO
===================================================== */

.torna-su {

    text-align:right;
    margin-top:25px;

}


.torna-su a {

    text-decoration:none;
    color:#0d6efd;
    font-size:15px;

}


.torna-su a:hover {

    text-decoration:underline;

}
/* =====================================================
   INTRODUZIONE ALLA GALLERIA FOTOGRAFICA
===================================================== */

.titolo-galleria {

    text-align:center;
    color:#004080;
    font-size:26px;
    margin-top:50px;
    margin-bottom:10px;

}


.introduzione-galleria {

    text-align:center;
    color:#666;
    font-size:16px;
    margin-bottom:30px;

}


/* =====================================================
   CALL TO ACTION
===================================================== */

.box-partecipa {

    max-width:1100px;
    margin:45px auto;
    padding:0;
    text-align:center;

}


.box-partecipa .box-viaggio {

    background:#f5f8fa;
    border:1px solid #d9e2e8;
    border-radius:12px;
    padding:30px;

}


.box-partecipa h3 {

    font-size:18px;
    font-weight:700;
    color:#004080;
    margin:0 0 15px;
    line-height:1.4;

}



/* =====================================================
   PULSANTI
===================================================== */

.cta-btn {

    display:inline-block;
    min-width:90px;
    padding:6px 12px;
    margin:4px;
    background:#004080;
    color:#ffffff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:11px;
    font-weight:600;
    letter-spacing:.5px;
    border:1px solid #004080;
    border-radius:4px;
    transition:all .25s ease;
    box-shadow:0 2px 6px rgba(0,0,0,.15);

}


.cta-btn:hover {

    background:#0d6efd;
    border-color:#0d6efd;
    color:#ffffff;
    text-decoration:none;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,.20);

}


.cta-btn:active {

    transform:translateY(0);

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px) {


    section.giorno {

        margin:40px 15px;

    }



    section.giorno h2 {

        font-size:20px !important;

    }



    .data-giorno {

        font-size:16px;

    }



    .titolo-emozionale {

        font-size:20px;

    }



    section.giorno h4 {

        font-size:17px;

    }



    /* HEADER MOBILE */

    .giorno-header {

        flex-direction:column;
        gap:25px;
        align-items:stretch;

    }



    /* FOTO MOBILE */

    .giorno-foto-header {

        width:100%;
        justify-content:center;

    }



    .giorno-foto-header img {

        width:100%;
        height:auto;
        aspect-ratio:1 / 1;
        object-fit:cover;

    }


    .giorno-testo p {

    font-size:16px;
    line-height:1.55;

}



    .box-partecipa {

        padding:20px;
        margin:40px 15px;

    }


    .box-partecipa h2 {

        font-size:20px;
        line-height:1.35;

    }


    .box-partecipa p {

        font-size:15px;

    }


}