/* ===== STYLES GLOBAUX PROFESSIONNELS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 50px;
  width: auto;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Dropdown Menu */
.dropdown-content,
.menu-dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 1000;
}

.dropdown-content a,
.menu-dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover,
.menu-dropdown-content a:hover {
  background: #f8f8f8;
  color: #d4af37;
}

.nav-links li:hover .dropdown-content,
.menu-dropdown-wrapper:hover .menu-dropdown-content {
  display: block;
}

.nav-links li,
.menu-dropdown-wrapper {
  position: relative;
}

/* ===== BANDEAU D'ANNONCE ===== */
.announcement-banner {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #d4af37;
}

.announcement-banner strong {
  color: #d4af37;
  font-weight: 600;
}

/* ===== HEADER DE PAGE ===== */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 3px solid #d4af37;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 60vh;
}

/* ===== LISTE DE MENU ===== */
.menu-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
}

.menu-list li {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: background 0.3s ease;
  position: relative;
}

.menu-list li:hover {
  background: #f8f8f8;
  padding-left: 2.3rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list strong {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.menu-list li span {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 2rem;
}

/* Description sous le nom du plat */
.menu-list li:not(:has(span)) strong::after {
  content: "";
  display: block;
}

.menu-list li strong + br + text,
.menu-list li strong ~ text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SECTIONS SPÉCIALES ===== */
.menu-section-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d4af37;
  text-align: center;
}

/* ===== DÉCORATIONS (plumes) ===== */
.plume-deco,
.plume-deco-top-left {
  display: none;
}

.animated-plume {
  display: none;
}

/* ===== CONTACT ===== */
.contact {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.contact > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-infos {
  background: #f8f8f8;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: left;
}

.contact-infos p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.contact-infos strong {
  color: #1a1a1a;
  font-weight: 600;
  display: inline-block;
  min-width: 150px;
}

.contact-infos a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-infos a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 4rem;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  header h1 {
    font-size: 2rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .menu-list li {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
  }

  .menu-list li span {
    margin-left: 0;
    align-self: flex-end;
  }

  .contact-infos {
    padding: 1.5rem;
  }

  .contact-infos strong {
    display: block;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    font-size: 0.85rem;
  }

  header {
    padding: 2rem 1rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .menu-list strong {
    font-size: 1rem;
  }

  .menu-list li span {
    font-size: 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: fadeIn 0.6s ease-out;
}

.menu-list li {
  animation: fadeIn 0.4s ease-out backwards;
}

.menu-list li:nth-child(1) { animation-delay: 0.05s; }
.menu-list li:nth-child(2) { animation-delay: 0.1s; }
.menu-list li:nth-child(3) { animation-delay: 0.15s; }
.menu-list li:nth-child(4) { animation-delay: 0.2s; }
.menu-list li:nth-child(5) { animation-delay: 0.25s; }
