body {
    margin: 0;
    background-color: #f5f3ed;
    color: #232323;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

header {
    text-align: center;
    padding: 60px 20px 20px 20px;
    background-color: #ece7de;
    border-bottom: 2px solid #c5baa0;
    box-shadow: 0 2px 8px rgba(120,90,40,0.07);
}

header h1 {
    font-family: 'Old London', serif;
    font-size: 4em;
    margin: 0;
    letter-spacing: 2px;
    color: #863f20;
    text-shadow: 1px 2px 3px #c5baa0;
}
header p {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    color: #494949;
    font-size: 1.6em;
    margin-top: 10px;
}

nav {
    text-align: center;
    background-color: #d7cab4;
    padding: 15px 0;
    border-bottom: 1px solid #c5baa0;
}

nav a {
    color: #7b5025;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.1em;
    transition: color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

nav a:hover {
    color: #ba5b2d;
}

#presentation {
    background: #fff9f2;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(120,90,40,0.07);
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
}

#presentation h2 {
    color: #7b5025;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 2.2em;
}

#presentation p {
    font-size: 1.2em;
}

#liens-utiles ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#liens-utiles li {
    margin-bottom: 12px;
}

#liens-utiles a {
    color: #7b5025;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

#liens-utiles a:hover {
    color: #ba5b2d;
    text-decoration: underline;
}



footer {
    text-align: center;
    padding: 20px;
    background-color: #ece7de;
    font-size: 1em;
    color: #7b5025;
    border-top: 1px solid #c5baa0;
}

/* Bloc horaires – même esprit que #presentation, sans lignes, alignements comme le PDF */
#horaires-bar.bloc {
    background: #fff9f2;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(120,90,40,0.07);
    max-width: 980px;
    margin: 40px auto;
    padding: 0 20px 30px 20px;
}

/* Titre sur bandeau couleur du site */
#horaires-bar .titre-bandeau {
    margin: 0 -20px 18px -20px;        /* déborde pour prendre toute la largeur du bloc */
    background: #ece7de;               /* couleur du site */
    color: #000;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    padding: 18px 20px;
    border-bottom: 2px solid #c5baa0;
}

/* Grille 3 colonnes : Jour (gauche), Matin (centre), Soirée (droite) */
#horaires-bar .horaires-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    font-size: 1.25rem;                 /* police plus grande, comme le PDF */
}

#horaires-bar .horaires-grid > :nth-child(1) { text-align: left;  }
#horaires-bar .horaires-grid > :nth-child(2) { text-align: center;}
#horaires-bar .horaires-grid > :nth-child(3) { text-align: right; }

/* En-têtes */
#horaires-bar .entetes {
    font-weight: 700;
    color: #7b5025;
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 1.3rem;
}

/* Pas de lignes entre les rangées (rappel du PDF) — on gère juste l'espacement */
#horaires-bar .horaires-grid + .horaires-grid { margin-top: 2px; }

/* Responsive : sur petits écrans, on garde l’alignement mais on resserre un peu */
@media (max-width: 600px) {
    #horaires-bar .titre-bandeau { font-size: 1.6rem; padding: 14px 14px; }
    #horaires-bar .horaires-grid { font-size: 1.05rem; padding: 8px 2px; }
}
/* ----------------------------------------------------
   FORMULAIRE DE RÉSERVATION – VERSION UNIQUE
----------------------------------------------------- */

#reservation {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Carte formulaire avec bordure Aubusson */
#reservation .form-reservation {
    max-width: 640px;
    margin: 20px auto 40px auto;
    padding: 24px 32px;

    background: #f5f3ed;
    font-family: Georgia, "Times New Roman", serif;

    /*border: 10px solid transparent;
	border-image-source: url("../img/bordure-chapitre-C.svg");
	border-image-slice: 20;
	border-image-width: 1;  
	border-image-repeat: round;*/


    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
}

/* TITRES et légendes */
#reservation .form-reservation fieldset {
    border: none;
    margin-bottom: 25px;
    padding: 0;
}

#reservation .form-reservation legend {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #7b5025;
}

/* LABELS */
#reservation .form-reservation label {
    display: block;
    margin: 12px 0 5px 0;
    font-weight: bold;
    color: #7b5025;
    font-size: 15px;
}

/* CHAMPS (input, select, textarea) */
#reservation .form-reservation input,
#reservation .form-reservation select,
#reservation .form-reservation textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    color: #4a3a2a;
    background: #ffffff;
    border: 1px solid #c8bba7;
    border-radius: 6px;
    box-sizing: border-box;
    transition: 0.2s border, 0.2s box-shadow;
    font-family: Georgia, "Times New Roman", serif;
}

/* Focus moderne */
#reservation .form-reservation input:focus,
#reservation .form-reservation select:focus,
#reservation .form-reservation textarea:focus {
    border-color: #7b5025;
    outline: none;
    box-shadow: 0 0 6px rgba(123,80,37,0.3);
}

/* Select plus élégant */
#reservation .form-reservation select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%237b5025' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5.516 7.548l4.484 4.956 4.484-4.956z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 40px;
}

/* BOUTON */
#reservation .form-reservation button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #7b5025;
    color: #f5f3ed;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s background;
    font-family: Georgia, serif;
}

#reservation .form-reservation button:hover {
    background-color: #863f20;
}

/* Petites notes */
#reservation .form-reservation .note-obligatoire {
    font-size: 0.9em;
    color: #6f5a45;
    font-style: italic;
    margin-top: 10px;
}
/* ----------------------------------------------------
   Barre de progression 3 étapes (Séjour → Coordonnées → Envoi)
----------------------------------------------------- */

.progress-etapes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px auto 20px auto;
    max-width: 640px;
    position: relative;
}

/* Ligne horizontale derrière les pastilles */
.progress-etapes::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #d7cab4;
    transform: translateY(-50%);
    z-index: 0;
}

.progress-etapes .etape {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-etapes .numero {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #7b5025;
    background-color: #f5f3ed;
    color: #7b5025;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.progress-etapes .label {
    margin-top: 6px;
    font-size: 13px;
    color: #7b5025;
}

/* Étape active (ici : Séjour) */
.progress-etapes .etape.active .numero {
    background-color: #7b5025;
    color: #f5f3ed;
}
/* Étapes du formulaire multi-étapes */
#form-reservation .step {
    display: none;
}

#form-reservation .step.step-active {
    display: block;
}

/* Alignement des boutons suivant / précédent */
.boutons-etapes {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.boutons-etapes .btn-prec {
    background-color: #d7cab4;
    color: #7b5025;
    border-radius: 6px;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.boutons-etapes .btn-prec:hover {
    background-color: #c5b498;
}

.boutons-etapes .btn-suivant {
    background-color: #7b5025;
    color: #f5f3ed;
    border-radius: 6px;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.boutons-etapes .btn-suivant:hover {
    background-color: #863f20;
}

/* Barre de progression : état "complété" pour les étapes précédentes */
.progress-etapes .etape.complete .numero {
    background-color: #d7cab4;
    border-color: #7b5025;
    color: #7b5025;
}

/* On peut aussi accentuer la ligne derrière quand on progresse */
.progress-etapes::before {
    background-color: #e0d2ba;
}
/* ---------------------------
   NAV RESPONSIVE (hamburger)
--------------------------- */

.site-nav{
  background-color: #d7cab4;
  border-bottom: 1px solid #c5baa0;
  padding: 10px 12px;
  position: relative;
}

/* Liens en mode desktop */
.site-nav .nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-nav .nav-links a{
  color: #7b5025;
  text-decoration: none;
  font-size: 1.1em;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 8px 10px;
}

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

/* Bouton hamburger (caché desktop) */
.nav-toggle{
  display: none;
  background: transparent;
  border: 1px solid #c5baa0;
  border-radius: 8px;
  padding: 10px 10px;
  cursor: pointer;
  margin: 0 auto;
}

.nav-toggle-bar{
  display: block;
  width: 26px;
  height: 2px;
  background: #7b5025;
  margin: 5px 0;
}

/* Texte caché accessibilité */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Mobile : menu en tiroir */
@media (max-width: 720px){
  .nav-toggle{
    display: block;
  }

  .site-nav .nav-links{
    display: none;              /* caché par défaut */
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 520px;
    margin: 10px auto 0 auto;
    background: #fff9f2;
    border: 1px solid #c5baa0;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(120,90,40,0.07);
  }

  .site-nav .nav-links a{
    text-align: center;
    padding: 12px 10px;
    border-radius: 8px;
  }

  .site-nav .nav-links a:active{
    background: #ece7de;
  }

  /* quand ouvert */
  .site-nav.open .nav-links{
    display: flex;
  }
}
