/* ===== LT MENU MODAL ===== */

.ltmm-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    isolation: isolate;
}

/* Pulsante hamburger */
.ltmm-trigger {
    width: 74px;
    height: 58px;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 5px;
    background: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    appearance: none;
    -webkit-appearance: none;
}

.ltmm-trigger:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 38px rgba(0,0,0,0.22);
}

.ltmm-trigger:focus-visible,
.ltmm-close:focus-visible,
.ltmm-booking-btn:focus-visible,
.ltmm-social:focus-visible,
.ltmm-nav-menu a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.ltmm-trigger-lines {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ltmm-trigger-lines span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #000000;
    border-radius: 999px;
}

/* Modale */
.ltmm-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 2147483000;
}

.ltmm-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ltmm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ltmm-panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    color: #ffffff;
    overflow-y: auto;
    z-index: 2147483001;
}

.ltmm-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 34px;
    text-align: center;
    gap: 0;
}

/* Colonna centrale elegante */
.ltmm-logo-wrap,
.ltmm-nav,
.ltmm-booking-buttons,
.ltmm-socials {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ltmm-logo-wrap {
    margin-bottom: 18px;
    text-align: center;
}

.ltmm-logo {
    max-width: 190px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: 25px;
}

/* Bottone chiusura */
.ltmm-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.ltmm-close:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.55);
}

.ltmm-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.ltmm-close span:first-child {
    transform: rotate(45deg);
}

.ltmm-close span:last-child {
    transform: rotate(-45deg);
}

/* Menu */
.ltmm-nav {
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.ltmm-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.ltmm-nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ltmm-nav-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.ltmm-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(22px, 2.7vw, 38px);
    line-height: 1.04;
    font-weight: 550;
    letter-spacing: 0.03em;
    display: block;
    width: 100%;
    text-align: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.ltmm-nav-menu a:hover {
    opacity: 0.72;
}

.ltmm-nav-menu > li:first-child > a {
    color: #000000;
    background: #dbd7b4;
    border-radius: 0;
    display: inline-block;
    width: auto;
    padding: 8px 16px;
}

/* Pulsanti prenotazione */
.ltmm-booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.ltmm-booking-btn {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,0.38);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.ltmm-booking-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* Social */
.ltmm-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ltmm-social {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.ltmm-social:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.55);
}

.ltmm-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* Body lock */
body.ltmm-no-scroll {
    overflow: hidden;
}

/* Tablet */
@media (max-width: 980px) {
    .ltmm-trigger {
        width: 66px;
        height: 52px;
    }

    .ltmm-inner {
        padding: 66px 20px 28px;
    }

    .ltmm-logo-wrap,
    .ltmm-nav,
    .ltmm-booking-buttons,
    .ltmm-socials {
        max-width: 520px;
    }

    .ltmm-logo-wrap {
        margin-bottom: 14px;
    }

    .ltmm-logo {
        max-width: 155px;
    }

    .ltmm-nav {
        margin-bottom: 14px;
    }

    .ltmm-nav-menu {
        max-width: 460px;
    }

    .ltmm-nav-menu li:not(:last-child) {
        margin-bottom: 8px;
    }

    .ltmm-nav-menu a {
        font-size: clamp(20px, 4vw, 30px);
        line-height: 1.03;
        white-space: nowrap;
    }

    .ltmm-booking-buttons {
        gap: 9px;
        margin-bottom: 15px;
    }

    .ltmm-booking-btn {
        min-height: 45px;
        font-size: 11px;
        padding: 11px 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ltmm-close {
        top: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .ltmm-close span {
        width: 20px;
    }

    .ltmm-inner {
        padding: 38px 18px 20px;
    }

    .ltmm-logo-wrap,
    .ltmm-nav,
    .ltmm-booking-buttons,
    .ltmm-socials {
        max-width: 360px;
    }

    .ltmm-logo-wrap {
        margin-bottom: 8px;
    }

    .ltmm-logo {
        max-width: 128px;
    }

    .ltmm-nav {
        margin-bottom: 12px;
    }

    .ltmm-nav-menu {
        max-width: 320px;
    }

    .ltmm-nav-menu li:not(:last-child) {
        margin-bottom: 12px;
    }

    .ltmm-nav-menu a {
        font-size: clamp(15px, 4.6vw, 22px);
        line-height: 1.15;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    .ltmm-booking-buttons {
        gap: 8px;
        margin-bottom: 12px;
    }

    .ltmm-booking-btn {
        min-height: 42px;
        font-size: 10px;
        letter-spacing: 0.05em;
        padding: 10px 14px;
    }

    .ltmm-socials {
        gap: 12px;
    }

    .ltmm-social {
        width: 38px;
        height: 38px;
    }

    .ltmm-social svg {
        width: 14px;
        height: 14px;
    }
}