/* Couleurs */
:root {
  --color-blue-darker: ;
  --color-blue: #0f6da4;
  --color-blue: #3a7699;
  --color-blue-very-light: #a9cbe7;
  --color-blue-logo: #2431c9;

  --color-brown: #4c330ffc;
  --color-brown-light: #a2988bfc;

  --body-bgd: #e1dede;
  --espacement-des-coins: -0.3rem;
}
@media (max-width: 800px) {
  :root {
    --espacement-des-coins: -0.15rem;
  }
}
/* @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"); */

/* CSS reset */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--body-bgd);
  font-family: "Merriweather", serif;
  letter-spacing: 0.1ch;
  color: #333;
  position: relative;
}
h1 {
  font-family: "Work Sans", sans-serif;
  letter-spacing: normal;

  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  color: white;
}
h2 {
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.05ch;

  font-size: clamp(2rem, 1.6rem + 1.28vw, 2.4rem);
  text-align: center;
  font-weight: 300;
  padding-block: 2rem;
  margin-inline: 1rem;
  color: var(--color-brown);
}
h3 {
  color: rgb(159, 106, 27);
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  margin-block: 2rem 1rem;
}
header {
  position: relative;
  padding-bottom: 2rem;
  min-height: 75vh;
}
.center {
  text-align: center;
}

.blurred-bg {
  background-image: url(./photos/parc-piscine.01.1200.webp);
  background-image: url(./photos/manoir-de-gemenos-01.1200.webp);
  background-size: cover;
  background-position: center;

  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  padding: 0;
  animation: opacifier 2s 1s ease-in-out forwards;
}

header div.titre {
  /* margin-inline: auto; */
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
  outline: solid 1px rgba(255, 255, 255, 0.5);
  padding: 0.4rem 1.5rem 0.6rem;
  border-radius: 0.2rem;
  animation: background-plus 2s 1s ease-in-out forwards;
  animation: background-plus 3s 2s ease-in-out forwards;
}
header div.titre h1 {
  animation: appear 1s ease-in-out forwards;
  opacity: 0;
}
header div.titre h1 span:nth-child(1) {
  font-variant: small-caps;
  font-size: 3.2rem;
  display: inline-block;
  font-family: "Merriweather", serif;
  letter-spacing: 0.12ch;
  font-weight: 400;

  animation: appear 1s 1s ease-in-out forwards;
  opacity: 0;
}

header div.titre h1 span:nth-child(2) {
  font-style: italic;
  animation: appear 1s 2s ease-in-out forwards;
  opacity: 0;
}
#body-home div.titre {
  position: absolute;
  top: 35%;
  left: 50%;
  translate: -50%;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  outline: solid 1px rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.35);
  animation: background-plus 3s 2s ease-in-out forwards;
  background-color: rgba(0, 0, 0, 0.1);
}
header h2 {
  position: absolute;
  top: auto;
  bottom: 8%;
  left: 50%;
  translate: -50%;
  padding: 0.4rem 2rem;
  font-size: clamp(1.6rem, 0.8rem + 2.1333vw, 2.4rem);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.35);
  color: white;
  animation: appear 3s 1s ease-in-out forwards;
  opacity: 0;
  /* background-color: #563f1f;
  background: radial-gradient(ellipse at center, #756650, #5f431d);
  background: radial-gradient(ellipse at center, #756650, #4b4040);
  background: radial-gradient(ellipse at center, #9f8764, #645a5a);
  background: radial-gradient(ellipse at center, #d6c874, #bdab41);
  background: radial-gradient(ellipse at center, #bebc47, #587d15);
  background: radial-gradient(ellipse at center, #bebc47 30%, #728551);
  background: radial-gradient(ellipse at center, #bebc47, #587d15);
  background: radial-gradient(ellipse at center, #aba939 20%, #415b4d);
  background: radial-gradient(ellipse at center, #bebc47, #728551); */
  background: radial-gradient(ellipse at center, #9f9d3d, #57663d);
  box-shadow: 0px 0 3px rgba(255, 255, 255, 1);
  border-radius: 0.45rem;
  width: fit-content;
  min-width: 50%;
}
@media screen and (max-width: 700px) {
  header h2 {
    min-width: auto;
    width: 90%;
    translate: -52.5%;
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes background-plus {
  from {
    background-color: rgba(0, 0, 0, 0.1);
  }
  to {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@keyframes opacifier {
  from {
    filter: blur(0) brightness(1);
  }
  to {
    filter: blur(0) brightness(0.9);
  }
}

/*** *** ***/
/*** MAIN ***/
/*** *** ***/
main {
  padding-block: 2rem 0;
}
.reservation {
  background-color: #6a6a6a;
  position: relative;
  text-align: center;
  width: fit-content;
  position: absolute;
  top: 15vh;
  right: 0;
  z-index: 1000;

  display: none;
}

/*** *** *** *** *** ***/
/*** PAGE D'ACCUEIL ***/
/*** *** *** *** *** ***/
#body-home .blurred-bg {
  display: none;
}
#body-home header {
  height: calc(100vh - 2rem);
  height: 100vh;
}
#body-home header div.titre {
  margin-top: 0rem;
  width: fit-content;
}
@media screen and (max-width: 450px) {
  #body-home header div.titre {
    top: 3rem;
  }
}

.accueil-diapo {
  position: absolute;
  width: 100%;
  height: 100vh;
}
#body-home .accueil-diapo {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.accueil-diapo-fin {
  position: relative;
  width: 100%;

  aspect-ratio: 4/3;
}
.accueil-diapo img,
.accueil-diapo-fin img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

.scroll-down-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  font-size: 3rem;
  font-weight: 200;
  color: white;
  font-family: "Merriweather", serif;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.35);
  opacity: 0;
  text-decoration: none;
  animation: arrow-appear 1s 4.5s forwards, arrow-bounce 3s infinite;
  z-index: 1000;
}

.scroll-down-arrow:hover {
  opacity: 1;
}

@keyframes arrow-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}
@keyframes arrow-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

.texte {
  font-size: clamp(1.2rem, 0.9rem + 1.3333vw, 1.4rem);
  line-height: 1.4;
  text-align: center;

  max-width: min(800px, 94%);
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem 4rem;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
}
.texte ul {
  padding-left: 2rem;
  margin-block: 1rem;
  list-style-type: initial;
  list-style-position: outside;
}
.texte li {
  text-align: left;
  text-align-last: left;
  font-size: clamp(1rem, 0.6rem + 1.6vw, 1.2rem);
  margin-bottom: 0.35rem;
}
@media screen and (max-width: 500px) {
  .texte {
    text-align: left;
    text-align-last: left;
    padding: 1.5rem 1rem;
  }
}
.texte p:not(:first-of-type) {
  margin-top: 1rem;
}
.texte a {
  color: var(--color-brown);
}
.panneau-photos {
  position: relative;
  max-width: 98%;
  margin: 4rem auto 2rem;

  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/** Présentation des rubriques**/
.accueil-rubrique {
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 1200px;
  margin: 3rem auto;
}
.accueil-rubrique-texte {
  position: relative;
  flex: 0 0 40%;
  min-height: 50%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  align-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.5s 0.2s ease-out, translate 1.5s 0.2s ease-out;
}

.accueil-rubrique.visible .accueil-rubrique-texte.left {
  translate: 10%;
  opacity: 1;
}
.accueil-rubrique.visible .accueil-rubrique-texte.right {
  translate: -10%;
  opacity: 1;
}
.accueil-rubrique-texte h4 {
  font-family: "Work Sans", sans-serif;
  letter-spacing: normal;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 1rem;
}
.accueil-rubrique-texte p {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.4;
}
.accueil-rubrique-texte a {
  text-decoration: none;
  color: inherit;
}
.accueil-rubrique-photo {
  position: relative;
  flex: 0 0 60%;
}
.accueil-rubrique-photo img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  /* box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25); */
  border-radius: 0.15rem;
  display: block;
  position: relative;
  z-index: 1;
  border: solid 0.5rem var(--body-bgd);
  transition: border 0.3s 0.1s ease-out;
}
.accueil-rubrique-photo:hover img {
  border: solid 0.25rem var(--body-bgd);
}

.bottom-left::before,
.bottom-right::before,
.top-left::after,
.top-right::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 10%;
  border: 0px solid var(--color-brown); /* couleur du coin */
  background-color: var(--color-brown-light);
  background-color: #756650;
  border-radius: 0.25rem;
  opacity: 0;
  transition: opacity 1.5s 1.5s ease-out, translate 1.5s 0.2s ease-out;
}
.visible .bottom-left::before,
.visible .bottom-right::before,
.visible .top-left::after,
.visible .top-right::after {
  opacity: 1;
  translate: 0;
}
/* Coin en bas à gauche */
.bottom-left::before {
  bottom: var(--espacement-des-coins);
  left: var(--espacement-des-coins);
  border-top: none;
  border-right: none;
}

/* Coin en haut à droite */
.top-right::after {
  top: var(--espacement-des-coins);
  right: var(--espacement-des-coins);
  border-bottom: none;
  border-left: none;
}

/* Coin en bas à droite */
.bottom-right::before {
  bottom: var(--espacement-des-coins);
  right: var(--espacement-des-coins);
  border-top: none;
  border-left: none;
}

/* Coin en haut à gauche */
.top-left::after {
  top: var(--espacement-des-coins);
  left: var(--espacement-des-coins);
  border-bottom: none;
  border-right: none;
}

.accueil-rubrique div button {
  color: white;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.accueil-rubrique-photo:hover a button {
  transform: scale(1.2);
}

@media screen and (max-width: 800px) {
  .accueil-rubrique {
    flex-direction: column;
  }
  .accueil-rubrique:nth-of-type(2n + 1) {
    flex-direction: column-reverse;
  }
  .accueil-rubrique.visible .accueil-rubrique-texte {
    translate: 0 !important;
  }
  .accueil-rubrique-texte {
    width: 90%;
    margin-bottom: 2rem;
  }
}

/* map */
.map {
  width: min(100%, 1000px);
  height: 500px;
  margin: 2rem auto;
}
.map iframe {
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
}

/*** CHAMBRES ***/
.button-reserver {
  display: block;
  margin: 1rem auto;
  width: fit-content;
}
.button-reserver button {
  padding: 0.65rem 1rem;
  background-color: var(--color-brown);
  color: white;
  font-size: 1.5rem;
  border-radius: 0.45rem;
  font-weight: 300;
  cursor: pointer;
  min-width: 120px;
  transition: 0.2s ease-in-out;
}
.button-reserver button:hover {
  background-color: #72624c;
}
.chambre-equipement {
  columns: 2;
  -webkit-columns: 2; /* pour Safari */
  -moz-columns: 2; /* pour Firefox */
  column-gap: 3rem; /* espace entre les colonnes */

  width: fit-content;
  margin-inline: auto;
  padding: 0;
}
/*** MAISON ***/

#body-maison main {
  padding-bottom: 2rem;
}

/*** Description détaillée ***/
/*** MAISON ***/
details,
summary {
  width: fit-content;
  margin-inline: auto;
  color: white;
  background-color: var(--color-blue);
  border-radius: 0.5rem;
}
details {
  cursor: pointer;
  transition: transform 0.4s ease-out;
  max-width: min(800px, 94%);
}
summary {
  padding: 0.8rem 1.4rem;
  font-size: clamp(1.1rem, 2.7979rem + -5.4333vw, 0.08125rem);
  line-height: 1.8;
}
summary:hover {
  background-color: var(--color-blue-darker);
}
details p {
  cursor: auto;
  font-size: clamp(1.2rem, 0.9rem + 1.3333vw, 1.4rem);
  text-align: center;
  line-height: 1.5;
}
details ul {
  cursor: auto;
  font-size: 1.2rem;
  color: white;
  padding-left: 2rem;
  margin-block: 1rem;
  list-style-position: outside;
}

details li {
  text-align: left;
  text-align-last: left;
  font-size: clamp(1rem, 0.6rem + 1.6vw, 1.2rem);
  margin-bottom: 0.35rem;
}
details li::marker {
  color: white;
}
/* Animer et styliser le twist */

summary {
  list-style: none;
}

details summary::before {
  content: "🏠";
  display: inline-block;
  margin-right: 0.8rem;
  border-radius: 6px;
  transition: transform 0.4s ease-out;
  font-size: 1.6rem;
}
details summary:hover:before {
  transform: scale(1.5) rotate(0);
}

details[open] summary::before {
  transform: rotate(360deg) scale(1.4);
  margin-right: 0.8rem;
}
details[open] {
  max-height: 2000px;
  margin-bottom: 10px;
  padding-inline: 1rem;
  padding-bottom: 1.5rem;
}

/** GALERIE **/
.galerie {
  display: flex;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
  max-width: 96%;
  gap: 0.5rem;
}
.galerie div {
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.galerie div img {
  aspect-ratio: 3 / 2;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
  transition: filter 0.3s, border 0.3s;
  box-sizing: border-box;
  border: solid 0px transparent;
  display: block;
  border-radius: 6px;
}

/*** TARIFS ***/

.tableau-tarifs {
  margin: 0 auto 30px;
  width: auto !important;
  border-collapse: separate;
  border-color: var(--color-blue-darker);
  border-spacing: 1px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.4);

  border-collapse: separate;
  border-spacing: 1px;
}
.tableau-tarifs tr:nth-child(2n + 1) {
  background-color: var(--jaune-tres-clair);
  background-color: #fffeed;
}
.tableau-tarifs tr:nth-child(2n) {
  background-color: white;
  background-color: #fffeed;
}
.tableau-tarifs th {
  padding: 1rem;
  text-align: center;
  width: auto !important;
  height: auto !important;
  text-align: center !important;
  background-color: var(--color-blue-darker);
  color: white;
  border-color: var(--color-blue-darker);
}
.tableau-tarifs th p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 !important;
  text-align: center !important;
}
.tableau-tarifs th span {
  font-size: 1rem;
  font-weight: 400;
}
.tableau-tarifs td {
  padding-block: 2rem;
  font-size: 1.1rem;
  text-align: center !important;
  border-color: var(--color-blue-darker);
  color: #555;
  padding: 1rem;
}

/*** CONDITIONS ***/
.conditions {
  font-size: 1.1rem;
  max-width: min(650px, 90%);
  margin-inline: auto;
  padding-block: 1rem 2rem;
}
.conditions li {
  margin-block: 0.5rem;
  list-style: disc;
}
li::marker {
  color: var(--color-blue-darker);
}

/*** *** *** *** ***/
/*** FORMULAIRE ***/
/*** *** *** *** ***/
#body-reserver form {
  width: auto;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;

  background-color: var(--color-brown);
  border-radius: 1rem;
  padding: 1rem 0 2rem;
}
#body-reserver form h3 {
  color: white;
  padding-block: 1rem;
  margin: 0 auto;
  font-family: "Work Sans", sans-serif;
}
#body-reserver .form-group {
  position: relative;
  margin-bottom: 0.5rem;
  margin-inline: auto;
  width: fit-content;
}
#body-reserver .form-group label {
  position: absolute;
  top: 6px;
  left: 8px;
  color: #333;
  font-size: 0.95rem;
  font-family: "Work Sans", sans-serif;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
/* Flottement du label si focus ou si valeur présente */
#body-reserver .form-group input:focus + label,
#body-reserver .form-group input:not(:placeholder-shown) + label,
#body-reserver .form-group textarea:focus + label,
#body-reserver .form-group textarea:not(:placeholder-shown) + label {
  top: 2px;
  left: 5px;
  font-size: 0.75rem;
  color: #777;
}
#reservation p {
  text-align: center;
  line-height: 1.6;
}
#body-reserver form fieldset {
  border: none;
  max-width: 350px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* champ antispam */
input#remarque {
  margin: 0;
  padding: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 0;
  border: 0;
}
input#remarque {
  display: none;
}

#body-reserver form input[type="text"],
#body-reserver form input[type="email"],
#body-reserver form input[type="tel"],
#body-reserver form input[type="url"],
#body-reserver form input[type="number"],
#body-reserver form input[type="date"],
#body-reserver form select,
#body-reserver form textarea {
  width: 330px;
  border: 1px solid #444;
  background: #fff;
  margin: 0 0 8px;
  padding: 18px 10px 4px;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

#body-reserver form label.date-input span {
  transform: translate(15px, 5px);
}
#body-reserver form label.date-input.active span {
  transform: translate(15px, 10px);
}

#body-reserver form textarea {
  min-height: 200px;
  resize: none;
  font-family: inherit;
}

#body-reserver form input:focus,
#body-reserver form textarea:focus {
  outline: 0;
  border: 2px solid dodgerblue;
}
#body-reserver form input::placeholder,
select {
  color: #555;
}
#body-reserver form input:focus::placeholder,
#body-reserver form textarea:focus::placeholder {
  color: #aaa;
}

#body-reserver form option {
  padding: 12px 0;
}
#body-reserver form select:invalid,
#body-reserver form select option[value=""],
#body-reserver form select:disabled,
#body-reserver form select:hidden {
  color: #aaa;
}
/*Added for browser compatibility*/
[hidden] {
  display: none;
}

#body-reservern form label.active {
}

#body-reserver form label.active span {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #666;
  opacity: 1;
}

#body-reserver form select option:first-child {
  color: #aaa;
}

#body-reserver form input[type="submit"] {
  cursor: pointer;
  width: 330px;
  border: none;
  outline: 2px solid rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-size: 1.4rem;
  border-radius: 6px;
}
#body-reserver form input[type="submit"]:hover {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
#body-reserver form input[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#body-reserver form .check-studio {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 160px;
}
#body-reserver form .check-studio span {
  position: relative;
  padding: 5px 10px;
}

#body-reserver form .g-recaptcha {
  margin: 10px auto;
  margin: left;
}

/*** DECOUVRIR ***/
.activites {
  font-size: 1.1rem;
  max-width: min(650px, 96%);
  margin-inline: auto;
  padding-bottom: 2rem;
}
.activites li {
  margin-block: 0.5rem;
  list-style: disc;
}
.activites li::marker {
  color: var(--color-blue-darker);
}

/**** FOOTER ***/
footer {
  width: 100%;
  background-color: var(--color-blue);
  color: #fff;
  margin: 0 auto;
  position: relative;
  padding-block: 2rem 0;
}
footer h4 {
  font-family: "Work Sans", sans-serif;
  letter-spacing: normal;
}

footer .titre span:nth-child(1) {
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  font-size: 1.75rem;
}
footer .titre span:nth-child(2) {
  font-style: italic;
}
footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  width: 90%;
  margin: auto;
  gap: 1.5rem;
}
footer > div > div {
  min-width: 310px;
  max-width: 350px;
}
@media screen and (max-width: 950px) {
  footer > div {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
footer h4 {
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: none;
  position: relative;
}

footer p {
  margin-block: 0.5rem;
  font-size: 1rem;
  padding-left: 0rem;
}
footer a {
  display: block;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  color: inherit;
  font-size: clamp(1.1rem, 0.7rem + 1.6vw, 1.3rem);
  text-underline-offset: 4px;
}
footer a.lang {
  display: inline-block;
}
footer a.lang img {
  width: 21px;
  height: auto;
  vertical-align: middle;
}
footer .contact a {
  text-decoration: none;
}
footer .contact a:hover {
  text-decoration: underline;
}

.basdepage {
  padding-block: 2rem 0;
  font-size: 1rem;
  text-align: center;
}
.VF {
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  vertical-align: middle;
  padding: 8px 10px 8px 7px;
  width: 34px;
  height: 34px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}
.VF:hover {
  background: rgba(0, 0, 0, 0.1);
}

/*** ***** ***/
/*** MODIF ***/
/*** ***** ***/

body.modif main {
}
body.modif header {
  min-height: auto;
  padding-top: 2rem;
  background-color: var(--color-blue);
}
body.modif form {
  margin-inline: auto;
  max-width: 1000px;
}

body.modif input[type="submit"] {
  padding: 4px 8px;
  font-size: 1.3rem;
  margin: 6px auto;
}
body.modif form > p {
  margin: 30px 0;
}
.modif-menu {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.modif-menu a {
  color: salmon;
}
.form-group {
  margin-bottom: 3rem;
  position: relative;
}
.form-group > div {
  margin-top: 5px;
}
.lang-en {
  display: none;
}
.language-switch-fr,
.language-switch-en {
  position: absolute;
  top: -2.5rem;
  right: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 2rem;
}
.language-switch-en {
  top: -2.5rem;
  right: 0;
  filter: grayscale(100%);
}
