* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Adore (solo per loghi/titoli speciali) */
@font-face {
    font-family: 'Adore';
    src: url('fonts/adore.otf') format('opentype'),
         url('fonts/adoreregular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;     
}

@font-face {
    font-family: 'Adore';
    src: url('fonts/adorebold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* LOGO / TITOLI */
.ciuri-logo {
    font-family: 'Adore', serif;
    font-size: 120px;
    letter-spacing: 5px;
}

h1, h2, .title {
    font-family: 'Adore', serif;
    color: #375769; /* esempio blu elegante */
}

/* TESTO PARAGRAFI */
p {
    font-family: 'Georgia', 'Times New Roman', serif; /* leggibile */
    font-size: 18px !important;
    color: #333 !important;
}


/* LABEL DEI FORM -> stile come i paragrafi */
a, li, button, input, select, textarea, label, .field label {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
}





:root { --dark: #3d3838; }

/* body {
    font-family: 'Adore', serif;
    line-height: 1.6;
    color: #3d3838;
    overflow-x: hidden;
} */

body {
    font-family: 'Georgia', 'Times New Roman', serif; /* <-- sostituisci Adore con Georgia */
    line-height: 1.6;
    color: #3d3838;
    overflow-x: hidden;
}

/* Header */

.ciuri-logo {
    font-family: 'Adore', serif; /* fallback serif se manca il font */
    font-size: 120px;           /* adatta la grandezza */
    color: #b5a300;             /* stesso giallo del logo */
    letter-spacing: 5px;        /* se vuoi più spaziatura */
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    /* background: #3d3838; */
    background: #d2c751;
    transition: 0.3s;
}

.header.scrolled .menu-toggle span {
  background: #3d3838;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: #375769;
}

.logo-wave {
    width: 40px;
    height: 20px;
    margin: 0 auto 5px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 20"><path d="M0 10c10-5 20 5 40 0" stroke="%23333" stroke-width="1" fill="none"/></svg>') no-repeat center;
}

.language-toggle {
    font-size: 14px;
    color: #666;
}

.book-table {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: #d1c751;
    border: 1px solid #3d3838;
    border-radius: 50px;
    padding: 15px 25px;
    text-decoration: none;
    color: #3d3838;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.book-table:hover {
    background: #375769;
    color: #f8f8f8;
}

.book-table-text {
    display: block;
    line-height: 1.2;
}

/* Side Menu */
.side-menu {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: #f8f8f8;
    z-index: 2000;
    padding: 80px 50px 50px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.side-menu.active {
    left: 0;
}

.side-menu-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.side-menu ul {
    list-style: none;
}

.side-menu li {
    margin: 20px 0;
}

.side-menu a {
    text-decoration: none;
    color: #3d3838;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%23f5f5f5"/><rect x="100" y="200" width="400" height="400" fill="%23fff" opacity="0.8"/><rect x="700" y="100" width="400" height="500" fill="%23ddd" opacity="0.6"/><circle cx="300" cy="400" r="50" fill="%23a8b5a0" opacity="0.3"/><circle cx="900" cy="300" r="30" fill="%23a8b5a0" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

/* Section Styling */
.section {
    padding: 100px 50px;
    max-width: 1700px;
    margin: 0 auto;
    padding-bottom: 0px;
}

.quote-section {
    background: #375769;
    color: #f8f8f8;
    text-align: center;
    padding: 80px 50px;
}

.quote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.quote-author {
    font-size: 1.2rem;
    /* font-style: italic; */
    opacity: 0.9;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin: 100px 0;
}

.content-image {
    position: relative;
    width: 100%;
    height: 400px;    /* regola se vuoi un’altezza diversa */
    overflow: hidden;
    border-radius: unset;
}

.content-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.content-text {
    padding: 20px;
}

.content-text h2 {
    font-size: 2.5rem;
    color: #375769;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* font-family: 'DM Serif Text', serif; */
    /* font-size: 35px; */
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: normal;
}

.content-text p {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #3d3838;
}

.content-text .highlight {
    /* font-style: italic; */
    color: #3d3838;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #375769;
    color: #375769;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #375769;
    color: #f8f8f8;
}

/* Menu Section */
.menu-section {
    text-align: center;
    padding: 100px 50px;
    padding-bottom: 0px;
}

.menu-quote {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    /* font-style: italic; */
    line-height: 1.6;
    empty-cells: show;
    text-align: left;
}

.menu-statement {
    font-size: 1.1rem;
    color: #3d3838;
    margin: 40px 0;
}

.menu-links {
    display: flex;
    flex-direction: row;       /* bottoni in riga */
    gap: 15px;                 /* spazio tra i bottoni */
    width: 100%;               /* occupano tutta la larghezza */
    margin: 40px 0;
}

.menu-links a {
    flex: 1;                   /* stessa larghezza */
    display: flex;             /* flex interno al bottone */
    align-items: center;       /* centra verticalmente il testo */
    justify-content: center;   /* centra orizzontalmente */
    text-align: center;        /* centra il testo multi-riga */
    
    border: 1px solid #375769;
    color: #f8f8f8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 20px;
    background-color: #375769;
}

.menu-links a:hover {
    color: #375769;
    background-color: #d1c751;
}



/* Gardens Section */
.gardens-section .content-row {
    margin: 80px 0;
}

/* --- Quadrato 1:1 per tutte le .content-image specifiche --- */
.gardens-section .garden-image,
#arpege .restaurant-image,
#menus .dish-image {
/* imposta rapporto 1:1 */
aspect-ratio: 1 / 1;
/* rimuove l’altezza fissa precedente */
height: auto;
/* per eventuale crop */
overflow: hidden;
/* necessario per la posizione assoluta dell’immagine interna */
position: relative;
}

/* Adattiamo l’<img> a riempire il div quadrato */
.gardens-section .garden-image img,
#arpege .restaurant-image img,
#menus .dish-image img {
/* reset del posizionamento */
position: absolute;
top: 0; left: 0;
/* riempi tutto il contenitore */
width: 100%;
height: 100%;
/* cover per mantenere proporzioni e crop */
object-fit: cover;
/* togliamo eventuali translate() */
transform: none;
padding: 50px;
}



.gardens-quote {
    /* font-style: italic; */
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    text-align: right;
}

.arriere-cuisine {
    background: #f8f8f8;
    padding: 80px 50px;
}

.arriere-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.arriere-text h3 {
    font-size: 2rem;
    color: #375769;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arriere-text .definition {
    font-weight: bold;
    margin-bottom: 15px;
}

.arriere-image {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23333"/><rect x="150" y="100" width="100" height="150" fill="%23666"/><rect x="100" y="180" width="200" height="80" fill="%23555"/><text x="200" y="280" text-anchor="middle" font-size="12" fill="%23999">Chef in Kitchen</text></svg>');
    height: 300px;
    background-size: cover;
    background-position: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 50px;
    background: #f8f8f8;
    margin-top: 100px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    background: #375769;
    color: #f8f8f8;
    padding: 135px 40px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    color: #d1c751;
}

.contact-details {
    font-size: 1.1rem;
    line-height: 2;
}

.contact-image {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f0f0f0"/><path d="M50 50 Q200 0 350 50 Q200 100 50 50" fill="%23ddd"/><rect x="100" y="150" width="200" height="100" fill="%23e0e0e0" rx="10"/><text x="200" y="280" text-anchor="middle" font-size="12" fill="%23666">Restaurant Interior</text></svg>');
    height: 300px;
    background-size: cover;
    background-position: center;
}

.social-section {
    text-align: center;
    padding: 60px 50px;
    color: #375769;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #ffffff;
}

/* Footer */
.footer {
    background: #375769;
    color: #f8f8f8;
    padding: 60px 50px 40px;
}

/* Footer-content: rimuovi il grid custom, mantieni solo max-width e centratura */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    /* display: grid;            <- eliminato */
    /* grid-template-columns: repeat(3, 1fr); <- eliminato */
    /* gap: 60px;                <- eliminato */
}

/* Se vuoi, puoi anche eliminare del tutto .footer-content e affidarti solo a .container */

/* Titoli e liste: rimangono invariati */
.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d1c751;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 10px 0;
}

.footer-section a {
    color: #f8f8f8;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.7;
}

/* Decorative leaves */
.leaf {
    position: absolute;
    width: 60px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><path d="M5 25 Q30 5 55 25 Q30 15 5 25" fill="%23a8b5a0" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

.leaf-1 {
    top: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.leaf-2 {
    bottom: 30%;
    left: 15%;
    transform: rotate(-25deg);
}

.leaf-3 {
    top: 60%;
    right: 20%;
    transform: rotate(45deg);
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--dark);
    z-index: 10;
    will-change: transform;
}

.hero-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--dark) 0px, var(--dark) 4px, transparent 4px, transparent 8px);
}

/* .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0; /* verrà aggiornato via JS in base alla fascia eventi */
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quando viene aggiunta la classe .scrolled… */
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

#arpege {
    text-align: right;
    padding-top: unset;
}

#gardens {
    text-align: right;
    padding-top: unset;
}

#menus {
    text-align: left;
    padding-top: unset;
}


/* altezza header desktop */
:root { --header-h: 96px; }

/* l'ancora terrà conto dell'header */
#prenota { scroll-margin-top: calc(var(--header-h) + 24px); }

/* mobile: header un po' più basso */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  #prenota { scroll-margin-top: calc(var(--header-h) + 16px); }
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* qui definisci il “grado” di opacità: 
        rgba(128,128,128,0.3) è un grigio medio al 30% */
    background: rgb(124 121 121 / 52%);
    /* background: rgba(128,128,128,0.3); */
    z-index: 2;
    pointer-events: none;
}

.image-logo {
    max-width: 400px;
}

.image-logo-icon {
    max-width: 80px;
}

.contact-content .content-image {
/* rimuoviamo l’altezza forzata e l’overflow */
    position: static;
    height: auto;
    overflow: visible;
}

/* Stile del form */
.contact-content .reservation-form {
    background: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Titolo del form in nuance Ciuri */
.contact-content .reservation-form h3 {
    font-size: 1.5rem;
    color: #375769;           /* stessa palette di .content-text h2 */
    text-transform: uppercase;
    /* letter-spacing: 2px; */
    margin-bottom: 24px;
    text-align: center;
}

/* Label e campi */
.contact-content .reservation-form .form-group label {
    color: #375769;
}
.contact-content .reservation-form input,
.contact-content .reservation-form select,
.contact-content .reservation-form textarea {
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}
.contact-content .reservation-form input:focus,
.contact-content .reservation-form select:focus,
.contact-content .reservation-form textarea:focus {
    border-color: #375769;
    outline: none;
}

/* Pulsante in palette Ciuri */
.contact-content .reservation-form .btn-prenota {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #d1c751;
    color: #375769;
    border: 1px solid #375769;
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}
.contact-content .reservation-form .btn-prenota:hover {
    background-color: #2c4552;
    border-color: #d1c751;
    color: #d1c751;
}

.logo a {
    color: inherit;           /* eredita il colore del genitore (.logo) */
    text-decoration: none;     /* rimuove la sottolineatura */
    display: flex;             /* per allineare orizzontalmente testo+icona */
    align-items: center;
    gap: 0.5rem;               /* spazio tra h1 e img */
}

.logo a:hover,
.logo a:focus {
    color: inherit;           /* niente cambio al passaggio */
    text-decoration: none;
}

/* ===== Gallery Slider sotto #alain-passard ===== */
.gallery-slider {
    max-width: 80%;
    margin: 60px auto;
    display: flex;
    align-items: center;
    position: relative;
    /* padding-top: 100px;
    padding-bottom: 100px; */
}

.slider-wrapper {
overflow: hidden;
width: 100%;
}

.slider-list {
display: flex;
transition: transform 0.4s ease;
}

.slider-list li {
flex: 0 0 20%;               /* 5 immagini in vista (100%/5) */
padding: 0 8px;
box-sizing: border-box;
}

.slider-list img {
display: block;
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slider-arrow {
background: none;
border: none;
font-size: 2rem;
color: #f4f6f8;              /* colore brand Ciuri */
cursor: pointer;
padding: 8px;
transition: color 0.2s;
z-index: 5;
}

.slider-arrow:hover {
color: #2c4552;
}

/* Disabilita frecce agli estremi (opzionale) */
.slider-arrow:disabled {
opacity: 0.3;
cursor: default;
}

/* --- slider base (puoi già averlo) --- */
.gallery-slider { position: relative; overflow: hidden; }
.slider-wrapper { overflow: hidden; }
.slider-list { display: flex; gap: 0; padding: 0; margin: 0; transition: transform .3s ease; }
.slider-list li { list-style: none; flex: 0 0 calc(100%/5); padding: .25rem; position: relative; }
.slider-list img { display: block; width: 100%; height: auto; border-radius: 6px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; border: 0; padding: .35rem .55rem; border-radius: 999px; cursor: pointer; }
.slider-prev { left: .25rem; } .slider-next { right: .25rem; }
.slider-arrow:disabled { opacity: .4; cursor: not-allowed; }

.slider-wrapper {
overflow-x: auto;          /* scroll orizzontale */
overflow-y: hidden;        /* nascondi eventuale scroll verticale */
-webkit-overflow-scrolling: touch; /* inerzia su iOS */
scroll-behavior: smooth;   /* scorrimento fluido */
}

.slider-list {
display: flex;
gap: 0;
padding: 0;
margin: 0;
}

.slider-list li {
list-style: none;
flex: 0 0 calc(100% / 5); /* 5 in vista */
padding: .25rem;
position: relative;
}

.slider-wrapper::-webkit-scrollbar {
display: none;
}
.slider-wrapper {
-ms-overflow-style: none;  /* IE/Edge */
scrollbar-width: none;     /* Firefox */
}

.social-section {
font-size: 1.2rem;
}

.social-section a {
    margin-left: 8px;
    color: #3d3838;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.social-section a:hover {
    color: #d1c751; /* Cambia colore al passaggio del mouse */
}

@media (max-width: 768px) { .slider-list li { flex: 0 0 100%; } }

/* --- didascalia in hover --- */
.slider-list li .caption {
    position: absolute; left: 6px; right: 6px; bottom: 6px;
    background: #375769; color: #fff; font-size: .9rem; line-height: 1.2;
    padding: .4rem .55rem; border-radius: 4px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}
.slider-list li:hover .caption,
.slider-list li:focus-within .caption { opacity: 1; transform: translateY(0); }

/* --- lightbox --- */
.lightbox {
    position: fixed; inset: 0; display: none;
    align-items: center; justify-content: center; flex-direction: column;
    background: rgba(0,0,0,.85); z-index: 9999; padding: 4vh 4vw;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox img { max-width: 92vw; max-height: 78vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox .lb-cap { margin-top: 1rem; color: #fff; font-size: 1rem; text-align: center; }
.lightbox .lb-close {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,.6); color: #fff; border: 0; border-radius: 999px;
    width: 40px; height: 40px; font-size: 24px; cursor: pointer;
}

/* Pulsanti di navigazione nel lightbox */
.lightbox .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.6); color: #fff; border: 0; border-radius: 999px;
    width: 44px; height: 44px; font-size: 22px; cursor: pointer;
}
.lightbox .lb-prev { left: 12px; }
.lightbox .lb-next { right: 12px; }
.lightbox .lb-nav:focus, .lightbox .lb-close:focus { outline: 2px solid #fff; outline-offset: 2px; }


.content-image.chef-image {
    aspect-ratio: 1 / 1;   
    height: auto;          
    position: relative;    
    overflow: hidden;
    padding: 50px;
}

.content-image.chef-image img {
    position: static;      
    width: 100%;
    height: 100%;
    object-fit: contain;   
    transform: none;       
}

.reviews-section {
padding-top: 80px; /* la tua .section ha già padding */
padding-bottom: 100px;
}

.reviews-header {
text-align: center;
/* margin-bottom: 40px; */
}

.reviews-header h2 {
font-size: 34px;
color: #375769;
letter-spacing: 2px;
text-transform: uppercase;
/* font-family: 'DM Serif Text', serif; */
font-weight: normal;
}

.reviews-sub {
color: #666;
margin-top: 10px;
}

.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
max-width: 1200px;
margin: 36px auto 30px;
}

.review-card {
background: #fff;
border: 1px solid #e8e8e8;
padding: 28px;
box-shadow: 0 6px 18px rgba(0,0,0,0.06);
min-height: 180px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.review-stars {
margin-bottom: 12px;
letter-spacing: 2px;
color: #d1c751; /* oro Ciuri */
font-size: 1.1rem;
}

.review-text {
color: #3d3838;
line-height: 1.7;
margin: 6px 0 14px;
}

.review-author {
color: #375769;
font-weight: 600;
letter-spacing: 0.5px;
}

.reviews-cta {
display: flex;
gap: 14px;
justify-content: center;
margin-top: 24px;
}

.review-card {
    flex: 0 0 100%;
    box-sizing: border-box;
  }
  
  /* Da desktop: 3 card per vista */
  @media (min-width: 992px) {
    .review-card {
      flex: 0 0 calc(100% / 3);
    }
  }

.btn.reviews-btn { /* riusa la tua .btn */
background: #375769;
color: #f8f8f8;
border-color: #375769;
}

.btn.reviews-btn:hover {
background: #2c4552;
color: #f8f8f8;
border-color: #2c4552;
}

.btn.btn-outline-alt {
background: transparent;
color: #375769;
border: 1px solid #375769;
}

.btn.btn-outline-alt:hover {
background: #eaeaea;
color: #375769;
}

/* Responsive */
@media (max-width: 992px) {
.reviews-grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .content-row,
    .contact-content,
    .arriere-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .quote {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 20px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .book-table.book-inline{
        position: static;           /* NON fixed: scorre col contenuto */
        display: inline-block !important;
        margin-top: 20px;           /* distanza dal logo */
        left: auto; right: auto; top: auto; transform: none;
    }
    
    /* Contenitore del logo centrato => bottone centrato */
    .image-logo { display: block; margin-left: auto; margin-right: auto; }
    /* Se il parent non centra i figli, forziamo il centro con: */
    .image-logo + .book-table.book-inline { display: block; margin: 90px auto 0; }

    .contact-content .content-image {
        /* rendi il box auto-adattante */
        height: auto;
        overflow: visible;
    }

    .contact-content .content-image img {
        /* riportalo in flow normale, full width */
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        object-fit: cover; /* o contain, se vuoi vedere tutta l'immagine senza ritagli */
    }

    .contact-section {
        margin-top: unset !important;
    }

    .contact-section {
        /* prendi il padding che usi per le altre section */
        padding: 60px 20px !important;
        margin-top: 0 !important;
    }

    .contact-info {
        /* scala anche il padding interno del box verde */
        padding: 40px 20px;
    }

    .image-logo {
        max-width: 300px;
    }

    .image-logo-icon {
        max-width: 80px;
    }

    .ciuri-logo {
        display: none;
    }

    .slider-list li {
        flex: 0 0 100%;    /* ogni li fa 100% della wrapper */
        padding: 0 4px;    /* un po’ di respiro orizzontale */
    }

    .footer-legal {
        margin-top: 30px;
    }

    .footer-legal ul {
        padding-left: unset;
    }

    .menu-links {
        margin-left: auto;
    }

    .reviews-grid { 
        grid-template-columns: 1fr; 
    }

    .gallery-slider {
        padding-top: unset;
        padding-bottom: unset;
        margin-top: unset;
    }

    .content-image.chef-image {
        padding: unset;
    }

    /* Adattiamo l’<img> a riempire il div quadrato */
    .gardens-section .garden-image img,
    #arpege .restaurant-image img,
    #menus .dish-image img {
        padding: unset;
    }

    .content-text p {
        font-size: 14px;
    }

    /* .content-text h2 {
        font-size: 22px;
    } */

    .flower-decor {
        max-width: 40px !important;
    }

    /* Tutte le sezioni, tranne gardens-section */
    .content-row:not(.gardens-section .content-row) {
        display: flex;
        flex-direction: column;   /* impila */
        gap: 16px;
    }
    .content-row:not(.gardens-section .content-row) .content-image { order: 1; }
    .content-row:not(.gardens-section .content-row) .content-text  { order: 2; }

    /* Immagini responsive */
    .content-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* distacco sotto i titoli se serve */
    .content-text h2 { margin-top: 8px; }

    .gardens-section .content-row {
        margin-top: -35px;
    }

    #image-fiore-1, #image-fiore-3 {
        margin-left: 10px !important;
    }

    #image-fiore-4 {
        margin-right: -25px !important;
    }

    .ciuri-text-logo {
        display: none;
    }

    .reviews-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .reviews-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

#image-fiore-1, #image-fiore-3 {
    margin-left: 20px;
}

#image-fiore-2, #image-fiore-4 {
    margin-right: -40px;
}

.flower-decor {
    max-width: 80px;
}

/* Card del form */
.reservation-form {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    max-width: 640px;              /* larghezza comoda */
  }
  
  /* Titolo */
  .reservation-form h3 {
    margin: 0 0 18px 0;
    font-size: 28px;
    letter-spacing: .5px;
    color: #2f4a56;
  }
  
  /* Griglia responsive: 2 colonne su schermi medio/grandi */
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 14px;
  }
  @media (min-width: 640px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    /* Riga con una sola colonna (persone+nota) rimane 1 colonna */
    .form-row:has(#res-guests) { grid-template-columns: 1fr; }
  }
  
  /* Campi */
  .field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3c5866;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #d6dee3;
    border-radius: 10px;
    background: #fafcff;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
  }
  .field input::placeholder { color: #9aa8b1; }
  
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: #3c7a8e;
    box-shadow: 0 0 0 3px rgba(60,122,142,.15);
    background: #fff;
  }
  
  /* Nota */
  .hint {
    display: block;
    margin-top: 6px;
    color: #8a99a3;
    font-size: 13px;
  }
  
  /* Azioni */
  .form-actions {
    display: flex;
    justify-content: center;    /* bottone centrato */
    margin-top: 8px;
  }
  
  /* Bottone */
  .btn-prenota {
    appearance: none;
    border: none;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .6px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, #355869, #2e4c59);
    box-shadow: 0 6px 16px rgba(47,74,86,.25);
    transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
  }
  .btn-prenota:hover { filter: brightness(1.05); }
  .btn-prenota:active { transform: translateY(1px); box-shadow: 0 4px 12px rgba(47,74,86,.2); }
  
  /* Piccoli affinamenti del container della sezione */
  .contact-section .content-image { display: flex; justify-content: center; }
  
  /* CONTATTI -> chiaro */
.contact-info{
    background:#ffffff;
    color:#375769;
    padding:195px 40px;
    text-align:center;
    border:1px solid #e7ecef;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-radius:10px;
  }
  .contact-info h3{
    color:#375769;            /* prima era oro */
  }
  .contact-details{ color: black; }
  .contact-details strong{ color:#2f4a56; }
  
  /* FORM -> scuro */
  .contact-content .reservation-form{
    background:#375769;
    color:#f3f7f9;
    box-shadow:0 12px 32px rgba(0,0,0,.12);
  }
  .contact-content .reservation-form h3{
    color:#d1c751;
  }
  
  /* Label e campi su scuro */
  .reservation-form .field label{ color:#eaf1f4; }
  .reservation-form .field input,
  .reservation-form .field select,
  .reservation-form .field textarea{
    /* background:#2e4c59; */
    border:1px solid #3e6373;
    /* color:#eaf1f4; */
  }
  .reservation-form .field input::placeholder,
  .reservation-form .field textarea::placeholder{ color:#b7c7cf; }
  
  .reservation-form .field input:focus,
  .reservation-form .field select:focus,
  .reservation-form .field textarea:focus{
    border-color:#89a8b6;
    box-shadow:0 0 0 3px rgba(209,199,81,.25); /* alone in palette */
    background:#fafcff;
  }
  
  /* Nota grigio chiaro leggibile sullo scuro */
  .reservation-form .hint{
    color:#c7d3d9;
  }
  
  /* Bottone su scuro: oro CIURI */
  .btn-prenota{
    background:#d1c751;
    color:#1a1a1a;
    box-shadow:0 8px 20px rgba(0,0,0,.22);
  }
  .btn-prenota:hover{
    filter:brightness(0.95);
    box-shadow:0 6px 16px rgba(0,0,0,.18);
  }
  .btn-prenota:active{ transform:translateY(1px); }
  
  /* piccolo tocco: bordo “card” bianco del form su sfondo grigio sezione */
  .contact-section{ background:#f8f8f8; }


  /* === CHEF + FIORE — versione pulita === */

/* Contenitore foto chef: fa da riferimento per il fiore */
/* === Chef: immagine + foglia decorativa in stile “angolo” === */
  
.map-section-full {
    position: relative;
    width: 100%;
    height: 200px; /* puoi aumentare per renderla più alta */
    overflow: hidden;
  }
  
  .map-section-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
  }
  
  .map-overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0,0,0,0.3); /* overlay trasparente */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .map-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .map-content p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .map-content .btn {
    background-color: #fff;
    color: #3d3838;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  .map-content .btn:hover {
    background-color: #f4f4f4;
  }
    

  /* Layout coerente per tutte le righe del form */
.reservation-form .form-row {
    display: flex;
    gap: 20px;
  }
  .reservation-form .form-row .field {
    flex: 1 1 0;
    min-width: 0;          /* evita overflow */
  }
  .reservation-form .field select,
  .reservation-form .field input {
    width: 100%;
  }
  
  /* Stack su mobile */
  @media (max-width: 768px) {
    .reservation-form .form-row { flex-direction: column; }
  }
  
  /* Stile specifico per la riga della checkbox */
.reservation-form .form-row.checkbox-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.reservation-form .form-row.checkbox-row .field {
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reservation-form .form-row.checkbox-row input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
}

.privacy-policy-link {
    color: #d1c751;
    text-decoration: none;
}

.privacy-policy-link:hover {
    color: #f4f4f4;
}

.warning-opening {
    /* text-align: center;
    text-transform: uppercase;
    color: #e2db92 !important;
    margin-top: -25px;
    font-size: 13px !important; */

    text-align: center;
    text-transform: uppercase;
    color: #375769;
    margin-top: -4px;
    font-size: 13px !important;
    background-color: #d1c751;
    border-radius: 10px;
    padding: 5px;
    font-weight: 600;
}

.call-button {
    display: inline-block;
    background-color: #d1c751; /* rosso avviso */
    color: 375769;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    border: 1px solid;
    border-color: #d1c751;
  }
  .call-button:hover {
    background-color: #2c4552;
    border-color: #d1c751;
    color: #d1c751;
  }

/* .test-spin {
    display: inline-block;
    animation: spin-alt 10s ease-in-out infinite !important;
  }
  
  @keyframes spin-alt {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(30deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-30deg); }
    100% { transform: rotate(0deg); }
  } */

  /* pendolo fluido avanti/indietro */
/* Animazione pendolo generica */
.flower-decor.pendulum {
    display: inline-block;
    animation-name: pendulum-keep-scale;
    animation-duration: 4s;
    animation-timing-function: cubic-bezier(.445,.05,.55,.95);
    animation-iteration-count: infinite;
    animation-direction: alternate;
    will-change: transform;
    transform-origin: 12% 62%; /* punta al gambo */
  }
  
  /* Mantiene la trasformazione originale (scaleX/scaleY) e aggiunge rotazione */
  @keyframes pendulum-keep-scale {
    from {
      transform: var(--flower-scale) rotate(-30deg);
    }
    to {
      transform: var(--flower-scale) rotate(30deg);
    }
  }
  
  /* Fiore singolo con scaleX(-1) */
  .flower-scale-x {
    --flower-scale: scaleX(-1);
  }
  
  /* Fiore singolo con scaleY(-1) */
  .flower-scale-y {
    --flower-scale: scaleY(-1);
  }
  
  /* Fiore normale senza flip */
  .flower-scale-normal {
    --flower-scale: scale(1);
  }
  
  /* Ritardi per renderli asincroni */
  .flower-delay-1 { animation-delay: 0s; }
  .flower-delay-2 { animation-delay: 1.2s; }
  .flower-delay-3 { animation-delay: 2.4s; }
  
  /* Mobile: più lento */
  @media (max-width: 768px) {
    .flower-decor.pendulum { animation-duration: 4.5s; }
    #arpege .flower-decor {
        margin-right: -35px !important;
    }
  }
  
  /* Rispetto preferenze utente */
  @media (prefers-reduced-motion: reduce) {
    .flower-decor.pendulum { animation: none; }
  }
  
  /* mapping per sezione */
#arpege  .flower-decor { --flower-scale: scaleX(-1); }
#menus   .flower-decor { --flower-scale: scaleY(-1); }
#alain-passard .flower-decor { --flower-scale: scale(1); }

/* ritardi diversi per asincronia */
#arpege  .flower-decor { animation-delay: .0s; }
#menus   .flower-decor { animation-delay: .8s; }
#alain-passard .flower-decor { animation-delay: 1.6s; }

/* Assicurati che le slide stiano sotto */
.hero-slider .slide { z-index: 1 !important; }

/* L’overlay grigio delle slide: sta sotto al logo */
.slide::before { z-index: 2 !important; }

/* Il logo in hero deve stare sopra a tutto il resto dello slider */
.hero-slider .hero-content { z-index: 3 !important; }

/* Il logo: misura esplicita e block per evitare reflow/latenze di layout */
.image-logo {
  display: block !important;
  max-width: 400px !important;
  width: min(80vw, 400px);
  height: auto !important;
}

@media (max-height: 767.98px){
    .content-text h2 { font-size: 25px; }
}


@media (min-height: 768px) and (max-height: 844px) {
    .content-text h2 { font-size: 26px; }
}


@media (min-height: 845px) and (max-height: 896px) {
    .content-text h2 { font-size: 29px; }
}

@media (min-height: 897px) and (max-height: 932px) {
    .content-text h2 { font-size: 31px; }
}
  
  
.visually-hidden{
    position:absolute!important; 
    height:1px;width:1px; 
    overflow:hidden; 
    clip:rect(1px,1px,1px,1px); 
    white-space:nowrap;
}
  
/* ===== Language switcher ===== */
/* utilità per testo-only per screen reader */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  
  /* ===== Language switcher (solo icona) ===== */
  .language-switcher {
    position: relative;
    margin-top: 1rem;
  }
  
  .lang-current {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(0,0,0,.14);
    background: #fff;
    padding: .35rem .5rem;
    border-radius: 999px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    cursor: pointer;
    transition: box-shadow .2s ease, transform .05s ease;
  }
  
  .lang-current:hover { box-shadow: 0 6px 18px rgba(0,0,0,.10); }
  .lang-current:active { transform: translateY(1px); }
  .lang-current:focus { outline: none; box-shadow: 0 0 0 3px rgba(166, 142, 0, .25); }
  
  .lang-flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    object-fit: cover;
    display: block;
  }
  
  .lang-caret {
    font-size: .8rem;
    opacity: .7;
    transition: transform .2s ease;
  }
  .lang-current[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }
  
  .lang-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + .5rem);
    min-width: 140px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    padding: .4rem;
    list-style: none;
    margin: 0;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
    z-index: 999;
  }
  
  .lang-dropdown.open { display: block; }
  
  .lang-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    border: 0;
    background: transparent;
    padding: .55rem .6rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: .95rem;
  }
  
  .lang-option:hover,
  .lang-option:focus {
    background: rgba(0,0,0,.05);
    outline: none;
  }
  
  .lang-option .flag {
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid #f0f0f0; object-fit: cover;
  }
  .lang-option .name { flex: 1; }
  .lang-option .code { opacity: .55; font-size: .85rem; }
  

  .reviews-nav:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  /* Responsive: su mobile mostra una recensione per "riga" */
  @media (max-width: 768px) {
    .reviews-grid {
      grid-template-columns: 1fr;
    }
  }

  
  /* ===== Event bar (fascia eventi) ===== */

.event-bar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 950;                    /* sotto l'header che è a 1000 */
    background: #d1c751;
    color: #375769;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    font-family: Georgia, "Times New Roman", serif;
  }
  
  .event-bar-inner {
    max-width: 1700px;
    margin: 0 auto;
    padding: 8px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: unset;
  }
  
  .event-bar-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
  }
  
  /* contenitore scrollabile orizzontale */
  .event-bar-track {
    flex: 1;
    display: block;
    /* overflow-x: auto; */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    white-space: nowrap;
  }
  
  .event-bar-track::-webkit-scrollbar {
    height: 4px;
  }
  .event-bar-track::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.25);
    border-radius: 4px;
  }
  
  /* lista di pillole evento */
  .event-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(55,87,105,.25);
    background: rgba(255,255,255,0.65);
    margin-right: 10px;
    white-space: nowrap;
    font-size: 14px;
  }
  
  .event-pill.is-active {
    background: #375769;
    color: #f8f8f8;
    border-color: #375769;
  }
  
  .event-date {
    font-weight: 700;
  }
  
  .event-title {
    font-weight: 400;
  }
  
  .event-cta {
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid currentColor;
  }
  
  /* mobile: meno padding */
  @media (max-width: 768px) {
    .event-bar-inner {
      padding: 6px 16px;
      gap: 10px;
    }
  
    .event-pill {
      padding: 6px 10px;
      font-size: 13px;
    }
  
    .event-bar-label {
      font-size: 12px;
    }
  }
  
  /* 1. Niente overflow orizzontale ovunque */
html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* 2. Banner eventi: niente 100vw, solo 100% */
  .events-bar,
  .events-bar-inner,
  .events-bar-track {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  
  /* 3. Extra sicurezza su mobile: niente elementi più larghi dello schermo */
  @media (max-width: 768px) {
    .hero-slider,
    .hero-slider .slide,
    .hero-slider .slide img,
    .main-content {
      max-width: 100%;
    }
  }

  /* Contenitore barra (già ce l'hai, verifico solo che non usi 100vw) */
.event-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;         /* sopra l’hero, sotto il menu quando scendi d1c751*/
    background: #375769; 
  }
  
  /* Layout interno */
  .event-bar-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.6rem 2.5rem;
    box-sizing: border-box;
    padding-right: unset;
    padding-left: unset;
  }
  
  /* Etichetta “Eventi in arrivo” */
  .event-bar-label {
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  /* Maschera di scorrimento: niente scroll manuale */
  .event-bar-track {
    flex: 1;
    overflow: hidden;        /* nasconde ciò che esce */
    position: relative;
  }
  
  /* Lista che scorre in loop */
  .event-bar-loop {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    will-change: transform;
    animation: eventTicker var(--ticker-duration, 40s) linear infinite;
  }
  
  /* “pillole” evento (puoi usare il tuo stile attuale) */
  .event-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1.3rem;
    border-radius: 999px;
    background: #375769;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid #ede7e7;
    cursor: pointer;
  }
  
  .event-title {
    font-weight: 700;
  }
  
  .event-date {
    font-weight: 400;
  }
  
  /* Animazione: sposta la lista di metà della sua larghezza (abbiamo 2 copie) */
  @keyframes eventTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Mobile: un po' più stretto */
  @media (max-width: 768px) {
    .event-bar-inner {
      padding: 0.45rem 1rem;
      gap: 0.75rem;
      padding-right: unset;
      padding-left: unset;
    }
  
    .event-pill {
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
    }
  }

  /* Contenitore slider con margini laterali */
  
  /* Frecce */
  
  /* Lista card in orizzontale */
  .reviews-grid {
    flex: 1;
    display: flex;
    overflow: hidden;          /* niente scroll manuale visibile */
    scroll-behavior: smooth;
  }
  
  /* Di base: 1 card per “schermata” (mobile) */
  .review-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 1.5rem;
  }
  
  /* Desktop: 3 card per “schermata” */
  @media (min-width: 768px) {
    .review-card {
      flex: 0 0 33.3333%;
    }
  }
  
  /* CTA con testi centrati verticalmente */
  .reviews-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem 0;
  }
  
  .reviews-cta .btn {
    display: flex;
    align-items: center;    /* centra verticalmente */
    justify-content: center;/* centra orizzontalmente */
    text-align: center;
    min-height: 80px;       /* altezza minima per le 3 righe di testo */
    padding: 1rem 1.5rem;
    box-sizing: border-box;
  }
  
  /* Un po' di respiro ai lati anche su mobile */
  @media (max-width: 767px) {
    .reviews-section {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
  }

  /* Contenitore slider */
  .reviews-slider {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  /* Pulsanti frecce */
  .reviews-nav {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  
  /* Viewport con margine laterale */
  .reviews-viewport {
    flex: 1;
    overflow: hidden;
    padding-inline: 1.5rem; /* margine sinistra/destra */
    box-sizing: border-box;
  }
  
  /* Binario che scorre */
  .reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
    transform: translateX(0); /* fallback */
  }
  
  /* Card di recensione */
  .review-card {
    flex: 0 0 100%;        /* 1 card per vista (mobile) */
  }
  
  /* Da desktop: 3 card per vista */
  @media (min-width: 992px) {
    .review-card {
      flex: 0 0 calc(100% / 3);
    }
  }
  
  
  /* ===== MODAL EVENTI SPECIAli ===== */
.event-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.event-modal[aria-hidden="false"] {
  display: flex;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.event-modal-dialog {
  position: relative;
  background-color: #111;
  color: #f8f8f8;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  z-index: 1;
  text-align: left;
}

.event-modal-dialog h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.event-modal-dialog p {
  margin-bottom: 1.25rem;
  line-height: 1.5;
  color: #f0ffffb8 !important;
}

.event-modal-confirm {
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #d2c851;
  color: #111;
}

.event-modal-dialog a {
  color: #d2c851;
  text-decoration: underline;
}

.event-modal-confirm:hover {
  filter: brightness(1.05);
}

.event-modal-close {
  position: absolute;
  top: 0.35rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #f8f8f8;
  cursor: pointer;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.event-modal-alt{
  /* background: #375769;
  border: 2px solid currentColor;
  opacity: .95; */

  /* display: block; */
  margin: 0 auto;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #375769;
  color: #111;
  margin-top: 10px;

  display: flex;
  justify-content: center;   /* centro orizzontale */
  gap: 12px;                 /* spazio tra i bottoni */
  flex-wrap: wrap;           /* se lo schermo è stretto vanno a capo */
  align-items: center;
  /* display: block !important; */
}

.checkbox-row .field {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.checkbox-row input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 6px;
}

.checkbox-row label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.event-bar-single {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #375769;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.event-banner-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  text-align: center;
  text-decoration: none;
  color: #f8f8f8;
  font-weight: 600;
}

.event-banner-link:hover {
  text-decoration: none;
  opacity: 0.95;
}

.event-banner-text {
  line-height: 1.25;
}

#header {
  z-index: 1100;
}

.event-banner-link strong,
.event-banner-link span {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .event-banner-cta {
    display: block;
    margin-top: 4px;
  }

  .event-separator-mobile-hide {
    display: none;
  }
}