/* Polices et couleurs globales */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  color: #45543d;
  background-color: #F7F0E8;
}

/* Scroll fluide entre sections */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}

/* ===== SECTION 1 : écran plein avec logo centré ===== */
.screen {
  height: 100vh;
  background-color: #F7F0E8;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.screen .inner {
  max-width: 1200px;
  width: 100%;
}

/* Logo grande taille et responsive */
.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  max-height: 60vh;
}

/* ===== SECTION 2 : deux colonnes centrées ===== */
.screen-alt {
  height: 100vh;
  background-color: #F7F0E8;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.screen-alt .inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

/* Colonnes */
.col {
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .screen-alt .inner {
    flex-direction: row;
  }

  .col {
    width: 50%;
  }
}

/* Titres et paragraphes */
.inner h1, .inner h2 {
  font-family: 'Candal', sans-serif;
  font-size: 3rem;
}

.inner p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}


/* ==== MENU BURGER MODIFIÉ ==== */

/* Position du header */
.menu-header {
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  z-index: 2000;
}

/* Icône hamburger */
.menu-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
}

.menu-icon span {
  height: 4px;
  background-color: #45543d;
  border-radius: 2px;
  transition: 0.3s;
}

/* Masquer la checkbox */
#menu-toggle {
  display: none;
}

/* Menu plein écran caché par défaut */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #F7F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

/* Afficher le menu si coché */
#menu-toggle:checked + .menu-icon + .menu {
  transform: translateY(0);
}

/* Liens dans le menu */
.menu a {
  text-decoration: none;
  color: #45543d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight:bolder;
  font-size: 2rem;
  margin: 1rem 0;
}

/* Croix de fermeture */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #45543d;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}

/* ==== Bouton Réserver ==== */
.btn-reserver {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border: 2px solid #45543d;
  border-radius: 999px; /* coins très arrondis */
  text-decoration: none;
  color: #45543d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.btn-reserver:hover {
  background-color: #45543d;
  color: #F7F0E8;
}
/* Conteneur adresse en ligne */
.adresse {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* Icône */
.pin {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* Lien adresse */
.adresse-link {
  color: #45543d;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
}

.adresse-link:hover {
  text-decoration: underline;
}

/* Conteneur ligne téléphone */
.telephone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.5rem;
}

/* Icône 📞 */
.phone-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Lien téléphone */
.tel-link {
  color: #45543d;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
}

.tel-link:hover {
  text-decoration: underline;
}

/* Conteneur e-mail */
.email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.5rem;
}

/* Icône ✉️ */
.mail-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Lien e-mail */
.email-link {
  color: #45543d;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
}

.email-link:hover {
  text-decoration: underline;
}
.menu-page {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  background-color: #F7F0E8;
  color: #45543d;
  font-family: 'Roboto' , sans-serif;
  font-size: 1.2rem;
}

.menu-section {
  max-width: 800px;
  margin: 0 auto;
}

.menu-section h1 {
  font-family: 'Candal', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.menu-block {
  margin-bottom: 3rem;
}

.menu-block h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.menu-block ul {
  list-style: none;
  padding: 0;
}

.menu-block li {
  margin-bottom: 0.75rem;
}


.screen-alt {
  min-height: 100dvh;
  display: flex;
  align-items:center;
  justify-content: center;
  padding: 3rem 1.5rem 6rem;
  background-color: #F7F0E8;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.screen-alt .col {
  max-width: 600px;
  text-align: left;
  color: #45543d;
}

/* Responsive : réduire taille sur mobile */
@media (max-width: 768px) {
  .screen-alt h2 {
    font-size: 1.3rem;
  }

  .screen-alt p {
    font-size: 0.95rem;
  }

  .screen-alt .btn-reserver {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
  }
}