@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Trade+Winds&display=swap");

html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  font-weight: lighter;
  background-color: #2e0202;
  color: #1e0f1c;
  position: relative;
}
p {
  margin-bottom: 1rem;
}
header {
  background-color: #2e0202;
  position: sticky;
  top: 0;
  padding: 20px 10%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #logo-site {
  width: 9rem;
  height: 9rem;
}
@media (max-width: 900px) {
  header {
    display: flex;
    flex-direction: column;
    > nav > ul {
      display: flex;
      flex-direction: row;
      > li > a {
        color: #e0d5dc;
      }
    }
  }
  header #logo-site {
    width: 3rem;
    height: 3rem;
  }
}
header h1 {
  font-size: 2rem;
  color: aliceblue;
  font-family: "Trade Winds", system-ui;
  font-weight: 400;
  font-style: normal;
  text-shadow: 3px 1px 2px black;
}
main {
  position: relative;
}
main :is(h2, h3, h4) {
  font-family: "Rajdhani", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #9d7b91;
}
h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.image-content {
  position: fixed;
  top: 40px;
  right: 0;
  height: 100vh;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 900px) {
  .image-content {
    display: none;
  }
  nav > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.image-content img {
  max-height: 60vh;
  width: auto;
  object-fit: contain;
  z-index: 1;
}
section {
  min-height: 40vh;
  padding: 10%;
  padding-right: 50%;
  clip-path: polygon(0 5%, 100% 0%, 100% 90%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 900px) {
  section {
    padding: 10%;
    padding-top: 20%;
    padding-bottom: 20%;
  }
}
section:first-of-type {
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 100%);
}
section:last-of-type {
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0 100%);
}
section:nth-child(odd) {
  background-color: #2e0202;
  color: aliceblue;
  z-index: 0;
}
section:nth-child(even) {
  z-index: 2;
  background-color: #fff;
  padding-right: 10%;
}
@media screen and (max-width: 900px) {
  section:nth-child(even) {
    padding-right: 10%;
  }
}
section#information {
  z-index: 2;
  padding-right: 0;
  > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}
@media (max-width: 900px) {
  section#information {
    h2 {
      margin-top: 2rem;
    }
    > ul {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      > li {
        margin-bottom: 1rem;
        > h3 {
          margin-bottom: 1rem;
        }
      }
    }
  }
}
.card-list {
  display: flex;
  flex-direction: column;
}
.double-time > li:first-child {
  margin-right: 1rem;
}
.double-time > li:last-child {
  border-left: solid 1px rgb(157, 123, 145);
  padding-left: 0.5rem;
}

.card-list_item {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border: 2px solid rgb(157, 123, 145);
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem;
  flex: 1;
  flex-direction: column;
  p.time {
    margin-bottom: 0.5rem;
  }
  p.tarif-solo {
    padding: 0.5rem 0;
    font-weight: 600;
    color: rgb(157, 123, 145);
  }
}
@media screen and (max-width: 900px) {
  .card-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .card-list_item {
    margin-left: 0;
    margin-right: 0;
  }
  footer {
    flex-direction: column;
  }
}
.card-list.card-list_tarif > li {
  flex: 1;
}
.card-list_item.card-list_item_tarif {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .card-list_item.card-list_item_tarif {
    flex-direction: column;
    align-items: flex-start;
  }
}
.card-list_item_tarif > h4 {
  margin-bottom: 0.5rem;
}
.card__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-list_tarif {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  flex: 1;
}
@media screen and (max-width: 900px) {
  .card-list_tarif {
    flex-direction: column;
    align-items: stretch;
  }
}
small {
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  small {
    font-size: 1rem;
  }
}
iframe {
  width: 90%;
  height: 200px;
}
ul.carte > li {
  flex: 1;
  margin: 0.5rem;
}
.accroche {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: normal;
  font-family: "Rajdhani", system-ui;
  margin-bottom: 10px;
}
blockquote::before {
  content: "\201C";
}

blockquote::after {
  content: "\201D";
}
a {
  color: #9d7b91;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;

  border-bottom: solid transparent 2px;
}
a:hover {
  border-bottom: solid #9d7b91 2px;
}
.navigation a {
  color: bisque;
}
ul {
  display: flex;
  flex-direction: row;
}
footer {
  background-color: #2e0202;
  padding: 10px;
  color: aliceblue;
  display: flex;
  flex-direction: row;
  justify-content: center;
  > p {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
}
