/* === TON CSS INTÉGRAL + AMÉLIORATIONS === */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff8e3;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    font-size: 18px;
    font-weight: bold;
}

.navbar-light {
    background-color: #dfaf2c !important;
}

.navbar-brand h1 {
    font-size: 24px;
    color: #fff;
}

.nav-item .nav-link {
    color: #fff !important;
    transition: color 0.3s ease-in-out;
}

.nav-item .nav-link:hover {
    color: #000 !important;
}

/* Hero */
.hero-header {
    background: url('Accueil.jpg') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-header h1, .hero-header p, .hero-header .btn {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-header p {
    font-size: 20px;
    color: #fff;
}

/* Small hero image shown under the CTA (responsive) */
.hero-small-img {
  width: 320px;
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  margin: 1.25rem auto 0;
  display: block;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .hero-small-img { width: 220px; max-width: 90%; }
}

.btn-primary {
    background-color: #c02c2c;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #a02424;
}

/* Sections */
#about, #menu, #contact {
    padding: 80px 0;
}

#about h2, #menu h2, #contact h2 {
    font-size: 36px;
    color: #c02c2c;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

#about p {
    font-size: 18px;
    line-height: 1.7;
}

/* Menu Cards */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    font-size: 22px;
    color: #c02c2c;
}

/* === AMÉLIORATIONS MENU (TON CODE) === */
:root{
  --accent: #2ea44f;
  --muted: #6c757d;
  --card-bg: #ffffff;
  --card-radius: 12px;
  --card-shadow: 0 12px 30px rgba(31,45,61,0.08);
}

.card.h-100 {
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid #eee;
}
.card.h-100:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.card-body {
  padding: 1.25rem 1.5rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--accent);
}

.menu-item,
.list-unstyled.mb-0 li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .55rem 0;
  border-bottom: 1px dashed #f0f0f0;
}
.menu-item:last-child,
.list-unstyled.mb-0 li:last-child {
  border-bottom: none;
}

.menu-item .dish {
  max-width: 78%;
}
.menu-item .dish strong {
  display: block;
  font-weight: 600;
  color: #222;
}
.menu-item .dish small {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: .22rem;
}

.price {
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  margin-left: 12px;
  background: rgba(46,164,79,0.08);
  padding: .28rem .6rem;
  border-radius: 8px;
  font-size: .95rem;
}

.dish-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .menu-item { flex-direction: column; gap: .35rem; }
  .menu-item .dish { max-width: 100%; }
  .price { align-self: flex-start; }
  .hero-header h1 { font-size: 2.5rem; }
}