/* =========================================================
   HEADER - TOGGLE MENU
   ========================================================= */

/* Contenitore delle quattro linee del toggle. */
.menu-icon-lines {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    width: 52px;
    cursor: pointer;
}

/* Stile comune a tutte le linee. */
.menu-line {
    display: block;
    height: 1px;
    background-color: #FAF8F3;
    transform-origin: center;
}

/* Lunghezze differenziate per dare un aspetto meno standard. */
.line-1 {
    width: 44px;
}

.line-2 {
    width: 31px;
}

.line-3 {
    width: 52px;
}

.line-4 {
    width: 38px;
}

/* =========================================================
   HEADER - LINK PRENOTA
   ========================================================= */

/* Migliora la leggibilità del link sopra immagini chiare
   mantenendo l'effetto molto discreto. */
.header-booking-link {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}