.admin-body {
  background: #f6f4ef;
  font-family: "Montserrat", sans-serif;
  color: #1e1e1e;
}

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.admin-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e2da;
}

.admin-header__row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-brand__logo {
  height: 44px;
  width: auto;
  display: block;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0;
  justify-content: center;
  flex: 1;
}

.admin-nav a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
}

.admin-main {
  padding-bottom: 4rem;
}

.admin-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.admin-flash {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.admin-flash--notice {
  background: #e6f6ec;
  color: #1a5f30;
}

.admin-flash--alert {
  background: #fdeaea;
  color: #8b2b2b;
}

.admin-button {
  display: inline-block;
  background: #1e1e1e;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.admin-button--ghost {
  background: transparent;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.admin-logout {
  margin-left: auto;
}

.admin-logout .admin-button {
  padding: 0.5rem 0.9rem;
  border-radius: 14px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #eee8dd;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d7d2c8;
  font-family: inherit;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-qr-card {
  display: grid;
  gap: 1.25rem;
}

.admin-qr-reader {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6e2da;
  background: #fffdf9;
}

.admin-qr-status {
  font-weight: 600;
  margin: 0;
}

.admin-qr-status--valid {
  color: #1a5f30;
}

.admin-qr-status--used {
  color: #8b2b2b;
}

.admin-qr-status--invalid {
  color: #8b2b2b;
}

.admin-qr-separator {
  font-size: 0.95rem;
  color: #6b675f;
}

.admin-qr-details {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

@media screen and (max-width: 1024px) {
  .admin-header__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .admin-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
  }

  .admin-nav a {
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    min-height: 36px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    scroll-snap-align: start;
    background: #f7f4ee;
  }

  .admin-nav::after {
    content: "";
    flex: 0 0 12px;
  }

  .admin-nav::-webkit-scrollbar {
    height: 6px;
  }

  .admin-nav::-webkit-scrollbar-thumb {
    background: #d9d2c6;
    border-radius: 999px;
  }

  .admin-logout {
    margin-left: 0;
    width: 100%;
  }

  .admin-container {
    overflow-x: hidden;
  }

  .admin-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table table,
  .admin-table thead,
  .admin-table tbody {
    width: 100%;
  }
}
/* --- VARIABLES --- */
:root {
    --color-primary: #2C4A3B;     /* Vert Foncé (Texte & Boutons) */
    --color-secondary: #AED9B8;   /* Vert Pistache (Accents & Fonds) */
    --color-accent: #C5A059;      /* Or (Détails) */
    --color-bg-light: #FFF5F7;    /* Rose Poudre */
    --color-white: #FFFFFF;
    --color-text: #4a4a4a;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    --header-height: 80px;
    --z-fixed: 100;
    --z-top: 999;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 12px 30px rgba(0,0,0,0.08);
    --shadow-card: 0 10px 24px rgba(0,0,0,0.08);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

h1, h2, h3 { font-family: var(--font-serif); color: var(--color-primary); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
p { white-space: pre-line; }


/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.bg-rose { background-color: var(--color-bg-light); }
.bg-white { background-color: var(--color-white); }
.separator { width: 50px; height: 3px; background-color: var(--color-accent); margin-bottom: 1.5rem; }
.separator--center { margin: 0 auto 2rem; }
.admin-form { display: grid; gap: 1rem; max-width: 520px; margin: 0 auto; }
.admin-form input,
.admin-form textarea,
.admin-form select { width: 100%; padding: 0.7rem 0.9rem; border-radius: 12px; border: 1px solid #d7d2c8; font-family: inherit; }
.admin-flash { padding: 0.75rem 1rem; border-radius: 8px; }
.admin-flash--notice { background: #e6f6ec; color: #1a5f30; }
.admin-flash--alert { background: #fdeaea; color: #8b2b2b; }

/* --- COMPONENTS: BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.95rem 2.4rem; border-radius: var(--radius-md); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; line-height: 1; cursor: pointer; transition: all 0.25s ease; }
.btn--primary, .btn--secondary, .btn--outline { min-height: 48px; box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
.btn--primary { background-color: var(--color-primary); color: var(--color-white); }
.btn--primary:hover { background-color: var(--color-accent); transform: translateY(-2px); }
.btn--secondary { background-color: var(--color-secondary); color: var(--color-primary); }
.btn--secondary:hover { background-color: var(--color-primary); color: var(--color-white); }
.btn--outline { background-color: transparent; border: 2px solid var(--color-white); color: var(--color-white); }
.btn--outline:hover { background-color: var(--color-white); color: var(--color-primary); }

/* --- NAVBAR (Fixed & Glass) --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.navbar__container { display: flex; justify-content: space-between; align-items: center; height: 100%; gap: 1rem; }
.navbar__logo { display: inline-flex; align-items: center; }
.navbar__logo img { height: 60px; width: auto; display: block; }
.navbar__list { display: flex; gap: 1.4rem; justify-content: center; }
.navbar__link { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--color-primary); position: relative; }
.navbar__link:hover, .navbar__link.active-link { color: var(--color-accent); }
/* Scroll Spy Active Indicator */
.navbar__link.active-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background-color: var(--color-accent);
}
.navbar__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.navbar__item--icon { display: inline-flex; align-items: center; }

.navbar__icon-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.navbar__icon-link--instagram {
    background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f77737 25%, #e1306c 55%, #c13584 75%, #833ab4 100%);
}

.navbar__icon-link--thefork {
    background: #24a148;
}

.navbar__icon-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.navbar__icon-link svg { stroke: currentColor; }
.navbar__nav { display: flex; flex: 1; justify-content: center; }
.navbar__locales { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }
.navbar__locales--mobile { display: none; }
.navbar__cta-mobile { display: none; }
.navbar__burger { display: none; cursor: pointer; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--color-white); margin-top: 0; padding: 2rem 0; }
.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(174,217,184,0.35), rgba(44,74,59,0.6)); z-index: -1; }
.hero__title { font-size: 3.6rem; margin-bottom: 1rem; letter-spacing: 0.01em; color: var(--color-white); max-width: 900px; }
.hero__subtitle { font-size: 1.2rem; font-weight: 300; margin-bottom: 2.2rem; color: rgba(255,255,255,0.95); max-width: 820px; margin-left: auto; margin-right: auto; }

/* Ensure hero buttons and links are visible on the banner */
.hero .btn--white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.18);
}
.hero .btn--white:hover { background-color: rgba(255,255,255,0.06); color: var(--color-white); }
.hero .btn--outline { color: var(--color-white); border: 2px solid rgba(255,255,255,0.18); }
.hero .btn--outline:hover { background-color: rgba(255,255,255,0.06); }

/* --- SECTIONS --- */
.section { padding: 0; }
.section--padded { padding: 5rem 0; }

.menu-page { color: #7a9a6a; }
.menu-page .section__title, .menu-page .section__subtitle { color: #7a9a6a; font-family: var(--font-serif); }
.menu-tabs { display: flex; justify-content: center; gap: 0.8rem; margin: 1.6rem 0 0.8rem; }
.menu-tab { padding: 0.6rem 1.2rem; border-radius: 999px; border: 1px solid rgba(122,154,106,0.35); background: #fff; color: #7a9a6a; font-weight: 600; cursor: pointer; letter-spacing: 0.02em; }
.menu-tab.is-active { background: #7a9a6a; color: #fff; border-color: #7a9a6a; }
.menu-panel { display: none; margin-top: 1.6rem; }
.menu-panel.is-active { display: block; }

.menu-card {
    background: #f8f1e7;
    border: 1px solid rgba(122,154,106,0.22);
    border-radius: 24px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(122,154,106,0.35);
    border-radius: 20px;
    pointer-events: none;
}

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(240px, 1fr)); gap: 2rem; position: relative; z-index: 1; }
.menu-section { font-size: 0.95rem; letter-spacing: 0.12em; margin-bottom: 0.7rem; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid rgba(122,154,106,0.3); padding-bottom: 5px; }
.menu-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.menu-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    position: relative;
    font-size: 1rem;
}
.menu-list li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 1.05em;
    border-bottom: 1px dotted rgba(122,154,106,0.35);
}
.menu-list li span { background: #f8f1e7; position: relative; z-index: 1; padding-right: 6px; }
.menu-list li span:first-child { max-width: 68%; }
.menu-price { white-space: nowrap; font-weight: 700; padding-left: 6px; }

.menu-panel { display: none; margin-top: 1.6rem; }
.menu-panel.is-active { display: block !important; }

.menu--pdf .menu-tabs, .menu--pdf #menu-download, .menu--pdf .section__subtitle { display: none; }
.menu-pdf-header { text-align: center; margin: 1.2rem 0 1.6rem; color: #7a9a6a; }
.menu-pdf-logo img { width: 140px; height: auto; margin: 0 auto 0.6rem; display: block; }
.menu-pdf-brand { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-pdf-contact { font-size: 0.95rem; letter-spacing: 0.03em; }
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }

/* PDF print styling (WeasyPrint) */
.menu--pdf .navbar, .menu--pdf .footer, .menu--pdf .social-strip, .menu--pdf .menu-tabs, .menu--pdf #menu-download { display: none !important; }

@media print {
  body { background: #fff; }
  .section--padded { padding: 1.2rem 0; }
  .menu-page { color: #7a9a6a; }
  .menu-card { box-shadow: none; border: 1px solid rgba(122,154,106,0.25); padding: 1.8rem 1.6rem; max-width: 100%; }
  .menu-card::before { border-style: solid; }
  .menu-section { border-bottom: 1px solid rgba(122,154,106,0.3); }
  .menu-list li::after { border-bottom: 1px dotted rgba(122,154,106,0.35); }
}

.menu-card--drinks .menu-list li { font-size: 0.85rem; }
.menu-card--drinks .menu-section { font-size: 0.85rem; }
.split__container { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; padding: 0; margin: 0; max-width: 100%; width: 100%; }
.split__content { padding: 5rem; display: flex; flex-direction: column; justify-content: center; gap: 0.8rem; }
.split__image { position: relative; overflow: hidden; height: 100%; min-height: 400px; }
.split__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: contrast(1.05) saturate(1.1); }
.split__image:hover img { transform: scale(1.03); }

/* --- CARDS GRID --- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { padding: 2.4rem; border: 1px solid #efe9de; background: white; text-align: left; transition: 0.3s; border-top: 4px solid var(--color-secondary); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.card:hover { transform: translateY(-8px); box-shadow: 0 18px 36px rgba(0,0,0,0.1); }
.card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card__price { display: block; font-family: var(--font-serif); font-style: italic; color: var(--color-accent); font-size: 1.25rem; margin-bottom: 1rem; }

/* --- GALLERY --- */
.gallery-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-carousel__viewport {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(18px) scale(0.99);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    display: grid;
    grid-template-rows: 1fr auto;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.gallery-slide__media {
    min-height: 420px;
    overflow: hidden;
    background: #ffffff;
}

.gallery-slide__media img,
.gallery-slide__media video,
.gallery-slide__media iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
  .gallery-slide__media img,
  .gallery-slide__media video,
  .gallery-slide__media iframe {
      object-fit: contain;
  }
}

.gallery-slide__caption {
    padding: 1rem 1.2rem 1.3rem;
    background: #ffffff;
    color: #1f3b2f;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.gallery-slide__caption h3 {
    color: #1f3b2f;
    margin-bottom: 0.25rem;
}

.gallery-slide__caption p {
    margin: 0;
    color: rgba(31, 59, 47, 0.8);
}

.gallery-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #1f3b2f;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.gallery-carousel__btn--prev { left: -16px; }
.gallery-carousel__btn--next { right: -16px; }

.gallery-carousel__dots {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    justify-content: center;
}

.gallery-carousel__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: #c0b8a9;
    opacity: 0.8;
    cursor: pointer;
}

.gallery-carousel__dot.is-active {
    background: var(--color-primary);
    opacity: 1;
}

/* --- FOOTER --- */
.social-strip {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.social-strip__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-strip__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-primary);
}

.social-strip__links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-strip__link {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-strip__link--thefork { background: #24a148; }
.social-strip__link--instagram { background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f77737 25%, #e1306c 55%, #c13584 75%, #833ab4 100%); }

@media (max-width: 768px) {
    .social-strip__container { justify-content: center; text-align: center; }
}

.footer { background-color: var(--color-secondary); color: var(--color-primary); padding: 4rem 0 2rem; border-top: 1px solid rgba(0,0,0,0.06); }
.footer__container { display: flex; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; align-items: flex-start; }
.footer__title { margin-bottom: 1rem; font-size: 1.2rem; }
.footer__col a { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.footer__col--right { text-align: right; }
.footer__copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.1); font-size: 0.8rem; }

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed; right: 2rem; bottom: -20%; background-color: var(--color-primary); color: white; padding: 0.7rem; border-radius: 14px; z-index: var(--z-top); transition: .4s; display: flex; opacity: 0; box-shadow: var(--shadow-soft);
}
.scroll-top:hover { background-color: var(--color-accent); transform: translateY(-3px); }
.show-scroll { bottom: 2rem; opacity: 1; }

/* --- RESPONSIVE --- */
@media screen and (max-width: 968px) {
    :root { --header-height: 70px; }
    .hero__title { font-size: 2.5rem; }
    .split__container { grid-template-columns: 1fr; }
    .split--reverse { display: flex; flex-direction: column-reverse; } /* Image on top mobile */
    .split__content { padding: 3rem 1.5rem; }

    /* Mobile Menu */
    .navbar__burger { display: block; }
    .navbar__nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        padding: 2rem;
        transition: right .4s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 2rem;

        /* FIX : le menu doit passer au-dessus du contenu */
        z-index: calc(var(--z-fixed) + 1);
        overflow-y: auto;
    }

    /* FIX : la classe show-menu doit cibler navbar__nav (pas un autre élément) */
    .navbar__nav.show-menu { right: 0; }

    .navbar__list { flex-direction: column; }
    .btn--desktop { display: none; }
    .btn { padding: 0.8rem 1.9rem; border-radius: 12px; font-size: 0.8rem; min-height: 44px; }
    .navbar__cta-mobile { display: block; }
    .navbar__locales { display: none; }
    .navbar__locales--mobile {
        display: block;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.5rem 0;
        border-top: 1px solid #efe9de;
    }

    /* Burger Animation */
    .navbar__burger span { display: block; width: 25px; height: 3px; background-color: var(--color-primary); margin-bottom: 5px; transition: 0.3s; }
    .navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .navbar__burger.active span:nth-child(2) { opacity: 0; }
    .navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    .navbar__logo img { height: 50px; }

    /* Footer responsive: stack columns and center-right column on mobile */
    .footer__container { flex-direction: column; gap: 1.2rem; align-items: center; }
    .footer__col { width: 100%; max-width: 720px; text-align: center; }
    .footer__col--right { text-align: center; }
    .footer__col p, .footer__col a { margin: 0.35rem 0; }
    .footer__col a { display: inline-block; padding: 0.25rem 0.35rem; }
    .footer__title { font-size: 1.05rem; }
    .footer__copyright { font-size: 0.78rem; padding-top: 1rem; }
}

/* Additional mobile optimizations */
@media screen and (max-width: 768px) {
    :root { --header-height: 64px; }
    html { font-size: 15px; }
    .hero { min-height: 60vh; padding: 2.2rem 1rem; }
    .hero__title { font-size: 2.0rem; line-height: 1.15; padding: 0 0.6rem; }
    .hero__subtitle { font-size: 1rem; padding: 0 0.6rem; margin-bottom: 1.4rem; }
    .hero__overlay { background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(44,74,59,0.55)); }

    /* Make primary CTAs full width on small screens */
    .btn { width: 100%; display: inline-flex; justify-content: center; }
    .btn + .btn { margin-top: 0.6rem; }

    /* Reduce section paddings */
    .section--padded { padding: 2.5rem 0; }
    .split__content { padding: 2rem 1rem; }

    /* Cards: reduced padding and font sizes */
    .card { padding: 1.4rem; border-radius: 14px; }
    .card__title { font-size: 1.15rem; }
    .card__price { font-size: 1rem; }
    .card__desc { font-size: 0.95rem; }

    /* Grid spacing */
    .grid { gap: 1rem; }

    /* Footer tweaks already added, ensure spacing */
    .footer { padding: 2.4rem 0 1.2rem; }

    /* Navbar mobile: keep panel hidden by default + ensure opening still works */
    .navbar__nav { width: 100%; right: -100%; }
    .navbar__nav.show-menu { right: 0; } /* FIX: indispensable */

    .navbar__list { gap: 1.2rem; }
    .navbar__link { font-size: 1rem; }

    /* Reservation confirmation adjustments */
    .reservation-confirmation { margin: 1rem; padding: 1rem; }

    .gallery-carousel__viewport { min-height: 440px; border-radius: 18px; }
    .gallery-slide__media { min-height: 350px; }
    .gallery-carousel__btn { width: 38px; height: 38px; font-size: 1.6rem; }
    .gallery-carousel__btn--prev { left: 8px; }
    .gallery-carousel__btn--next { right: 8px; }
}

@media screen and (max-width: 550px) {
    .hero {
        min-height: 68vh;
        padding: 1.2rem 0.75rem;
        align-items: flex-end;
    }

    .hero__title {
        font-size: 1.65rem;
        line-height: 1.12;
        letter-spacing: 0;
        margin-bottom: 0.7rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero__content.container {
        padding: 0 0.35rem 1rem;
    }

    .footer {
        padding: 1.8rem 0 1rem;
    }

    .footer__container {
        gap: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer__col {
        padding: 0.15rem 0.2rem;
    }

    .footer__title {
        font-size: 0.96rem;
        margin-bottom: 0.45rem;
    }

    .footer__col p,
    .footer__col a {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .footer__copyright {
        font-size: 0.72rem;
        padding-top: 0.8rem;
    }

    .gallery-carousel__viewport { min-height: 360px; }
    .gallery-slide__media { min-height: 280px; }
    .gallery-slide__caption { padding: 0.75rem 0.8rem 0.95rem; }
    .gallery-slide__caption h3 { font-size: 1.05rem; }
    .gallery-slide__caption p { font-size: 0.9rem; }
}

/* --- ANIMATIONS CLASSES --- */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reservation-confirmation {
    margin-top: 2rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.reservation-confirmation__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reservation-confirmation__header h2 {
    margin: 0 0 0.4rem 0;
    font-size: 1.8rem;
}

.reservation-confirmation__meta {
    margin: 0;
    color: #6b6b6b;
}

.reservation-confirmation__status {
    background: #e6f6ec;
    color: #1a5f30;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.reservation-confirmation__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
}

.reservation-confirmation__details h3 {
    margin-bottom: 1rem;
}

.reservation-confirmation__details dl {
    display: grid;
    gap: 0.8rem;
    margin: 0;
}

.reservation-confirmation__details dt {
    font-weight: 600;
    color: #2f2f2f;
}

.reservation-confirmation__details dd {
    margin: 0.1rem 0 0 0;
    color: #5c5c5c;
}

.reservation-confirmation__address {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee8dd;
}

.reservation-confirmation__qr-card {
    background: #faf6ef;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #eee8dd;
}

.reservation-confirmation__qr {
    margin: 0 auto 1rem auto;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
}

.reservation-confirmation__qr svg {
    width: 240px;
    max-width: 100%;
    height: auto;
}

.reservation-confirmation__qr-text {
    margin: 0.6rem 0 0.4rem 0;
}

.reservation-confirmation__token {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: #2f2f2f;
}

.reservation-confirmation__cta {
    width: 100%;
    text-align: center;
}

.reservation-confirmation__info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee8dd;
}

.reservation-confirmation__info ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #5c5c5c;
}

@media screen and (max-width: 768px) {
    .reservation-confirmation {
        padding: 1.5rem;
    }

    .reservation-confirmation__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reservation-confirmation__grid {
        grid-template-columns: 1fr;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
