/* Reset simple */
* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #fff5f5; /* très léger rose saumon */
  border-bottom: 1px solid rgba(241,184,179,0.6);
  position: sticky;
  top: 0;
  z-index: 20;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  height: 100px;
  width: 100px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #b74f4a;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  gap: 18px;
}
nav a {
  text-decoration: none;
  color: #5d3a39;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
nav a[aria-current="page"] {
  background: rgba(183,79,74,0.08);
}

/* Hero */
.hero {
  height: 60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: #f7d4d0; /* fallback salmon */
  background-image: url('https://source.unsplash.com/1600x900/?catering,banquet'); /* replaces hero */
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(247,212,208,0.45), rgba(247,212,208,0.65));
  display:flex;
  align-items:center;
}
.hero-content {
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
  padding: 40px 20px;
}
.hero h1 {
  margin: 0 0 12px 0;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  color: #4a302f;
}
.hero p {
  margin: 0;
  font-weight: 500;
  color: #4a302f; /* Assombri pour meilleur contraste (était #6a3f3d) */
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 56px 0;
  background: #fff;
}
.section.small { padding: 40px 0; }

.section h2 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  color: #4a302f;
}
.subtitle-note {
  font-size: 0.7em;
  font-weight: normal;
  color: #6f4a49;
}
.lead {
  margin: 8px 0 28px 0;
  color: #6f4a49;
  opacity: 0.95;
}

/* Cards */
.cards {
  display:flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  width: 320px;
  max-width: 100%;
  border: 1px solid rgba(241,184,179,0.45);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(99,64,62,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: default;
}
.card[data-menu-target] {
  cursor: pointer;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(99,64,62,0.12);
}
.card img {
  display:block;
  width:100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card-body h3 {
  margin: 0 0 8px 0;
  font-size: 1.06rem;
  color: #4a302f;
}
.card-body p {
  margin: 0;
  color: #6f4a49;
  font-size: 0.95rem;
}
.card[data-menu-target]:focus-visible {
  outline: 3px solid rgba(183,79,74,0.45);
  outline-offset: 5px;
}
.card[data-menu-target][aria-expanded="true"] {
  box-shadow: 0 16px 44px rgba(99,64,62,0.16);
  transform: translateY(-4px);
}
.menu {
  margin: 32px auto 0;
  padding: 28px 24px;
  max-width: 720px;
  background: #fff6f6;
  border: 1px solid rgba(241,184,179,0.45);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(99,64,62,0.1);
  text-align: center;
}
.menu-fullwidth {
  max-width: 1100px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.menu[hidden] {
  display: none !important;
}
.menus {
  margin: 0;
  padding: 0;
}
.menu h3 {
  margin: 0 0 12px 0;
  color: #4a302f;
  font-size: 1.3rem;
}
.menu p {
  margin: 0;
  color: #6f4a49;
}

/* Accordion pour les forfaits cocktail */
.accordion .item {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(241,184,179,0.4);
  background: #fff9f9;
}
.accordion .title {
  width: 100%;
  padding: 14px 18px;
  background: #fff5f5;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  color: #8b3a36; /* Assombri pour meilleur contraste (était #b74f4a) */
  font-weight: 600;
  border-radius: 10px;
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.3s ease;
}
.accordion .content ul {
  padding: 12px 0 18px 20px;
  margin: 0;
  list-style: none;
}

/* Accordion pour les menus (gastronomique et classique) */
.menu-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 0;
}
.menu-accordion-item {
  border-radius: 12px;
  border: 1px solid rgba(241,184,179,0.4);
  background: #fff9f9;
  overflow: hidden;
}
.menu-accordion-title {
  width: 100%;
  padding: 16px 20px;
  background: #fff5f5;
  border: none;
  text-align: left;
  font-size: 1.3rem;
  cursor: pointer;
  color: #8b3a36; /* Assombri pour meilleur contraste (était #b74f4a) */
  font-weight: 600;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-accordion-title:hover {
  background: rgba(183,79,74,0.08);
}
.menu-accordion-title:focus-visible {
  outline: 3px solid rgba(183,79,74,0.6);
  outline-offset: 2px;
  background: rgba(183,79,74,0.12);
}
.menu-accordion-title::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.menu-accordion-item.active .menu-accordion-title::after {
  transform: rotate(45deg);
}
.menu-accordion-title .subtitle-note {
  font-size: 0.7em;
  font-weight: normal;
  color: #6f4a49;
  white-space: normal;
}
.menu-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}
.menu-accordion-item.active .menu-accordion-content {
  max-height: 5000px;
  padding: 24px 20px;
}
.menu-accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5d3a39;
}
.menu-accordion-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.menu-accordion-content li:last-child {
  margin-bottom: 0;
}
.menu-section {
  margin-bottom: 24px;
}
.menu-section:last-child {
  margin-bottom: 0;
}
.menu-section h3 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  color: #4a302f;
  font-weight: 600;
  border-bottom: 2px solid rgba(241,184,179,0.3);
  padding-bottom: 8px;
}
.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5d3a39;
}
.menu-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.menu-section li:last-child {
  margin-bottom: 0;
}

/* Menu de la semaine - Tableau */
#menu-semaine-container {
  overflow-x: auto;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}
.menu-semaine-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(99,64,62,0.06);
  min-width: 800px;
}
.menu-semaine-table thead {
  background: linear-gradient(180deg, rgba(247,212,208,0.25), rgba(255,245,245,0.15));
}
.menu-semaine-table th {
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  color: #8b3a36; /* Assombri pour meilleur contraste (était #b74f4a) */
  font-size: 0.95rem;
  border-bottom: 2px solid rgba(241,184,179,0.4);
  border-right: 1px solid rgba(241,184,179,0.2);
}
.menu-semaine-table th:first-child {
  font-weight: 700;
  min-width: 60px;
}
.menu-semaine-table th:last-child {
  border-right: none;
}
.menu-semaine-table td {
  padding: 12px;
  text-align: left;
  color: #5d3a39;
  font-size: 0.9rem;
  line-height: 1.6;
  vertical-align: top;
  border-bottom: 1px solid rgba(241,184,179,0.2);
  border-right: 1px solid rgba(241,184,179,0.15);
  background: #fff9f9;
}
.menu-semaine-table td:first-child {
  background: rgba(179, 135, 133, 0.08);
  font-weight: 600;
  text-align: center;
  color: #8b3a36; /* Assombri pour meilleur contraste (était #b74f4a) */
  min-width: 60px;
}
.menu-semaine-table td:last-child {
  border-right: none;
}
.menu-semaine-table tbody tr:hover td {
  background: #fff5f5;
}
.menu-semaine-table tbody tr:last-child td {
  border-bottom: none;
}
.menu-semaine-table b {
  color: #8b3a36; /* Assombri pour meilleur contraste (était #b74f4a) */
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.menu-semaine-table td[colspan] {
  text-align: center;
  font-style: italic;
  color: #6f4a49;
  background: rgba(247,212,208,0.15);
}

/* Styles pour le message d'absence de menu */
.menu-semaine-table .menu-absence-header {
  text-align: center;
  padding: 2rem;
}
.menu-semaine-table .menu-absence-header .menu-absence-message {
  font-size: 1.2em; /* Taille de police conservée (plus grande que le style par défaut) */
  line-height: 1.6;
}
.menu-semaine-table .menu-absence-notice {
  text-align: center;
  padding: 1.5rem;
  background-color: #fff3cd;
  border: 2px solid #ffeaa7;
}
.menu-absence-notice-content {
  font-size: 1.1em;
  color: #856404;
}

/* Features */
.features {
  display:flex;
  gap: 18px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 18px;
}
.feature {
  min-width: 180px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(247,212,208,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(241,184,179,0.18);
  text-align:center;
}
.feature h4 { margin: 0 0 8px 0; color: #5d3a39; }
.feature p { margin: 0; color: #6f4a49; }

/* Contact layout */
.contact-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card {
  padding: 22px;
  border-radius: 12px;
  background: #fff6f6;
  border: 1px solid rgba(241,184,179,0.35);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-list { margin: 12px 0 0 0; padding: 0; list-style: none; color: #5a3635; }
.contact-list li { margin-bottom: 8px; }
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.map-placeholder img,
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Footer */
.footer {
  padding: 20px 0;
  text-align:center;
  background:#fff5f5;
  border-top: 1px solid rgba(241,184,179,0.4);
  color: #5d3a39;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cards { gap: 16px; }
  .hero { height: 48vh; }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  /* Réduire la taille des cartes sur mobile */
  .card {
    width: 100%;
    max-width: 100%;
  }
  .card img {
    height: 150px; /* Réduit de 200px à 150px */
  }
  .card-body {
    padding: 12px; /* Réduit de 16px à 12px */
  }
  .card-body h3 {
    font-size: 1rem; /* Réduit de 1.06rem */
    margin-bottom: 6px;
  }
  .card-body p {
    font-size: 0.9rem; /* Réduit de 0.95rem */
  }
  
  /* Réduire l'espacement entre les sections */
  .section {
    padding: 40px 0; /* Réduit de 56px */
  }
  
  /* Réduire l'espacement des cartes */
  .cards {
    gap: 12px; /* Réduit de 16px */
  }
  
  /* Espacement réduit pour les menus affichés */
  .menu {
    margin: 20px auto 0; /* Réduit de 32px */
    padding: 20px 16px; /* Réduit de 28px 24px */
  }
}

/* Header with action button aligned to the right of title */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Simple button styles reused across the site */
.btn {
  appearance: none;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}
.btn.small { padding: 6px 10px; font-size: 0.9rem; }
.btn-outline {
  background: #fff;
  color: #5d3a39;
  border: 1px solid rgba(241,184,179,0.7);
}
.btn-outline:hover {
  background: rgba(241,184,179,0.15);
}

/* Modal */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.modal-dialog {
  position: relative;
  z-index: 1001;
  width: min(680px, 92vw);
  margin: 8vh auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  outline: none;
  padding: 18px 18px 10px;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(241,184,179,0.3);
  color: #5d3a39;
  font-size: 20px;
  cursor: pointer;
}
.modal-close:hover {
  background: rgba(241,184,179,0.5);
}
.modal-content {
  padding: 8px 0 6px;
}
