/*** Couleurs ***/
/*
Vert  #6a7640;
jaune pÃ¢le #f8efd1;
or #bc9b3e
*/

/* cormorant-garamond-regular - latin */
/* @font-face {
    font-display: swap;
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    src: url('/font/cormorant-garamond-v16-latin-regular.woff2') format('woff2'); 
  } */
/* @import url(https://db.onlinewebfonts.com/c/1d8353b04cd07d10970c220ccc791c7b?family=Aviano+Wedge+W00+Thin);  */

/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* Gotham Pro */
@font-face {
  font-display: swap;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 400;
  src: url("GothamPro.woff2") format("woff2");
}

/* Couleurs */
:root {
  --color-gold: #bc9b3e;
  --color-gold-light: #f8efd1;
  --color-gold-very-light: #f5f0e2;
  --color-green: #6a7640;
  --color-green-dark: #3c4323;
  --color-green2: #6f7755;
  --color-gray: #636363;

  --body-bg: #fff;
}
/* CSS reset */

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #ebd38a;
  background-color: var(--body-bg);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-family: "Georgia", serif;
  color: #666;
  position: relative;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: "Cormorant Garamond", serif;
}
h4 {
  font-size: 1.3rem;
  font-weight: 600;
  padding-inline: 2rem;
}
p,
li,
figcaption {
  text-wrap: pretty;
  max-width: 65ch;
}
p {
  margin: 12px auto;
  font-size: 1.2rem;
  text-align: left;
}
li {
  margin: 6px auto;
  font-size: 1.2rem;
  text-align: left;
}
a {
  color: inherit;
}
h2 {
  margin: 0 auto 0.5rem;
  color: var(--color-gold);
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 1);
  font-size: 2.4rem;
  font-weight: 500;
}
h3 {
  margin-bottom: 0.5rem;
  color: #444e2d;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
  position: relative;
}

h3.hebergement {
  margin-block: 1rem 3rem;
}
h3.hebergement::after {
  content: "";
  height: 1px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  content: url(img/detail.gif);
  display: block;
  margin-top: 0;
}

h3.deco {
  color: var(--color-gold);
  text-transform: uppercase;
}
h3.deco::after {
  content: url(img/detail.gif);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 75%);
}
section {
  margin-block: 4rem;
}
div.spacer {
  height: 100px;
  width: 100%;
  position: relative;
}
div.spacer::after {
  content: url(img/detail.gif);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Bouton d'appel à l'action */

a.call-to-action {
}
.call-to-action {
  display: block;
  width: fit-content;
  margin: 1rem auto;
  margin-inline: auto;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "Gotham pro", sans-serif;
  text-decoration: none;

  cursor: pointer;
  border: solid 1px rgba(255, 255, 255, 0.7);
  min-width: 100px;

  background-color: #63723f;
  color: #fff;
  text-align: center;
  transition: 0.2s ease-in-out;
}
.call-to-action:hover {
  background-color: #fdf9eb;
  background-color: #d7dbcc;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  background-color: #505d34;
  font-size: 1rem;
}

.discover {
  display: block;
  width: fit-content;
  margin: 0.5rem auto;
  margin-inline: auto;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;

  cursor: pointer;
  border: solid 1px rgba(255, 255, 255, 0.7);
  min-width: 100px;

  background-color: var(--color-gold);
  color: #fff;
  transition: 0.2s ease-in-out;
}
.discover:hover {
  background-color: var(--color-gold-light);
  border: solid 1px var(--color-gold);
  color: var(--color-green2);
}

.hide {
  display: none;
}

/**** HEADER****/
header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding-block: 0 50px;

  opacity: 0;
  animation: fade-in 1s 1s ease-out forwards;
}

.titre h1 {
  margin: 0;
  color: white;
  font-size: 1.6rem;
  line-height: 60px;
  text-transform: uppercase;
  word-spacing: 0.5ch;
  font-weight: 200;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;

  display: none;
}
.titre h1 span {
  font-size: 2rem;
}
.titre img {
  max-width: 200px;
  display: block;
  margin-inline: auto;
  margin-top: 2rem;
  transition: 0.3s ease-in-out;
}

.titre h1 a {
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .titre img {
    margin-top: 3rem;
  }
  .titre h1 {
    font-size: 1.4rem;
    /* display: none; */
  }
  .titre h1 span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 360px) {
  .titre img {
  }
  .titre h1 {
    font-size: 1rem;
  }
  .titre h1 span {
    font-size: 1.3rem;
  }
}

/* titre page d'accueil */
header {
  position: absolute;
  margin: auto;
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.35) 75%,
    rgba(0, 0, 0, 0)
  );
  width: 100%;
  min-height: 300px;
  top: 0;
  left: 0;

  z-index: 5;
}
header.scroll {
  position: fixed;
  height: 50px;
  min-height: 50px;
  background-color: transparent;
  background-image: none;
  transition: none;
}
header.scroll .titre img {
  transform: scale(0);
  max-width: 0;
  margin-top: 0;
}
header.scroll .header-titre {
  font-size: 1.4rem;
  color: #666;
}

header.scroll h1 {
  text-shadow: none;
  font-weight: 300;
  letter-spacing: normal;
  color: inherit;
  font-size: clamp(1rem, 0.6727rem + 1.4545vw, 1.4rem);
  line-height: 3rem;
}
header.scroll div h1 span {
  font-size: clamp(1.3rem, 0.55rem + 3.3333vw, 1.8rem);
  color: #666;
}

.titre {
  position: fixed;
  top: 0;
}
@media screen and (max-width: 600px) {
  .titre {
  }
  .scroll .titre {
    top: 2px;
  }
}

/* Animation keyframes */
@keyframes h2-slide-in {
  0% {
    opacity: 0;
    transform: translateY(200%);
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Le texte revient à sa position normale */
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes h2-background {
  0% {
    background: rgba(0, 0, 0, 0.4);
  }
  100% {
    background: rgba(0, 0, 0, 0.1);
  }
}

.header-content-image {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: -1;

  background-position: center center;
  background-size: cover;
}

.header-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* background-image: url(photos/welcometochateautalaud.jpg);
  background-position: center center;
  background-size: cover; */
  animation: pulse 2.5s infinite;
  z-index: -1;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.map {
  position: relative;
  width: 100vw;
  height: fit-content;
  overflow: hidden;
  /* background-image: url(photos/welcometochateautalaud.jpg);
  background-position: center center;
  background-size: cover; */
}

/** Titre page d'accueil **/

.titre-accueil {
  position: absolute;
  top: 30%;
  left: 50%;
  translate: -50%;
  text-align: center;
  z-index: 2;
  width: 94%;
}
.titre-accueil img {
  width: 140px;
  margin-inline: auto;

  opacity: 0;
  animation: slideUp 2s 3s ease-in-out forwards;
}
.titre-accueil p {
  color: white;

  text-align: center;

  opacity: 0;
}
.titre-accueil a {
  text-decoration: none;
}
.titre-accueil p span {
  font-size: clamp(2rem, 6.6929rem + -20.8571vw, 0.175rem);
}

.titre-accueil h2 {
  color: white;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px white;
  width: fit-content;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  opacity: 0;
  animation: slideUp 2s 3.6s ease-in-out forwards;
}
.header-titre {
  font-size: clamp(1.6rem, 5.3607rem + -16.7143vw, 0.1375rem);
  word-spacing: 0.5ch;
  font-weight: 200;
  text-transform: uppercase;
  margin-block: 0;
  margin-inline: auto;
  animation: slideUp 2s 3.3s ease-in-out forwards;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.header-sous-titre {
  font-size: 1.2rem;
  font-family: "Gotham Pro", sans-serif;
  animation: slideUp 2s 3.6s ease-in-out forwards;
}

/*** Container Section texte & photo ***/
.section-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  gap: 1rem;
}
@media screen and (max-width: 950px) {
  .section-container {
    flex-direction: column;
  }
}
.section-container h2 {
  position: relative;
}
.section-container div {
  position: relative;
}
.section-container-texte {
  max-width: min(80%, 600px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  padding: 1rem;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.5);

  opacity: 0;
  transition: opacity 1s ease-in-out, translate 1.5s ease-in-out;
}
.section-container-texte h2 {
  position: relative;
}
.section-container-texte h2::after {
  /* content:"";
  height:1px;
  width:50px;
  background-color: var(--color-gold);
  position:absolute;
  bottom:-10px;
  left:50%;
  translate: -50% 0; */

  content: url(img/detail.gif);
  display: block;
  margin-top: 8px;
}

.section-container-texte.left,
.section-container-texte.right {
  max-width: min(48%, 500px);
}
.right {
  translate: 10vw;
}
.left {
  translate: -10vw;
}

@media screen and (max-width: 950px) {
  .section-container-texte.left,
  .section-container-texte.right {
    max-width: min(90%, 500px);
  }
}

.visible .section-container-texte,
.visible .section-container-photo img,
.visible {
  translate: 0;
  opacity: 1;
  filter: blur(0);
}

.section-container-photo {
  min-height: 75vh;
  translate: 0 !important;
}
.section-container-photo img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  opacity: 0.5;
  filter: blur(4px);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}
.section-container-photo h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding-block: 0.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
}

.photo-section-accueil img {
  max-width: min(1200px, 96%);
  margin-inline: auto;
  display: block;
}

@media screen and (max-width: 950px) {
  .photo-section-accueil img {
    max-width: none;
    width: 100%;
    height: 75vh;
    object-fit: cover;
  }
}

/*** Hebergements ***/

.logement-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  gap: 1rem;

  overflow: hidden;

  max-width: 900px;

  margin: 2rem auto;
  background-color: var(--color-gold-very-light);
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.photo-logement {
  max-width: 350px;
  min-height: 250px;
}
.photo-logement img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .logement-container {
    max-width: 600px;
    flex-direction: column;
    gap: 0;
    margin-block: 2rem;
  }
  .photo-logement {
    max-width: 100%;
    min-height: 400px;
  }
  .photo-logement img {
    width: 100%;
    min-height: 100%;
    height: 400px;
  }
}

.texte-logement {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  padding: 1rem;
}
.texte-logement p {
  font-size: 1rem;
}
.texte-logement h3 {
  font-size: 1.8rem;
  text-align: left;
  width: 100%;
}
.texte-logement h3 a {
  text-decoration: none;
}

/*** Bouton RESERVER ***/
.reserver-hebergement {
  position: sticky;
  right: 1rem;
  top: 2.5rem;
  width: fit-content;
  margin-inline: auto 0;
}

/** fin bouton Reserver **/

#map_accueil {
  width: 100%;
  height: 400px;
  margin: 0 auto -4px;
  border: 0;
  font-size: 1.4rem;
}
#map {
  margin: 12px auto;
  width: 100%;
  height: 400px;
  border: 1px solid #b79a39;
  margin: auto;
}

/*** Espacement et mise en forme***/
.soustitre {
  color: #6a7640;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border: solid 0px;
  margin: 16px auto;
}
div.espace {
  width: 100% !important;
  max-width: 100% !important;
  height: 60px !important;
  line-height: 60px;
  border: solid 0px orange !important;
  text-align: center;
  /*background-image: url(img/detail.gif);
	background: repeating-linear-gradient(45deg, transparent, transparent 20px, #ddd 20px, #ddd 24px) !important;*/
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
div.espace2 {
  width: 100% !important;
  max-width: 100% !important;
  height: 12px !important;
  border: solid 0px orange !important;
  /*background: repeating-linear-gradient(45deg, transparent, transparent 20px, #ddd 20px, #ddd 24px) !important;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
div.espace3 {
  width: 100% !important;
  max-width: 100% !important;
  height: 40px !important;
  border: solid 0px orange !important;
  /*background: repeating-linear-gradient(45deg, transparent, transparent 20px, #ddd 20px, #ddd 24px) !important;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.center {
  text-align: center !important;
}

/**************  CHAMBRES  ****************/
.block {
  margin: auto;
  display: block;
  max-width: 1000px;
  border: solid 0px red;
}
.block h2 {
  margin-bottom: 12px;
  margin-left: 0;
}
.block > .vignettes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  vertical-align: middle;
  margin-top: 6px;
  max-width: 600px;
  gap: 4px;
}
.block > .vignettes p {
  font-size: 0.8em !important;
  font-style: italic;
  margin-bottom: 12px;
  margin-top: 0px;
  font-weight: normal !important;
  width: 100%;
  text-align: center;
}
.block > .vignettes img {
  width: 80px;
  height: 60px;
  /*border:solid 1px #dbd6c3;*/
  display: inline-block;
  box-shadow: 1px 1px 2px #a0a0a0;
}
.block > .vignettes img:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 1px 1px 2px #777777;
}
.block > .chambre {
  width: 100%;
  margin: 0px;
  position: relative;
}
.block > .chambre img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}
h3.titre-chambre {
  font-size: 2.5rem;
  font-weight: 400;
  text-shadow: 2px 5px 9px rgba(0, 0, 0, 0.2);
  margin-block: 1.5rem;
}
.texte-chambres {
  max-width: 800px;
  border: solid 0px rgba(0, 0, 0, 0.5);

  position: relative;
  margin: auto;
  padding: 20px;
  /*  background-color: #63723f;
    color: white;
  border-radius: 20px;
  box-shadow: -2px 24px 34px -13px rgba(0,0,0,0.75); */
  text-align: left;
}
.texte-chambres p {
  text-align: center !important;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .texte-chambres {
    max-width: 96%;
    margin: auto;
    padding: 2px 6px;
  }
}

/****** CARTE DE VISITE  *******/
#footer {
  width: 100%;
  background-color: #6a7640;
  background: linear-gradient(to bottom, #515a31, #6a7640);
  background: radial-gradient(
    ellipse at bottom center,
    #6a7640,
    #515a31 80%,
    #515a31
  );

  position: top center;
  padding: 0 0 20px;
  color: #fff;
  overflow: visible;
  margin: 0;
  text-align: center !important;
  position: relative;
  border: 0;
}
div.before-footer {
  padding: 0;
  margin: 0;
  margin-bottom: -2px;
  position: relative;
}
div.before-footer img {
  max-width: 100%;
  height: auto;
  transform: rotate(0.5turn);
  border: 0;
  display: block;
  margin: 0 auto;
  padding: 0;
  z-index: 0;
  position: relative;
}

#footer div {
  max-width: 1000px;
  margin: auto;
}

#footer p {
  margin: 8px auto;
  font-size: 1.2em;
  text-align: center !important;
}

#footer a {
  color: #fff;
}
.footer_titre {
  font-size: 2.4rem !important;
  font-weight: normal;
  font-family: "Cormorant Garamond", sans-serif;
  padding-bottom: 10px;
  margin: 0 !important;
  text-transform: uppercase;
  line-height: 1;
}
.footer_titre span {
  font-size: 3.5rem !important;
}
#cadre_gauche,
#cadre_centre,
#cadre_droite {
  display: inline-block;
  width: 100%;
  border: solid 0px;
  text-align: center;
  margin: 0px 0px;
  line-height: 150%;
}
#cadre_gauche {
  margin: 12px 0px;
}
#cadre_centre {
  font-size: 1.2em;
  line-height: 180%;
  transform: translateY(-10px);
}
img.logo-footer {
  z-index: 2;
  height: 60px;
  position: relative;
}
#cadre_centre span.cartouche {
  border: solid 0px;
  margin: 4px 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  box-sizing: border-box;
  border: solid 1px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-out;
}
#cadre_centre span.cartouche:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
#cadre_centre span.cartouche a {
  padding: 4px 16px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 4px;
}
#cadre_centre span.label-cartouche {
  text-align: center;
  font-size: 0.8em;
  margin: 0;
  display: inline-block;
  line-height: 100%;
}

.cartouche img {
  display: inline;
  vertical-align: middle;
  color: white;
  height: 28px;
  width: auto;
  margin-right: 6px 0 6px 0;
}
#cadre_centre a {
  text-decoration: none;
}
#cadre_droite {
  width: 100%;
  font-size: 0.8em;
}

.VF {
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  padding: 8px;
  margin-inline: 0.5rem;
}

.VF:hover {
  background: rgba(0, 0, 0, 0.1);
}
.no-decoration {
  text-decoration: none !important;
}

/****/

/************ MAIN  *****************/
#main {
  padding-block: 3rem;
  background-color: white;
}
body#home #main {
  padding-top: 20px;
}

#main p,
#main ul {
  margin-inline: auto;
  text-align: justify;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  body#home #main {
    padding-top: 20px;
  }

  #accueil,
  .accueil {
    padding: 20px 10px;
  }

  #main p,
  #main ul {
    max-width: 96%;
  }
}
/*****  PAGE TARIFS  ******/
table.tarifs {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 6px;
  max-width: 800px;
  background: #f8efd1;
}
table.tarifs th {
  background-color: #6a7640;
  color: white;
  padding: 8px 12px;
}
table.tarifs tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.075);
}
table.tarifs tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3);
}
table.tarifs td {
  padding: 4px 12px;
}

/**** RESERVATION ****/

#main.resa {
  text-align: center;
}
#main.resa > div#annonce,
#main.rates > div#annonce {
  text-align: center;
  margin-top: 10px !important;
  border: solid 1px #6633cc;
}
#main.resa p {
  text-align: center;
}
#main.resa form#reservation {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto 30px;
  background-color: #ebd38a;
  border-radius: 8px;
  border: solid 1px white;
  padding: 20px 0;
}

#main.resa form#reservation div {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 320px;
}

#main.resa form#reservation > div > div {
  position: relative;
}

#main.resa form#reservation label {
  position: absolute;
  line-height: 30px;
  left: 6px;
  top: 0px;
  font-style: italic;
  pointer-events: none;
  transition: 0.1s;
  color: #888;
  transition: 0.3s ease-out;
}
#main.resa form#reservation div.label-hidden label {
  font-size: 0.8rem;
  left: 320px;
  transform: translateX(-100%);
  color: #333;
  line-height: 0.8rem;
  white-space: nowrap;
}
#main.resa form#reservation div.label-hidden input,
#main.resa form#reservation div.label-hidden textarea {
  margin-top: 18px;
}
#main.resa form#reservation input,
textarea,
select {
  border: 1px solid transparent;
  border-top: none;
  border-bottom: 1px solid #ddd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px 1px #fff, 0 1px 0 #fff;
  vertical-align: middle;
  width: 320px;
  min-height: 34px;
  border-radius: 4px;
  transition: 0s ease-out;
  font-size: 1rem;
  padding-left: 6px;
}

#main.resa form#reservation textarea {
  min-height: 160px;
}

#main.resa form#reservation input:focus,
#main.resa form#reservation textarea:focus {
  margin-top: 18px;
}
#main.resa form#reservation input:focus ~ label,
#main.resa form#reservation textarea:focus ~ label {
  color: #333;
  left: 100%;
  left: 6px;
  font-size: 0.8rem;
  line-height: 0.8rem;
  transform: translateX(0);
}

#main.resa form#reservation input[type="submit"] {
  width: auto;
  height: auto;
  float: none;
  text-align: center;
  font-size: 1.2rem;
  background-color: #eee;
  line-height: 1.2rem;
  margin-top: 8px;
  border: solid 2px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
}

#main.resa form#reservation input[type="submit"]:hover {
  background-color: #fff;
  color: #63723f;
  border: solid 2px #63723f;
}
#main.resa form#reservation input[type="submit"]:focus {
  margin-top: 8px;
}

#main.resa form#reservation input[type="date"] {
  width: 60px;
  float: left;
}

/* champ antispam */
#main.resa form#reservation input.remarque {
  display: none;
}
#main.resa form#reservation input#remarque {
  margin: 0;
  padding: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 0;
  border: 0;
}

div#contact {
  margin: 30px auto;
  max-width: 500px;
  background-color: rgba(0, 0, 0, 0);
}
div#contact p {
  font-size: 1.4em;
  text-align: left !important;
}
div#contact p span {
  font-size: 0.8em;
  white-space: nowrap;
}
div#contact p img {
  height: 35px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-right: 12px;
}
@media screen and (max-width: 500px) {
  div#contact p {
    font-size: 1.1em;
  }
}

/*** Cadre FLEX ***/
.cadre-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1rem;
}
.cadre-flex > div {
  width: 30%;
  height: min(400px, 45vh);
}
.cadre-flex > div > div {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.cadre-flex div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: filter 0.2s ease-in-out;
}
.cadre-flex a:hover img {
  filter: brightness(0.75);
}

.autres-chambres {
  margin-block: 1rem 10rem;
  max-width: 1200px;
  margin-inline: auto;
}
.autres-chambres h3 {
  font-size: clamp(1.6rem, 0.8rem + 3.2vw, 2.2rem);
  font-size: clamp(1.2rem, 0.8rem + 1.28vw, 1.6rem);
  margin-top: 0.5rem;
}
.autres-chambres h3 a {
  text-decoration: none;
}

/****** MODIF ****/

form#modif {
  width: 820px;
  margin: auto;
}
#main.resa input[type="submit"] {
  padding: 8px;
  font-size: 1em;
}

/************ Lifestyle **********/
.lifestyle {
  text-align: center;
  margin: auto;
  max-width: 800px;
  border: solid 0px;
}

.lifestyle table {
  border: solid 1px;
}
.lifestyle section {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.lifestyle section div {
  max-width: 640px;
  height: auto;
  margin-bottom: 20px;
}
.lifestyle img,
.lifestyle section div img {
  max-width: 100%;
  height: auto;
}
.lifestyle section div p {
  margin-top: 0;
  font-size: 0.85em;
}

/*** INfo bulle ***/
a.bulle span {
  display: none !important;
  color: #fff;
  background: #34bc48;
  padding: 10px !important;
  border-radius: 4px !important;
  width: 180px;
  text-align: center;
  position: absolute;
  z-index: 10;
}
a.bulle {
  display: inline-block;
}
a.bulle:hover span {
  display: block !important;
}

span.blue {
  background: rgba(41, 137, 216, 0.75);
  border: 1px solid #1e5799;
}

@media screen and (max-width: 1140px) {
  .cb-slideshow li div h3 {
    font-size: 140px;
  }
}

@media screen and (max-width: 600px) {
  .cb-slideshow li div h3 {
    font-size: 80px;
  }
}
@media screen and (max-width: 800px) {
  /* // Sudo Slider */
  #slider {
    width: 100%;
    margin: auto;
    /*box-shadow:2px 2px 6px rgba(0,0,0,0.3);*/
    border: solid 0px rgba(255, 255, 255, 0.6);
    text-align: center;
    display: block;
    position: relative;
  }
  #slider li {
    width: 100%;
  }
  #slider img {
    /*width: 800px;*/
    display: block;
    margin: auto;
    max-width: 800px;
  }
}
@media screen and (max-width: 799px) {
  /* body {
    background-image: url(photos/accueil02.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 600px;
  } */

  h1 {
  }
  #main {
    max-width: 1200px;
    margin: auto;
  }
  .hide {
    display: none;
  }
  .lien {
    font-size: 20px;
  }
  .lien a {
    text-decoration: underline;
  }
}

/*** Visites Virtuelles ***/
.tabs {
  max-width: 100%;
  margin: 50px auto 50px;
  display: grid;
  grid-template-rows: min-content 1fr;
}
.tabs-btn-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.5rem;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tab {
  flex-basis: max(20%, 80px);
  min-height: 70px;
  color: #fff;
  background-color: #444e2d;
  cursor: pointer;
  border-radius: 4px;
  color: #fff;
  padding: 1rem 0;
  margin: 0 1px;
  font-weight: normal;
  font-size: clamp(1rem, 2vw, 1.8rem);

  border: 6px;
  transition: background-color 0.4 ease-out;
}
.tab:hover {
  background-color: #606d40;
}
.tab:last-child {
  margin-right: 3px;
}
.tab:nth-child(1) {
  margin-left: 3px;
}

.tab-content {
  grid-area: 2 / 1 / 3 / 2;
  padding: 2rem 0;
  position: relative;
  padding-bottom: 56.25%;
  opacity: 1;
  visibility: visible;
  transition: 0.4 ease-out;
  margin-inline: clamp(0rem, -5rem + 16vw, 1rem);
}
.tab-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4 ease-out;
}
.active-tab {
  background-color: #6b7a47;
}
.active-tab h3 {
  font-weight: bolder;
  letter-spacing: 1px;
}
.active-tab-content {
  opacity: 1;
  visibility: visible;
}

/**** MARIAGES ***/

.mariages-intro {
  background-color: var(--color-gold-very-light);
  padding-block: 3rem;
  margin: 0;
  text-align: center;
}
.mariages-intro h3 {
  margin: 0;
  padding: 0;
  max-width: 800px;
}

body.mariages h3 {
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 300;
  margin-inline: auto;
}

body.mariages #main > h3 {
  margin-block: 2rem 4rem;
  max-width: 65ch;
}

.mariages-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1rem;
  z-index: 2;

  margin-block: 2rem;

  max-width: 1600px;
  margin-inline: auto;
  overflow: hidden;
}
.mariages-section div {
  max-width: 65%;
  width: 100%;
  min-width: 350px;
  margin-block: 0;
}
.mariages-section div img {
  width: 100%;
  min-height: max(450px, 60vh);
  max-height: 100vh;
  height: 100%;
  object-fit: cover;
}
.mariages-section div.texte-mariages {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  gap: 1rem;
  opacity: 0;
  transition: translate 2s ease-in-out, opacity 1s ease;

  width: 50vw;
  min-height: max(350px, 50vh);
  background-color: rgba(255, 255, 255, 0.7);
  padding-block: 2rem;
  padding-inline: 1rem;
}
.mariages-section .visible.left {
  translate: min(10vw, 140px) 0;
  opacity: 1;
}
.mariages-section .visible.right {
  translate: min(10vw, -140px) 0;
  opacity: 1;
}
.mariages-section div.texte-mariages p {
  padding-inline: 2rem;
  padding-block: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.mariages-section div.texte-mariages h3 {
  width: 100%;
  padding: 0;
  max-width: 30ch;
}

.mariages-section div.texte-mariages h3::after {
  content: url(img/detail.gif);
  display: block;
  margin-top: 8px;
}

@media screen and (max-width: 700px) {
  .mariages-section {
    gap: 1rem;
    flex-direction: column;
  }
  .mariages-section div {
    max-width: 96%;
    min-height: 50vw;
    width: 100%;
    min-width: 350px;
  }

  .mariages-section .visible.left {
    translate: 0;
  }
  .mariages-section .visible.right {
    translate: 0;
  }
}
