/* ==========================================
   FONTS & VARIABILI COLORI
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Colori Base (invariati come richiesto) */
    --bg-header: #131313;
    /* Sfondo header e footer */
    --bg-body: #2b2b2b;
    /* Grigio scuro per il corpo della pagina */
    --bg-card: #1c1c1c;
    /* Sfondo card e form */
    --accent-orange: #ff6a00;
    /* Arancione brillante */
    --accent-green: #a2d973;
    /* Verde chiaro */
    --text-light: #f0f0f0;
    /* Testo chiaro */
    --text-white: #ffffff;

    /* Sfumature e Gradienti Moderni derivati */
    --bg-header-glass: rgba(19, 19, 19, 0.88);
    --bg-card-glass: rgba(28, 28, 28, 0.78);
    --accent-orange-glow: rgba(255, 106, 0, 0.45);
    --accent-orange-subtle: rgba(255, 106, 0, 0.15);
    --accent-green-glow: rgba(162, 217, 115, 0.45);
    --accent-green-subtle: rgba(162, 217, 115, 0.15);

    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-orange-glow: rgba(255, 106, 0, 0.35);
    --border-green-glow: rgba(162, 217, 115, 0.35);

    --gradient-orange: linear-gradient(135deg, #ff6a00 0%, #ff8533 50%, #ff5500 100%);
    --gradient-green: linear-gradient(135deg, #a2d973 0%, #b8e68e 100%);
    --gradient-card: linear-gradient(145deg, rgba(32, 32, 32, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.7);
    --shadow-orange: 0 10px 25px rgba(255, 106, 0, 0.28);
    --shadow-green: 0 10px 25px rgba(162, 217, 115, 0.25);
}

/* ==========================================
   RESET E STILI BASE
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-body);
    /* Sfondo moderno con bagliori ambientali caldi ispirati alla birreria */
    background-image:
        radial-gradient(circle at 10% 15%, rgba(255, 106, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 45%, rgba(162, 217, 115, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(255, 106, 0, 0.07) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Barra di scorrimento moderna personalizzata */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #131313;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 2px solid #131313;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* ==========================================
   HEADER E NAVIGAZIONE (GLASSMORPHIC & STICKY)
   ========================================== */
header {
    background-color: #131313;
    padding: 12px 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 2px solid var(--accent-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
}

header.header-scrolled {
    padding: 8px 30px;
    background-color: #131313;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 106, 0, 0.2);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    min-height: 130px;
    transition: min-height 0.35s ease;
}

header.header-scrolled .header-top {
    min-height: 85px;
}

.header-top .logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
    text-decoration: none;
}

/* Logo: fuso con l'header tramite mix-blend-mode */
.header-logo {
    height: 130px;
    width: auto;
    max-width: 250px;
    clip-path: none;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: none;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease, height 0.35s ease;
}

header.header-scrolled .header-logo {
    height: 80px;
}

.header-logo:hover {
    transform: scale(1.04);
    filter: brightness(1.15);
}

/* Titolo "L'Artista" al centro in corsivo con bagliore neon */
.header-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    color: var(--accent-orange);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(255, 106, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    transition: font-size 0.35s ease;
}

header.header-scrolled .header-title {
    font-size: 2.5rem;
}

/* Menu con voci riquadrate e pillole luminose */
nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(162, 217, 115, 0.04);
    border: 1.5px solid rgba(162, 217, 115, 0.6);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Effetto luce shimmer su hover del menu */
nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover {
    color: #000000;
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 16px rgba(162, 217, 115, 0.7), 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

nav ul li a.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.6);
}

/* ==========================================
   BADGE, DIVISORI & TIPOGRAFIA DI PRESTIGIO
   ========================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.35);
    border-radius: 30px;
    color: var(--accent-orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.15);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 8px rgba(255, 106, 0, 0.15);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
    }
}

.gradient-title {
    background: linear-gradient(135deg, #ffffff 30%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-divider {
    height: 2px;
    width: 120px;
    margin: 20px auto 30px auto;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 2px;
}

/* ==========================================
   SEZIONE PRENOTAZIONI (GLASSMORPHISM ELEVATO)
   ========================================== */
#prenotazioni {
    padding: 4.5rem 1.5rem 3rem 1.5rem !important;
    max-width: 860px !important;
    margin: auto;
    position: relative;
}

/* Bagliore d'atmosfera dietro il form */
#prenotazioni::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 350px;
    background: radial-gradient(ellipse, rgba(255, 106, 0, 0.14), transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.booking-header {
    text-align: center;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 1;
}

.booking-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.7rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.booking-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--accent-green);
    letter-spacing: 0.8px;
}

/* Form Glassmorphism */
#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    background: var(--gradient-card) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.8rem 2.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 106, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

#booking-form:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 106, 0, 0.25) !important;
    border-color: rgba(255, 106, 0, 0.35) !important;
}

/* Label personalizzati */
#booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.55rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    color: var(--accent-green) !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Campi di input moderni */
#booking-form input,
#booking-form select,
#booking-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem !important;
    background: rgba(18, 18, 18, 0.85) !important;
    color: var(--accent-green) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) inset;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-orange) !important;
    background: rgba(22, 22, 22, 0.95) !important;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.25), 0 2px 10px rgba(0, 0, 0, 0.5) inset !important;
    transform: translateY(-1px);
}

#booking-form select {
    cursor: pointer;
}

#seats-counter {
    text-align: center;
    font-size: 0.95rem;
    color: var(--accent-green);
    background: rgba(162, 217, 115, 0.06);
    border: 1px dashed rgba(162, 217, 115, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    font-style: italic;
    margin-top: 0.3rem;
}

/* Bottone Prenotazione ad alto impatto */
#submit-btn {
    margin-top: 0.8rem;
    padding: 1.15rem 1.5rem !important;
    font-size: 1.25rem !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    background: var(--gradient-orange) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

#submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

#submit-btn:hover::after {
    left: 120%;
}

#submit-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.6), 0 0 15px rgba(255, 106, 0, 0.4) !important;
    filter: brightness(1.06);
}

#submit-btn:active {
    transform: translateY(-1px) scale(0.99);
}

#submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* ==========================================
   PULSANTE "GUARDA IL MENU" SOTTO IL FORM
   ========================================== */
.menu-cta-container {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.menu-cta-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
}

.menu-cta-label::before,
.menu-cta-label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(162, 217, 115, 0.5), transparent);
}

.btn-menu-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 520px;
    padding: 18px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff8533 50%, #e65100 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(5px);
}

.btn-menu-xl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.65s ease;
}

.btn-menu-xl:hover::before {
    left: 120%;
}

.btn-menu-xl:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 106, 0, 0.65), 0 0 25px rgba(255, 106, 0, 0.4);
    filter: brightness(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-menu-xl:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-menu-xl i.fa-book-open,
.btn-menu-xl i.fa-utensils {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-menu-xl .menu-btn-icon-ext {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.btn-menu-xl:hover .menu-btn-icon-ext {
    transform: translate(3px, -3px);
    opacity: 1;
}


/* ==========================================
   CONTENUTO PRINCIPALE (MAIN)
   ========================================== */
main {
    padding: 50px 20px;
    max-width: 860px;
    margin: auto;
    text-align: center;
    min-height: 60vh;
    position: relative;
}

main h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-orange);
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255, 106, 0, 0.25);
}

main h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-green);
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

main p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #e2e2e2;
}

main ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
}

main ul li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

/* Schedule Card per Pagina Dove Trovarci */
.schedule-card {
    background: var(--gradient-card);
    border: 1px solid rgba(162, 217, 115, 0.25);
    border-radius: 12px;
    padding: 24px 30px;
    margin: 25px auto;
    max-width: 580px;
    box-shadow: var(--shadow-md);
}

.schedule-card li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-card li:last-child {
    border-bottom: none;
}

.schedule-day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-green);
}

.schedule-time {
    font-weight: 500;
    color: #ffffff;
}

.schedule-closed {
    color: #ff5555;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ==========================================
   GALLERIA FOTO INTERATTIVA (LE 8 FOTO)
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 45px;
    perspective: 1000px;
}

.gallery-item {
    background-color: var(--bg-card);
    padding: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    transform-style: preserve-3d;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 0.9;
}

.gallery-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 106, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: contrast(1.05);
}

/* Badge descrittivo elegante sopra la foto */
.gallery-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(19, 19, 19, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 106, 0, 0.4);
    padding: 4px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-badge {
    background: rgba(255, 106, 0, 0.85);
    color: #000000;
    font-weight: bold;
    border-color: #ff6a00;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.6);
}

/* Icona ingrandimento a comparsa */
.gallery-zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 38px;
    height: 38px;
    background: rgba(19, 19, 19, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    border: 1px solid rgba(162, 217, 115, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================
   LIGHTBOX MODAL A SCHERMO INTERO
   ========================================== */
.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-dialog {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-backdrop.active .lightbox-dialog {
    transform: scale(1);
}

.lightbox-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 106, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 106, 0, 0.25);
}

.lightbox-img {
    max-width: 82vw;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 14px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(19, 19, 19, 0.7);
    padding: 6px 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.lightbox-close:hover {
    color: var(--accent-orange);
    transform: rotate(90deg) scale(1.1);
}

/* ==========================================
   PAGINA CONTATTACI - BOTTONI XL MODERNI
   ========================================== */
.contact-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
}

.contact-subtext {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 10px auto 40px auto;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-links-xl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 750px;
    margin: 20px auto;
}

.btn-contact-xl {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease;
}

.btn-contact-xl i {
    font-size: 3.4rem;
    transition: transform 0.35s ease;
}

.btn-contact-xl:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.btn-contact-xl:hover i {
    transform: scale(1.1);
}

/* Bottone Telefono */
.btn-phone-xl {
    background: var(--gradient-green);
    color: #111;
    box-shadow: 0 10px 25px rgba(162, 217, 115, 0.35);
}

.btn-phone-xl:hover {
    background: #ffffff;
    color: #000;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* Bottone Instagram Gradiente */
.btn-instagram-xl {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-white);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.35);
}

.btn-instagram-xl:hover {
    filter: brightness(1.15);
    box-shadow: 0 16px 35px rgba(204, 35, 102, 0.55);
}

/* ==========================================
   MAPPA GOOGLE (PAGINA DOVE TROVARCI)
   ========================================== */
.map-container {
    margin-top: 35px;
    padding: 10px;
    background: var(--bg-card);
    border: 1.5px solid rgba(255, 106, 0, 0.3);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 106, 0, 0.2);
    overflow: hidden;
}

/* ==========================================
   BOTTONE WHATSAPP FLOATING (CON ONDA PULSANTE)
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 62px;
    height: 62px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsapp-pulse 2.2s infinite;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe57;
    color: #FFF;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: var(--bg-header);
    color: #b0b0b0;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 2px solid var(--accent-orange);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

footer p {
    font-size: 0.95rem;
}

/* ==========================================
   ANIMAZIONI SCROLL REVEAL (UTILIZZATE DA effects.js)
   ========================================== */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVITÀ MOBILE
   ========================================== */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 15px;
    }

    .header-top {
        min-height: auto;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .header-logo {
        height: 60px;
        max-width: none;
    }

    .header-title {
        position: static;
        transform: none;
        font-size: 2.3rem;
        margin-top: -4px;
        margin-bottom: 4px;
    }

    nav ul {
        gap: 8px;
    }

    nav ul li a {
        font-size: 0.92rem;
        padding: 6px 12px;
    }

    #prenotazioni {
        padding: 2.5rem 1rem !important;
    }

    #booking-form {
        padding: 1.8rem 1.2rem !important;
        gap: 1.2rem;
    }

    .booking-header h2 {
        font-size: 2.1rem;
    }

    .btn-menu-xl {
        font-size: 1.25rem;
        padding: 16px 20px;
        width: 100%;
    }

    .contact-links-xl {
        flex-direction: column;
        gap: 20px;
    }

    .btn-contact-xl {
        width: 100%;
        padding: 22px 15px;
        flex-direction: row;
        font-size: 1.3rem;
    }

    .btn-contact-xl i {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-badge {
        font-size: 0.8rem;
        padding: 3px 8px;
        bottom: 10px;
        left: 10px;
    }

    .gallery-zoom-icon {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   CONSENSO PRIVACY & GDPR CONTROLS
   ========================================== */
.privacy-consent-wrapper {
    margin: 1.2rem 0 0.8rem;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.privacy-consent-wrapper:hover {
    border-color: rgba(255, 106, 0, 0.4);
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.45;
    user-select: none;
    text-align: left;
}

.privacy-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-orange);
}

.privacy-consent-text a {
    color: var(--accent-orange);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-consent-text a:hover {
    color: #fff;
}

/* Pannello di Gestione Consenso Cookie & Mappa */
.cookie-mgmt-box {
    margin: 25px 0;
    padding: 20px;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cookie-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    margin-left: 8px;
}

.status-accepted {
    background: rgba(162, 217, 115, 0.2);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.status-rejected {
    background: rgba(255, 80, 80, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.status-pending {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.btn-cookie-action {
    padding: 9px 18px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-right: 10px;
    margin-top: 10px;
}

.btn-cookie-action:hover {
    transform: translateY(-2px);
}

.btn-cookie-accept {
    background: var(--accent-green);
    color: #000;
    font-weight: bold;
}

.btn-cookie-revoke {
    background: #444;
    color: #fff;
}

.btn-cookie-revoke:hover {
    background: #555;
}