* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  background: #f5f5f5;
  font-family: 'Acumin', sans-serif;
  font-weight: 400;
}

main {
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 20px;
}



footer {
  background-color: #03224c;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Acumin', sans-serif;
  font-weight: 400;
  font-stretch: 70%;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

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

footer p {
  color: #ffffff;
  font-size: 1rem;
  font-stretch: 70%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-col,
.footer-logo {
  flex: 1;
  padding: 10px;
}

/* Colonne gauche */
.footer-col:first-child {
  text-align: left;
}

/* Logo centré */
.footer-logo {
  text-align: center;
}

/* Colonne droite */
.footer-col:last-child {
  text-align: right;
}

.footer-col p {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-bottom {
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-social {
  text-align: center;
  margin: 20px 0;
}

.footer-social a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 0.7;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col,
  .footer-logo {
    text-align: center;
  }
}











.topbar {
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center; /* centre la liste horizontalement */
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.topbar .menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.topbar .menu li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

.topbar .menu li a:hover {
    color: #0077cc;
}

@media (max-width: 768px) {
  .topbar .menu {
    flex-direction: column;
    align-items: center;
    gap: 1.0rem;
  }
  .topbar .menu li a {
    display: block;
    padding: 0.5rem 0;
  }
}



.lang-switcher {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
}

.lang-switcher select {
    padding: 5px 8px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
}

@font-face {
  font-family: 'Acumin';
  src: url('../fonts/Acumin-Variable-Concept.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 50% 125%;
  font-style: normal;
  font-display: swap;
}

h1 { /* titre */
  font-weight: 300;
  font-stretch: 50%;
  font-size: 3.0rem;
  text-align: center;
  color: #03224c;
  padding-top: 3.0rem;
}

h2 { /* sous-titre */
  font-weight: 700;
  font-stretch: 50%;
  font-size: 2.0rem;
  text-align: center;
  color: #B8860B;
  padding-top: 0rem;
}

h3 { /* chapeau */
  font-weight: 500;
  font-stretch: 50%;
  font-size: 1.7rem;
  text-align: center;
  color: #03224c;
  padding-top: 1.7rem;
}

h4 { /* intro_page */
  font-weight: 500;
  font-stretch: 50%;
  font-size: 1.5rem;
  text-align: justify;
  color: #555555;
  padding-top: 1.5rem;
}

nav { /* menu navigation rubrique */
  font-weight: 500;
  font-stretch: 50%;
  font-size: 1.0rem;
}

p { /* paragraphe */
  font-weight: 500;
  font-stretch: 65%;
  font-size: 1.2rem;
  color: #555555;
}

a { /* lien hypertexte */
  font-weight: 500;
  font-stretch: 65%;
  font-size: 1.2rem;
  color: #be1622;
}


/* section */
section {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.sectionGauche .col-gauche {
  flex: 0 0 60%;
}

.sectionGauche .col-separation {
  flex: 0 0 3%;
}

.sectionGauche .col-droite {
  flex: 0 0 37%;
}

.sectionDroite .col-gauche {
  flex: 0 0 37%;
}

.sectionDroite .col-separation {
  flex: 0 0 3%;
}

.sectionDroite .col-droite {
  flex: 0 0 60%;
}

.col-gauche img,
.col-droite img {
  width: 100%;
  height: auto;
  display: block;
}



/* ---------------------------------- */
/* -------- PAGE RÉSERVATION -------- */
/* === Conteneur principal du calculateur === */
.calc-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

/* Colonne gauche : formulaire */
.calc-form {
    flex: 0 0 20%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f5f5f5;
}

/* Colonne droite : tableaux résultats */
.calc-result {
    flex: 1;
    display: flex;
    flex-direction: column; /* tableaux empilés */
    gap: 15px;
}

/* Bloc tableau individuel */
.calc-result > div {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fafafa;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Titres des hébergements */
.calc-result {
    font-size: 0.3em; /* réduit par rapport à avant */
    margin-bottom: 8px;
}

/* Tableau interne */
.calc-result table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

/* Cellules du tableau */
.calc-result table td {
    border: 1px solid #ccc;
    padding: 4px; /* moins que avant */
    font-size: 0.6em; /* taille réduite pour prix */
}

/* Boutons Réservez */
.calc-result button {
    font-family: 'Acumin', sans-serif;
    padding: 5px 8px;
    font-size: 0.8em;
    font-stretch: 70%;
    border-radius: 4px;
    background-color: #BF1717;
    color: white;
    border: none;
    cursor: pointer;
}

.calc-result button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.calc-result button:hover:enabled {
    background-color: #DF1717;
}


/* Responsive : écran étroit */
@media (max-width: 768px) {
    .calc-wrapper {
        flex-direction: column;
    }

    .calc-form {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .calc-result {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    section.sectionGauche,
    section.sectionDroite {
        flex-direction: column;
        gap: 20px; /* espace entre les blocs */
    }

    section .col-gauche,
    section .col-droite,
    section .col-separation {
        flex: 1 1 100%; /* prennent toute la largeur */
        margin: 0;
    }

    section .col-gauche img,
    section .col-droite img {
        width: 100%;
        height: auto;
    }
}