/* ============================================================
   KOFEO RESTAURANT – style.css (Unified Premium Gold Version)
============================================================ */

/* ─── VARIABLES CSS ──────────────────────────────────────── */
:root {
  /* Nuancier Premium */
  --black: #0d0d0b;
  --dark: #1a1918;
  --cream: #f7f2ec;
  --warm: #faf6f0;
  --gold: #c8a96e;
  --text: #1c1c1a;
  --gray: #787870;
  --muted: #a0a098;
  --spicy: #e84d3a;
  --vegan: #4a8b58;
  --white: #ffffff;
  --divider: #d0cec8;

  /* Typographies */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'DM Serif Display', serif;

  /* Dimensions & Transparences */
  --nav-height: 80px;
  --section-pad: 100px 8%;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* ─── RESET + BASE ───────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── BOUTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.btn-nav:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  background: transparent;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(13, 13, 11, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 14px 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 9, 8, 0.62) 0%,
      rgba(10, 9, 8, 0.53) 60%,
      rgba(10, 9, 8, 0.90) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeUpIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo-title {
  width: 70%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.hero-subtitle {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  margin-top: -10%;
  margin-bottom: 36px;
  position: relative;
  z-index: 10;
  animation: fadeUpIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .btn-primary {
  display: inline-block;
  margin: 0 auto;
}

/* Flèche de scroll */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 7rem 8%;
  align-items: center;
  background: var(--white);
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 125%;
  margin-left: -12.5%;
  display: block;
}

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-text {
  color: var(--gray);
  line-height: 1.8;
}

/* ─── MENU SECTION ─── */
/* MENU */
.menu-section {
  padding: 7rem 8%;
  background: var(--black);
}

.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  color: var(--gray);
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-card-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #f3ede3, #e8ddd0);
}

.menu-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.menu-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.menu-card-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-vegan {
  background: #d1fae5;
  color: #065f46;
}

.badge-spicy {
  background: #fee2e2;
  color: #991b1b;
}

.badge-popular {
  background: #fef3c7;
  color: #92400e;
}

/* ─── NEW MENU TEMPLATE STYLES ─── */
/* ─── NEW MENU LIST CHIC STYLE ─── */
.menu-list-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.menu-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-list-row {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.menu-list-name-fr {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.menu-list-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  margin: 0 12px;
  position: relative;
  top: -4px;
}

.menu-list-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-list-name-pt {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  font-weight: 400;
  margin-top: 4px;
}

.menu-list-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 6px;
}

/* Composition des formules — entrée / plat / dessert sur des lignes distinctes */
.formule-compo {
  margin: 0.2rem 0 1.9rem;
}

.formule-compo p {
  color: #d2d0c9;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.formule-compo p:last-child {
  margin-bottom: 0;
}

.formule-cat {
  display: inline-block;
  min-width: 150px;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.formule-note {
  font-style: italic;
  color: var(--gray) !important;
  margin-bottom: 0.7rem !important;
}

@media (max-width: 600px) {
  .formule-cat {
    display: block;
    min-width: 0;
    margin-bottom: 0.15rem;
  }
}

/* Group Title within menu */
.menu-group-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}

/* Animation fixes */
.menu-category {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-category.active {
  display: block;
}

/* ─── ONGLET RODÍZIO ─── */
.rodizio {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--cream);
}

.rodizio-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.rodizio-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.rodizio-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.rodizio-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #d9d7d0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.rodizio-lead strong,
.rodizio-cuts p strong {
  color: var(--gold);
  font-weight: 600;
}

.rodizio-meats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.25rem;
}

.meat-chip {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.rodizio-cuts h4 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.rodizio-cuts > p {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem;
  color: #d9d7d0;
  line-height: 1.75;
}

.decoupe-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.decoupe-figures figure {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  box-shadow: var(--shadow);
}

.decoupe-figures img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.decoupe-figures figcaption {
  text-align: center;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 0.7rem;
  padding-bottom: 0.4rem;
}

.rodizio-cuts .rodizio-cta {
  text-align: center;
  margin: 4rem auto 0;
  font-size: 1.05rem;
  color: var(--cream);
}

.rodizio-cta a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  transition: opacity var(--transition);
}

.rodizio-cta a:hover {
  opacity: 0.75;
}

@media (max-width: 760px) {
  .decoupe-figures {
    grid-template-columns: 1fr;
  }

  .rodizio-title {
    font-size: 2.2rem;
  }
}

/* ─── GALERIE ─── */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}

.gallery-big {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  transition: transform 0.5s;
}

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

/* ─── INSTAGRAM ─── */
.instagram {
  padding: 64px 5%;
  text-align: center;
  background: var(--black);
}

.insta-header {
  color: var(--white);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.insta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}

.insta-item {
  flex: 0 0 calc((100% - 15px) / 6);
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-item img {
  height: 100%;
  transition: transform 0.4s;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* REVIEWS */
.reviews-section {
  padding: 7rem 8%;
  background: var(--light);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  max-width: 440px;
  margin: 0 auto 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.overall-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.2rem;
}

.reviews-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 1024px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    max-width: 1180px;
    margin-inline: auto;
  }

  .review-card {
    max-width: none;
  }
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  width: 100%;
  max-width: 320px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--gray);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.review-text {
  font-size: 0.87rem;
  color: #374151;
  line-height: 1.65;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.google-badge span {
  font-size: 0.72rem;
  color: var(--gray);
}


/* ─── CONTACT ─── */
/* ─── SECTION RÉSERVATION (deux blocs : infos + formulaire) ─── */
.reservation-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 8% 3rem;
  background: var(--cream);
}

.reservation-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info-block,
.reservation-form-block {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-info-block .contact-header,
.reservation-form-block .contact-header {
  margin-bottom: 28px;
}

/* ─── CARTE INTERACTIVE PLEINE LARGEUR ─── */
.map-section {
  background: var(--white);
}

.map-fullwidth-wrapper {
  position: relative;
  width: 100%;
  height: 520px; /* hauteur réduite d'environ 20% par rapport à l'ancienne carte */
  min-height: 300px;
  background: #eee;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.detail-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.detail-item p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.detail-item a {
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}

.detail-item a:hover {
  color: var(--gold);
}

.contact-actions {
  margin-top: auto;
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-reservation svg {
  transition: transform var(--transition);
}

.btn-reservation:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3);
}

.btn-reservation:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

/* ─── FORMULAIRE DE RÉSERVATION ─── */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row-triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.reservation-form input.invalid,
.reservation-form textarea.invalid {
  border-color: var(--spicy);
  box-shadow: 0 0 0 3px rgba(232, 77, 58, 0.12);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 76px;
}

.reservation-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23787870' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Note des conditions de réservation (en tête de formulaire) */
.reservation-conditions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.reservation-conditions svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.reservation-conditions p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray);
}

.reservation-conditions strong {
  color: var(--text);
}

.btn-reservation-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 15px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-reservation-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3);
}

.btn-reservation-submit svg {
  transition: transform var(--transition);
}

.btn-reservation-submit:hover svg {
  transform: translateX(3px) rotate(8deg);
}

.form-feedback {
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.2em;
  margin-top: 2px;
}

.form-feedback.error {
  color: var(--spicy);
}

.form-feedback.success {
  color: var(--vegan);
}

.form-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── TOOLTIP CONTACT ─── */
.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.info-icon {
  color: var(--gold);
  transition: opacity var(--transition);
  cursor: help;
}

.info-icon:hover {
  opacity: 0.7;
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 400;
  width: max-content;
  max-width: 280px;
  line-height: 1.5;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: normal;
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--black) transparent transparent transparent;
}

.info-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Leaflet z-index fix */
.leaflet-top,
.leaflet-bottom {
  z-index: 500 !important;
}

/* Responsive Contact */
@media (max-width: 992px) {
  .map-fullwidth-wrapper {
    height: 380px;
  }
}

.leaflet-pane {
  z-index: 400 !important;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 6% 20px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.nav-links-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links-footer a:hover {
  color: var(--gold);
}

.btn-footer {
  white-space: nowrap;
}

.brand-watermark {
  text-align: center;
  padding-top: 65px;
  padding-bottom: 5px;
  pointer-events: none;
}

.brand-watermark .footer-logo {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  opacity: 0.35;
  margin: 0 auto;
  display: block;
  filter: grayscale(100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 8%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.2) 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 8%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.2) 65%, transparent 100%);
}

.divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.copyright-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  /* Pas de backdrop-filter sur mobile : il transformerait la navbar en bloc
     conteneur pour le menu plein écran (position:fixed), qui ne couvrirait
     alors plus tout l'écran une fois la page défilée. */
  .navbar.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(13, 13, 11, 0.92);
  }

  /* Menu mobile plein écran (overlay) */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    background: var(--black);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-logo {
    position: relative;
    z-index: 1000;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .insta-grid .insta-item {
    flex: 0 0 calc((100% - 6px) / 3);
  }

  .reservation-section {
    min-height: 0;
    display: block;
    padding: 4rem 6% 3rem;
  }

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

  .contact-info-block,
  .reservation-form-block {
    padding: 32px 24px;
  }

  .form-row,
  .form-row-triple {
    grid-template-columns: 1fr;
  }

  .map-fullwidth-wrapper {
    height: 300px;
  }

  /* Mobile Sliding Gallery */
  .gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0 5% 20px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 0;
    margin-bottom: 0;
    width: auto;
  }
  
  .gallery-item img {
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    width: 100%;
  }

  /* Mobile Review Cards Slider */
  .reviews-grid {
    scroll-snap-type: x mandatory;
    padding: 0 5% 20px 5%;
  }
  
  .review-card {
    flex: 0 0 85%;
    max-width: none;
    scroll-snap-align: center;
  }

  /* Allow menu button text to breakline on mobile only */
  .btn-footer {
    white-space: normal;
  }
}

/* ============================================================
   PAGES LÉGALES (mentions légales, confidentialité, CGV)
============================================================ */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.legal-logo img {
  width: 34px;
  height: 34px;
  border-radius: 4px;
}

.legal-back {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-back:hover {
  opacity: 0.8;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 6% 90px;
  color: var(--text);
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 6px 0 10px;
  color: var(--text);
}

.legal-updated {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 38px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
}

.legal-page h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 22px 0 8px;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.75;
  color: #44443f;
}

.legal-page ul {
  margin: 12px 0 12px 22px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-page strong {
  color: var(--text);
}

.todo {
  background: #fff4d6;
  color: #8a6400;
  border-radius: 4px;
  padding: 1px 7px;
  font-weight: 600;
  font-size: 0.92em;
  white-space: nowrap;
}

.legal-footer {
  background: var(--black);
  color: var(--muted);
  text-align: center;
  padding: 36px 6%;
}

.legal-footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.legal-footer a {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-footer a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .legal-page h1 {
    font-size: 2rem;
  }
}

/* ============================================================
   AJOUTS — révision menu juin 2026
============================================================ */

/* Icône du bouton « La carte » */
.btn-nav svg { flex-shrink: 0; }

/* Sous-titre (traduction PT) sous un titre de groupe — ex. Viandes */
.menu-group-sub {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
}

/* Note « servi avec accompagnement » dans l'onglet Plats */
.menu-accomp-note {
  max-width: 540px;
  margin: 8px auto 24px;
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mention « Garniture au choix » sous le plat du menu du midi */
.formule-garniture {
  color: rgba(255, 255, 255, 0.5) !important;
  font-style: italic;
  font-size: 0.84rem !important;
  margin: -0.15rem 0 0.65rem !important;
  padding-left: 150px;
}

/* Lien discret « Découvrez le Rodízio » dans l'onglet Menu */
.rodizio-jump-wrap {
  text-align: center;
  margin: 1.8rem 0 0.3rem;
}
.rodizio-jump {
  display: inline-block;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(199, 161, 90, 0.45);
  transition: opacity var(--transition);
}
.rodizio-jump:hover { opacity: 0.65; }

/* Bloc menu Rodízio (déplacé dans l'onglet Rodízio) */
.rodizio-menu {
  max-width: 720px;
  margin: 2.4rem auto 0;
}
.rodizio-volonte {
  color: var(--gold) !important;
  font-style: italic;
  text-align: center;
  font-size: 0.95rem !important;
  margin: 1rem 0 0 !important;
}

/* « Parfums & sorbets » centré, en tête des glaces */
.glaces-parfums { text-align: center; }
.glaces-parfums .menu-list-row { justify-content: center; }
.glaces-parfums .menu-list-desc { text-align: center; }

/* Écriture script en ligne — ex. (Carioca), (Pingo) */
.menu-name-script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 1.25em;
  color: rgba(255, 255, 255, 0.72);
  margin-left: 3px;
}

/* Encadré « Champagne du propriétaire » mis en avant */
.champagne-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 1.6rem 0 0.4rem;
  padding: 20px 24px;
  border: 1px solid rgba(199, 161, 90, 0.45);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(199, 161, 90, 0.14), rgba(199, 161, 90, 0.03));
}
.champagne-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(199, 161, 90, 0.5);
}
.champagne-info { flex: 1; }
.champagne-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.champagne-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}
.champagne-desc {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}
.champagne-price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--gold);
}

@media (max-width: 600px) {
  .formule-garniture { padding-left: 0; }
  .champagne-feature { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .champagne-price { width: 100%; text-align: right; }
}

/* ============================================================
   AJOUTS — révision menu (2) : alignement listes + accompagnements
============================================================ */

/* Composition des menus : libellé doré en colonne fixe (aligné sur le nom
   du plat « Menu ») + plats à droite ; les retours à la ligne des plats
   restent alignés sous la première ligne. */
.formule-compo p {
  display: flex;
  align-items: baseline;
}
.formule-cat {
  flex: 0 0 150px;
}
.formule-compo p.formule-note,
.formule-compo p.rodizio-volonte {
  display: block;
}

/* Liste des garnitures sous la note d'accompagnement */
.menu-accomp-note .accomp-list {
  font-style: normal;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 600px) {
  /* Compo : libellé au-dessus, plats en dessous */
  .formule-compo p { display: block; }
  .formule-cat { flex: none; }

  /* Items : nom + prix sur la même ligne tant que ça tient ; si le prix est
     trop large (ex. « X € ou Y € ou Z € »), il passe sous le nom, à droite. */
  .menu-list-row { flex-wrap: wrap; align-items: baseline; row-gap: 2px; }
  .menu-list-name-fr { flex: 1 1 auto; min-width: 60%; font-size: 1.1rem; }
  .menu-list-dots { display: none; }
  .menu-list-price { flex: 0 0 auto; margin-left: auto; font-size: 1.02rem; }
}
/* Saut de ligne visible uniquement sur mobile (titre « De Porto à Rio, ») */
.br-mobile { display: none; }
@media (max-width: 768px) {
  .br-mobile { display: inline; }
}