/* CONTENITORE GENERALE */
.posa-container {
    max-width: 1300px;
    margin: 40px auto 120px auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.9;
    color: #111;
    display: flex;
    gap: 60px;
}

/* FOTO */
.posa-foto img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* TESTO */
.posa-testo {
    flex: 2;
}

/* FOTO A DESTRA SU DESKTOP */
.posa-foto {
    flex: 1;
}

/* ============================
   RESPONSIVE (TABLET + MOBILE)
   FOTO PRIMA DEL TESTO
============================ */
@media (max-width: 992px) {

    .posa-container {
        flex-direction: column;
        /* FOTO SOPRA */
        gap: 40px;
    }

    .posa-foto,
    .posa-testo {
        width: 100%;
    }
}


/* ============================
   MENU DESKTOP (≥ 992px)
============================ */
@media (min-width: 992px) {

    .hamburger {
        display: none !important;
    }

    #menu {
        display: flex !important;
        gap: 25px;
        align-items: center;
    }

    #menu li {
        list-style: none;
    }

    #menu li a {
        text-decoration: none;
        font-size: 12px;
        font-weight: 300;
        color: black;
    }
}


/* ============================
   MENU MOBILE E TABLET (≤ 991px)
============================ */
@media (max-width: 991px) {

    .hamburger {
        display: block;
        font-size: 32px;
        cursor: pointer;
        padding: 10px 15px;
        user-select: none;
    }

    /* Menu nascosto di default */
    #menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 20px 0;
        gap: 20px;
        border-top: 1px solid #ccc;
        text-align: center;
    }

    /* Quando clicchi l’hamburger */
    #menu.show {
        display: flex;
    }

    #menu li {
        list-style: none;
    }

    #menu li a {
        text-decoration: none;
        font-size: 10px;
        font-weight: 600;
        color: black;
    }

    .barra-top img {
        margin-left: -40px;
    }

}

/* ============================
   RESPONSIVE — FOTO PRIMA DEL TESTO
   (solo sotto i 992px)
============================ */
@media (max-width: 992px) {

    /* Rende il contenitore verticale */
    .posa-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* FOTO PRIMA */
    .posa-foto {
        order: 1;
        width: 100%;
    }

    /* TESTO DOPO */
    .posa-testo {
        order: 2;
        width: 100%;
    }

    /* ============================
   SISTEMAZIONE BARRA SUPERIORE
============================ */

    /* Contenitore principale della barra */
    .barra-superiore {
        width: 100%;
        background: white;
        padding: 10px 20px;
        border-bottom: 1px solid #ddd;
        margin-right: 4%
    }

    /* Allineamento orizzontale perfetto */
    .barra-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        margin-right: 4%;
    }

    /* Logo */
    .barra-top img {
        width: 85px !important;
        /* leggermente più piccolo */
    }

    /* Titolo principale */
    .siteTitle {
        font-size: 20px !important;
        /* prima era enorme */
        font-weight: 700;
        display: block;
    }

    /* Sottotitolo — NASCOSTO */
    .siteSubtitle {
        display: none !important;
    }

    /* Contenitore icone social */
    .barra-top div[style="font-size:0;"] {
        display: flex !important;
        align-items: center;
        gap: 15px;
    }

    /* Icone social */
    .barra-top img[alt="Instagram"],
    .barra-top img[alt="facebook"] {
        width: 28px !important;
        height: auto;
        margin: 0 !important;
    }

    .barra-superiore {
        margin-right: 10%;
        margin-left: -4%;
    }


}