html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #181818;
  color: #fff;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-size: 2.2rem;
  font-weight: bold;
}
.burger {
  display: none;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  transition: right 0.3s;
}
.nav-links a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 6px 16px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links a:hover, .retour {
  color: #b86b2b;
}
.retour {
  color: #FFD700;
}
@media (max-width: 900px) {
  .navbar { padding: 10px 8px; gap: 0; }
  .logo { font-size: 1.5rem; }
  .burger {
    display: block;
  }

    .hero-img {
    width: 98vw;
    max-width: 320px;
    margin: 18px auto 0 auto;
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    flex-direction: column;
    background: rgba(0,0,0,0.97);
    width: 70vw;
    height: 100vh;
    gap: 0;
    padding-top: 70px;
    padding-left: 0;
    align-items: flex-start;
    box-shadow: 0 0 18px #b86b2b;
    transition: right 0.3s;
    z-index: 1001;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #b86b2b;
  }
  .nav-links a, .retour {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    border-radius: 0;
    background: none;
    text-align: left;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .burger.active {
    color: #b86b2b;
  }
  .nav-links { gap: 10px; }
  .hero { flex-direction: column; text-align: center; padding: 30px 4px 18px 4px; }
  .hero-img { margin: 18px 0 0 0; width: 90vw; max-width: 400px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .btn-cta { font-size: 1rem; padding: 12px 18px; }
  .histoire-section { padding: 30px 4px 18px 4px; }
  .histoire-titre { font-size: 1.3rem; margin-bottom: 18px; }
  .histoire-content { flex-direction: column; align-items: center; gap: 20px; }
  .histoire-img { width: 98vw; max-width: 320px; margin-bottom: 0; }
  .chef-block { justify-content: center; }
  .menu-section { padding: 30px 4px 18px 4px; }
  .menu-section h2 { font-size: 1.1rem; margin-bottom: 18px; }
  .menu-cards { gap: 10px; flex-direction: column; align-items: center; }
  .menu-card { width: 98vw; max-width: 300px; padding: 12px 4px; }
  .menu-card img { width: 80px; height: 80px; margin-bottom: 8px; }
  .menu-card h3 { font-size: 1rem; }
  .menu-card .prix { font-size: 1rem; }
  .galerie-section { padding: 30px 4px 18px 4px; }
  .galerie-section h2 { font-size: 1rem; margin-bottom: 18px; }
  .galerie-images { gap: 8px; }
  .gal-img { width: 90px; height: 60px; margin-bottom: 4px; }
  .avis-client { padding: 18px 4px 10px 4px; }
  .avis-card { padding: 8px 4px; max-width: 98vw; }
  .avis-img { width: 30px; height: 30px; margin-bottom: 4px; }
  .avis-stars { font-size: 1rem; }
  .avis-nom { font-size: 0.95rem; }
  .contact-section { padding: 18px 4px 10px 4px; }
  .contact-section h2 { font-size: 1rem; margin-bottom: 8px; }
  .contact-section p, .contact-section a { font-size: 0.95rem; }
  .contact-form { padding: 8px 2px; max-width: 98vw; gap: 8px; }
  .contact-form input, .contact-form textarea { font-size: 0.95rem; padding: 8px; }
  .contact-form button { font-size: 0.95rem; padding: 10px 0; }
  footer { font-size: 0.95rem; padding: 12px 4px; margin-top: 18px; }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px 30px 10px;
  background: linear-gradient(120deg, #2d1a14 60%, #b86b2b 100%);
  position: relative;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 500px;
  z-index: 2;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 18px #b86b2b;
  font-family: 'Poppins', serif;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-style: italic;
}
.btn-cta {
  background: linear-gradient(135deg, #FFD700, #b86b2b);
  color: #2d1a14;
  font-weight: bold;
  border-radius: 30px;
  padding: 16px 38px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 0 14px #FFD700;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  border: 2px solid #b86b2b;
}
.btn-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #FFD700;
  background: linear-gradient(135deg, #b86b2b, #FFD700);
}
.hero-img {
  width: 380px;
  border-radius: 24px;
  margin-left: 50px;
  box-shadow: 0 0 40px #b86b2b;
  animation: fadeIn 1.5s;
}
.histoire-section {
  background: #181818;
  padding: 70px 10px 40px 10px;
  color: #FFD700;
}
.histoire-titre {
  font-size: 2.4rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.histoire-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.histoire-img {
  width: 320px;
  border-radius: 18px;
  box-shadow: 0 0 30px #FFD700;
  margin-bottom: 20px;
}
.histoire-texte {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.histoire-texte p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.chef-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.chef-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px #b86b2b;
  border: 3px solid #FFD700;
}
.chef-signature {
  font-family: 'Poppins', cursive;
  font-size: 1.2rem;
  color: #FFD700;
  font-style: italic;
  letter-spacing: 1px;
}
.menu-section {
  padding: 70px 10px 40px 10px;
  background: #2d1a14;
  text-align: center;
}
.menu-section h2 {
  color: #FFD700;
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.menu-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-card {
  background: #2d1a14;
  border-radius: 18px;
  box-shadow: 0 0 16px #b86b2b, 0 0 40px #fff0  inset;
  padding: 28px 22px;
  width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: up 1s;
  border: 2px solid #b86b2b;
}
.menu-card:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 0 40px #b86b2b, 0 0 80px #fff0 inset;
}
.menu-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 20px #b86b2b;
  transition: transform 0.3s;
}
.menu-card:hover img {
  transform: scale(1.1) rotate(2deg);
}
.menu-card h3 {
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #b86b2b;
  font-family: 'Poppins', serif;
}
.menu-card .prix {
  color: #b86b2b;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
}
.galerie-section {
  padding: 70px 10px 40px 10px;
  background: #181818;
  text-align: center;
}
.galerie-section h2 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 30px;
}
.galerie-images {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.gal-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 10px #FFD700;
  margin-bottom: 10px;
  animation: up 1s;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}
.gal-img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 30px #FFD700;
  filter: brightness(1.1) contrast(1.2);
}
.avis-client {
  background: #181818;
  color: #FFD700;
  text-align: center;
  padding: 40px 10px 30px 10px;
}
.avis-card {
  background: #2d1a14;
  border-radius: 18px;
  box-shadow: 0 0 20px #b86b2b;
  display: inline-block;
  padding: 24px 18px;
  margin-top: 20px;
  max-width: 350px;
}
.avis-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 0 10px #FFD700;
}
.avis-stars {
  color: #FFD700;
  font-size: 1.3rem;
  margin: 8px 0;
}
.avis-nom {
  color: #fff;
  font-size: 1rem;
  margin-top: 6px;
}
.contact-section {
  padding: 60px 10px 40px 10px;
  background: #2d1a14;
  text-align: center;
}
.contact-section h2 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 18px;
}
.contact-section p, .contact-section a {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #181818;
  color: #fff;
  resize: none;
}
.contact-form button {
  background: linear-gradient(135deg, #FFD700, #b86b2b);
  color: #2d1a14;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px #FFD700;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #FFD700;
}
footer {
  background: #181818;
  color: #FFD700;
  text-align: center;
  padding: 24px 10px;
  font-size: 1rem;
  margin-top: 30px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.anim-fade { animation: fadeIn 1.2s; }
.anim-fade2 { animation: fadeIn 1.6s; }
.anim-fade3 { animation: fadeIn 2s; }
.anim-up { animation: up 1s; }