:root {
  --sage: #6b7a5e;
  --sage-dark: #4d5943;
  --cream: #faf6ee;
  --cream-dark: #f0e9d8;
  --brass: #b08d57;
  --charcoal: #2e2b26;
  --text-muted: #6f6a5f;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
}

h1, h2, h3, h4, .navbar-brand, .footer-title {
  font-family: 'Playfair Display', serif;
}

/* --- Navbar --- */
.navbar-custom {
  background-color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.9rem 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--sage-dark) !important;
}
.nav-link {
  color: var(--charcoal) !important;
  font-weight: 500;
  margin: 0 0.6rem;
}
.nav-link:hover { color: var(--sage) !important; }
.btn-reserve {
  background-color: var(--sage);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  border: none;
}
.btn-reserve:hover { background-color: var(--sage-dark); color: #fff; }

/* --- Hero --- */
.hero {
  background-color: var(--charcoal);
  background-image: linear-gradient(rgba(46,43,38,.55), rgba(46,43,38,.55)), url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 7rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p.lead { font-size: 1.25rem; opacity: .95; }
.hero .btn-brass {
  background-color: var(--brass);
  border: none;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 .5rem;
}
.hero .btn-outline-cream {
  border: 2px solid #fff;
  color: #fff;
  padding: .7rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 .5rem;
}
.hero .btn-outline-cream:hover { background: #fff; color: var(--charcoal); }

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title span {
  display: block;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.section-alt { background-color: var(--cream-dark); }

/* --- Cards plats phares --- */
.dish-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46,43,38,.06);
  transition: transform .25s ease;
  height: 100%;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card img { height: 220px; object-fit: cover; width: 100%; }
.dish-card .dish-body { padding: 1.3rem; }
.dish-card h5 { font-family: 'Playfair Display', serif; }
.dish-price { color: var(--brass); font-weight: 700; }

/* --- Menu --- */
.menu-category { margin-bottom: 3rem; }
.menu-category h3 {
  color: var(--sage-dark);
  border-bottom: 2px solid var(--brass);
  display: inline-block;
  padding-bottom: .3rem;
  margin-bottom: 1.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-item .menu-item-name { font-weight: 600; }
.menu-item .menu-item-desc { color: var(--text-muted); font-size: .9rem; }
.menu-item .menu-item-price {
  color: var(--brass);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}

/* --- Avis --- */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(46,43,38,.06);
  height: 100%;
}
.review-stars { color: var(--brass); }
.rating-summary {
  background: var(--sage);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.rating-summary .big-number { font-size: 3rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: .3rem; font-size: 1.8rem; }
.star-rating input { display: none; }
.star-rating label { color: #ddd; cursor: pointer; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--brass); }

/* --- Contact / réservation --- */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(46,43,38,.08);
}
.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  padding: .65rem .9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 .2rem rgba(107,122,94,.15);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .8rem 2rem;
  font-weight: 600;
  width: 100%;
}
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

/* --- Galerie --- */
.gallery-item {
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 10px rgba(46,43,38,.08);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(46,43,38,.18);
}
#galerieCarousel .carousel-caption {
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  border-radius: 8px;
  bottom: 0;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--charcoal);
  color: #cfc9bc;
}
.site-footer .footer-title { color: #fff; margin-bottom: 1rem; font-size: 1.15rem; }
.site-footer a { color: #cfc9bc; text-decoration: none; }
.site-footer a:hover { color: var(--brass); }

/* --- Bouton WhatsApp flottant --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 1000;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 4.5rem 0; }
}
