:root {
  --charcoal: #1a1614;
  --charcoal-light: #2b2420;
  --gold: #f2a71b;
  --gold-dark: #d18e0f;
  --orange: #e8590c;
  --cream: #faf6ee;
  --cream-dark: #f0e6d2;
  --text-muted: #6b6558;
}

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

h1, h2, h3, h4, .navbar-brand, .footer-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
}

/* --- Navbar --- */
.navbar-custom {
  background-color: var(--charcoal);
  padding: 0.9rem 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold) !important;
}
.nav-link {
  color: #fff !important;
  font-weight: 600;
  margin: 0 0.5rem;
}
.nav-link:hover { color: var(--gold) !important; }
.btn-order {
  background-color: var(--gold);
  color: var(--charcoal) !important;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-weight: 800;
  border: none;
}
.btn-order:hover { background-color: var(--orange); color: #fff !important; }

/* --- Hero --- */
.hero {
  background-color: var(--charcoal);
  background-image:
    radial-gradient(ellipse at top right, rgba(242,167,27,.15), transparent 60%),
    linear-gradient(rgba(26,22,20,.75), rgba(26,22,20,.85)), url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; color: var(--gold); }
.hero p.lead { font-size: 1.2rem; opacity: .95; }
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
}
.hero .btn-accent {
  background-color: var(--gold);
  border: none;
  color: var(--charcoal);
  padding: .75rem 2rem;
  border-radius: 30px;
  font-weight: 800;
}
.hero .btn-accent:hover { background-color: var(--orange); color: #fff; }
.hero .btn-outline-cream {
  border: 2px solid #fff;
  color: #fff;
  padding: .7rem 2rem;
  border-radius: 30px;
  font-weight: 700;
}
.hero .btn-outline-cream:hover { background: #fff; color: var(--charcoal); }

.afsca-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(76,175,80,.15);
  border: 1px solid #4caf50;
  color: #a5d6a7;
  border-radius: 30px;
  padding: .4rem 1.1rem;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1.2rem;
}

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

/* --- Cards spécialités --- */
.dish-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,22,20,.08);
  transition: transform .25s ease;
  height: 100%;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card img { height: 200px; object-fit: cover; width: 100%; }
.dish-card .dish-body { padding: 1.3rem; }
.dish-price { color: var(--orange); font-weight: 800; }

/* --- Menu --- */
.menu-category { margin-bottom: 3rem; }
.menu-category h3 {
  color: var(--charcoal);
  background: var(--gold);
  display: inline-block;
  padding: .4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-item .menu-item-name { font-weight: 700; }
.menu-item .menu-item-desc { color: var(--text-muted); font-size: .85rem; }
.menu-item .menu-item-price {
  color: var(--orange);
  font-weight: 800;
  white-space: nowrap;
  margin-left: 1rem;
}
.sauce-pill {
  display: inline-block;
  background: var(--cream-dark);
  border-radius: 30px;
  padding: .35rem 1rem;
  margin: .25rem;
  font-size: .9rem;
  font-weight: 600;
}

/* --- Livraison --- */
.zone-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26,22,20,.08);
  height: 100%;
}
.zone-card.zone-gratuite { border-top: 4px solid #4caf50; }
.zone-card.zone-payante { border-top: 4px solid var(--orange); }
.zone-list li { padding: .4rem 0; border-bottom: 1px solid var(--cream-dark); }

/* --- Avis --- */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(26,22,20,.06);
  height: 100%;
}
.review-stars { color: var(--gold); }
.rating-summary {
  background: var(--charcoal);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.rating-summary .big-number { font-size: 3rem; font-weight: 800; color: var(--gold); font-family: 'Baloo 2', sans-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(--gold); }

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

/* --- Contact --- */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(26,22,20,.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(--gold);
  box-shadow: 0 0 0 .2rem rgba(242,167,27,.2);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .8rem 2rem;
  font-weight: 800;
  width: 100%;
}
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

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

.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; }
}
