@import url("https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono");

* {
  margin: 0;
  overflow-x: clip;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: #38040e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1em;
}

#logo {
  width: 100%;
  height: 100px;
}

#header-div {
  width: 100%;
  background-color: #f8e3e5;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5vw;
  color: #38040e;
  font-family: "Courier Prime", monospace;
  gap: 10px;
}

#nav-right {
  display: flex;
  flex-direction: row;
}

nav img {
  width: 50px;
  height: 50px;
}

a,
span {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #38040e;
}

.lien-head{
  background-color: #ffc0c5;
  padding: 16px 24px;
  font-size: 1.3em;
  border: 3px solid #E5A017;
  border-radius: 15px;
}

#resa {
  background-color: #640d14;
  padding: 16px 24px;
  font-size: 1.3em;
  border: 4px solid #E5A017;
  border-radius: 15px;
}

#resa a p {
  color: #fff !important;
}

#conteneur {
  flex: 1;
  width: 100%;
  padding: 2vw;
}

#concept-bg {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/proof.jpg");
  background-size: cover;
  background-position: center;
  padding: 4vw 0;
}

#faq1 {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(208, 166, 166, 0.8);
  max-width: 1200px;
  margin: auto;
  padding: 2vw 0;
  gap: 1vw;
}

.icons {
  width: 50px;
  height: 50px;
}

#faq1 h3 {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
}
#faq1 h5 {
  font-size: clamp(1rem, 2vw, 1.3rem);
}
#faq1 h3,
#faq1 h5 {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

#faq1 div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  gap: 2vw;
}

#faq-link {
  background-color: #bf8b90;
  padding: 1.5em 2em;
  margin: 1.5em auto;
  font-family: "Zen Tokyo Zoo", cursive, sans-serif;
  font-size: 1.2em;
  max-width: 350px;
  justify-content: center;
}

.format {
  flex: 1 1 250px;
  max-width: 350px;
  min-width: 180px;
  font-size: 1.1em;
  margin: 0.5vw 0;
  padding: 1vw;
}

.card {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  grid-template-rows: repeat(2, 480px);
  gap: 2vw;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.flip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 340px;
  min-width: 250px;
  margin: auto;
  height: 100%;
  aspect-ratio: 2.5/3.5;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.flip > .front,
.flip > .back {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  color: #38040e;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 18px;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 1.35em;
  text-align: center;
}

.flip > .front {
  transform: rotateY(0deg);
  background: #fff;
}

.flip > .back {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(-180deg);
  background-color: #313131;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
}

.flip:hover > .front {
  transform: rotateY(180deg);
}

.flip:hover > .back {
  opacity: 1;
  transform: rotateY(0deg);
}

.flip.flip-vertical > .back {
  transform: rotateX(-180deg);
}

.flip.flip-vertical:hover > .front {
  transform: rotateX(180deg);
}

.flip.flip-vertical:hover > .back {
  transform: rotateX(0deg);
}

/* Footer */

#footer-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #38040e;
  font-family: "Courier Prime", monospace;
}

#footer_premiere_moitie {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8e3e5;
  padding: 2vw 0;
  gap: 1vw;
}

#tt {
  width: 95%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
}

.cote,
#reseaux_sociaux {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  flex: 1 1 200px;
  min-width: 150px;
  gap: 1vw;
}

svg {
  fill: #640d14;
  max-width: 30px;
  max-height: 30px;
}

#footer_deuxieme_moitie {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #d3b9ba;
  justify-content: space-evenly;
  align-items: center;
  padding: 1.5vw 0;
  gap: 1vw;
}

#title{
  font-family: "Zen Tokyo Zoo", cursive, sans-serif;
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin: 1vw auto;
}

#qui,
#comment,
#quand,
#informations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5dbdd;
  border-radius: 25px;
  width: 100%;
  max-width: 551px;
  height: 100%;
  max-height: 783px;
  margin: auto;
  font-size: larger;
}

#form-back {
  background: url("../assets/gambling.jpg") center/cover no-repeat;
  min-height: calc(100vh - 100px);
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

label {
  display: flex;
}

input {
  border: none;
  border-radius: 15px;
  height: 32px;
  width: 100%;
  padding: 0 12px;
  font-size: 1em;
  background: #fff;
  box-sizing: border-box;
}

.btn {
  font-family: "Zen Tokyo Zoo", cursive, sans-serif;
  font-size: 2em;
  color: #38040E;
  background: #fff;
  border: none;
  border-radius: 15px;
  padding: 0.6em 2em;
  text-align: center;
  margin: 15px auto;
  display: block;
}

.inscription-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.inscription-link p {
  font-size: 1.3rem;
  color: white;
}

.inscription-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: color 0.2s;
}

#sign-in{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin: auto;
  font-size: 2em;
  background: rgba(208,166,166,0.94);
  width: 75%;
  aspect-ratio: 16/9;
  padding: 3rem;
  color: #38040e;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  border-radius: 20px;
}

#log-in{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  background: rgba(208,166,166,0.94);
  width: 75%;
  aspect-ratio: 16/9;
  padding: 3rem;
  color: #38040e;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  border-radius: 20px;
}

#all {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
        width: 85%;
        margin: auto;
    }
    #all > div {
        background: #F5DBDD;
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(56,4,14,0.08);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
    }
    #all > div h3 {
        margin: 0 0 12px 0;
        font-family: "Zen Tokyo Zoo", cursive, sans-serif;
        font-size: 1.3em;
        color: #38040E;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="time"] {
        margin-bottom: 10px;
    }

    button,
    .btn {
        font-family: "Zen Tokyo Zoo", cursive, sans-serif;
        font-size: 2em;
        color: #38040E;
        background: #fff;
        border: none;
        border-radius: 15px;
        padding: 0.6em 2em;
        margin: 15px auto 0 auto;
        cursor: pointer;
        text-align: center;
        display: block;
    }

#hero-image-txt {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4%;
}

#hero-image-txt img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#hero-image-txt h1 {
  color: white;
  font-size: 8vw;
  max-width: 100%;
  height: auto;
  z-index: 1;
  text-align: center;
  font-family: "Courier Prime";
}

#Accroche {
  text-align: center;
  max-width: 200%;
  margin: 50px auto;
  padding: 0 20px;
  font-family: "Courier Prime";
}

#Accroche h3 {
  font-size: 3vw;
  max-width: 100%;
  height: auto;
  color: white;
  margin-bottom: 70px;
  font-family: "Courier Prime";
}

#Accroche p {
  font-size: 1.5vw;
  max-width: 100%;
  height: auto;
  padding: 100px 200px;
  color: white;
  margin-bottom: 70px;
}

#scenario {
  background-color: white;
  padding: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#scenar1 {
  height: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 10%;
}

#scenar1 p {
  font-size: 1.4vw;
  max-width: 50%;
  height: auto;
  font-family: "Courier Prime";
  color: #38040e;
}

#scenario-header {
  font-size: 3vw;
  max-width: 100%;
  height: auto;
  text-align: center;
  color: #38040e;
  font-family: "Courier Prime";
  margin-bottom: 5%;
}

#scenar2 {
  height: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 10%;
  color: #38040e;
}

#scenar2 p {
  font-size: 1.4vw;
  max-width: 50%;
  height: auto;
  font-family: "Courier Prime";
}

#scenar1 img,
#scenar2 img {
  width: 45vw;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#scenar1 img:hover,
#scenar2 img:hover {
  transform: scale(1.03);
}

#bouton-comment-ca-fonctionne {
  font-size: 2vw;
  max-width: 50%;
  height: auto;
}

#reservation-accueil {
  background-color: #250902;
  padding: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

#reservation-accueil h1 {
  font-size: 5vw;
  max-width: 100%;
  height: auto;
  color: white;
  margin-bottom: 100px;
  font-family: "Courier Prime";
}

#reservation-accueil p {
  font-size: 1.5vw;
  max-width: 100%;
  height: auto;
  color: white;
}

#reservation-accueil h2 {
  font-size: 3vw;
  max-width: 100%;
  height: auto;
  color: white;
}

#conditions {
  display: flex;
  gap: 50px;
}

#cond_1,
#cond_2,
#cond_3 {
  width: 20vw;
  max-width: 100%;
  height: auto;
  gap: 20px;
  margin-bottom: 5%;
}

#reservation-bouton {
  font-size: 10vw;
  width: 13vw;
  height: auto;
  margin: 50px auto 0 auto;
}
