/* ================================
  RESET
================================ */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #4b0f10;
}



/* ================================
  NAV
================================ */
.site-header {
  width: 100%;
  background: #4b0f10;
}

.hero__nav {
  min-height: 45px;
  background: #4b0f10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
}

.hero__nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.hero__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero__menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #F5EBDB;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__socials a {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero__socials img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
}

/* BURGER */
.hero__burger {
  display: none;
  width: 36px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.hero__burger span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  border-radius: 999px;
  background: #F5EBDB;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero__burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hero__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.hero__burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ================================
  RESPONSIVE NAV
================================ */
@media (max-width: 900px) {
  .hero__nav {
    min-height: 58px;
    justify-content: flex-end;
  }

  .hero__burger {
    display: block;
  }

  .hero__nav-content {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    background: #4b0f10;

    display: flex;
    flex-direction: column;
    gap: 22px;

    padding: 26px 20px 30px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 15;
  }

  .hero__nav-content.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero__menu {
    flex-direction: column;
    gap: 18px;
  }

  .hero__menu a {
    font-size: 24px;
  }

  .hero__socials {
    gap: 14px;
  }
}

/* ================================
  HERO
================================ */
.hero {
  width: 100%;
  min-height: 550px;
  background:url("assets/bg-crepes.jpg");
  background-position-y: 41%;
  overflow: hidden;
}

.hero__inner {
  min-height: 550px;
  padding-top: 48px;
  padding-left: 48px;
  display: grid;
  grid-template-columns: 360px 635px 450px;
  align-items: start;
}

.hero__logo img {
  max-width: 100%;
  display: block;
  margin: -8% auto auto -5%;
}

/* ================================
  CARTE TEXTE
================================ */
.hero__text-card {
  width: 585px;
  min-height: 440px;
  padding: 31px 25px 22px 25px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(231, 179, 120, 0.75) 30%,
    rgba(171, 101, 50, 0.65) 100%
  );
  color: #4b0f10;
  margin-left: 7%;
}

.hero__text-card h1 {
  margin: 0 0 28px;
  font-size: 35px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin: 0 0 14px;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 600;
}

.hero__signature {
  margin: 0 0 45px;
  font-family: "Damion", cursive;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

.hero__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  position: relative;
  margin: 0 0 6px;
  padding-left: 41px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 33px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FEF8EF;
}

.hero__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  color: #8d3c22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
}

/* ================================
  FORMULAIRE HERO
================================ */
.hero__form {
  width: 450px;
  min-height: 440px;
  padding: 34px 22px 17px;
  border-radius: 24px;
  background: #f6ecdc;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #4b0f10;
  margin-left: 2%;
}

.hero__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.hero__form input,
.hero__form textarea {
  width: 100%;
  border: 1px solid #efb66e;
  border-radius: 5px;
  background: transparent;
  color: #4b0f10;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 600;
  outline: none;
}

.hero__form input {
  height: 35px;
  padding: 0 12px;
}

.hero__form textarea {
  height: 88px;
  padding: 11px 12px;
  resize: none;
}

.hero__form input::placeholder,
.hero__form textarea::placeholder {
  color: #5b2a29;
  opacity: 1;
  font-weight: 600;
}

.hero__field {
  position: relative;
}

.hero__field span {
  position: absolute;
  left: 12px;
  top: 8px;
  pointer-events: none;
  font-size: 17px;
  font-weight: 600;
  color: #5b2a29;
}

.hero__field small {
  font-size: 15px;
  font-weight: 400;
}

.hero__field--textarea span {
  top: 11px;
}

.hero__fieldset {
  margin: -1px 0 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.hero__fieldset legend {
  width: 100%;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
}

.hero__fieldset label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.hero__fieldset input {
  appearance: none;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid #efb66e;
  border-radius: 50%;
  background: transparent;
}

.hero__form button {
  align-self: center;
  width: 295px;
  height: 48px;
  margin-top: 4px;
  border: none;
  border-radius: 999px;
  background: #C15017;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FEF8EF;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.hero__form button:hover {
  background-color: #460F10;
}

.hero__form-note {
  margin: 0;
  text-align: center;
  color: #d96f38;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
}

.hero__fieldset input {
  appearance: none;
  -webkit-appearance: none;

  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;

  border: 1px solid #efb66e;
  border-radius: 50%;
  background: transparent;

  cursor: pointer;
  flex-shrink: 0;
}

.hero__fieldset input:checked {
  background: #460F10;
  border-color: #460F10;
  box-shadow: inset 0 0 0 4px #f6ecdc;
}

.hero__fieldset label {
  cursor: pointer;
}

.popup-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-success__content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

/* ================================
  RESPONSIVE HERO
================================ */
@media (max-width: 1550px) {
  .hero__inner {
    grid-template-columns: 300px minmax(520px, 570px) minmax(390px, 420px);
    padding-inline: 4vw;
  }

  .hero {
    background:url("assets/bg-crepes.jpg") center center no-repeat;
    background-size: cover;
  }


  .hero__text-card,
  .hero__form {
    width: 100%;
  }

  .hero__text-card h1 {
    font-size: 35px;
  }

  .hero__subtitle {
    font-size: 30px;
  }

  .hero__benefits li {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .hero {
    height: auto;
    overflow: visible;
  }

  .hero__inner {
    min-height: auto;
    padding: 36px 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }

  .hero__logo {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .hero__logo img {
    width: 280px;
    margin: auto;
  }

  .hero__text-card,
  .hero__form {
    width: 100%;
        margin: auto;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .hero__text-card {
    padding: 34px 26px 28px;
  }

  .hero__signature {
    margin-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .hero__inner {
    padding: 28px 16px;
  }

  .hero__logo img {
    width: 245px;
  }

  .hero__text-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .hero__text-card h1 {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 24px;
  }

  .hero__subtitle {
    font-size: 24px;
  }

  .hero__signature {
    font-size: 21px;
    margin-bottom: 30px;
  }

  .hero__benefits li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 34px;
  }

  .hero__benefits li::before {
    width: 20px;
    height: 20px;
    font-size: 14px;
    top: 2px;
  }

  .hero__form {
    padding: 26px 16px 20px;
    border-radius: 20px;
  }

  .hero__form-row {
    grid-template-columns: 1fr;
  }

  .hero__field span {
    font-size: 15px;
  }

  .hero__field small {
    font-size: 13px;
  }

  .hero__fieldset {
    gap: 14px;
  }

  .hero__fieldset label,
  .hero__fieldset legend {
    font-size: 15px;
  }

  .hero__form button {
    width: 100%;
    max-width: 295px;
    font-size: 15px;
  }
}

/* ================================
  SECTION ARGUMENTS
================================ */
.features-section {
  background: #fbf4ea;
  padding: 68px 20px 56px;
}

.features-section__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.features-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.feature-card {
  min-height: 180px;
  text-align: center;
  position: relative;
}

.feature-card {
  min-height: 230px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.feature-card:not(:last-child) {
  border-right: 1px solid #d88454;
}

.feature-card h2 {
  margin: 0 0 9px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #460F10;
}

.feature-card h2 {
  min-height: 46px;
}

.feature-card p {
  min-height: 40px;
}

.feature-card p {
  margin: 5px 0 18px;

  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;

  color: #C15017;
}

.feature-card img {
  display: block;
  margin: 0 auto;
  height: auto;
}


.features-section__cta {
  margin-top: 7%;
  text-align: center;
}

.features-section__cta p {
  margin: 0 0 11px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #C15017;
}

.features-section__cta a {
  width: 254px;
  height: 45px;

  margin: 0 auto;

  border-radius: 50px;
  background: #C15017;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;

  color: #F5EBDB;
}

.features-section__cta a {
  transition: background-color 0.5s ease;
}

.features-section__cta a:hover {
  background-color: #460F10;
}

/* ================================
  SECTION OFFRE ADAPTÉE
================================ */
.offer-section {
  background: #F5EBDB;
  padding: 74px 20px 90px;
}

.offer-section__inner {
  max-width: 840px;
  margin: 0 auto;
}

.offer-section__grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  column-gap: 14px;
  align-items: start;
}

/* IMAGES */
.offer-section__image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.offer-section__image--top {
  height: 440px;
}

.offer-section__image--bottom-left {
  height: 341px;
}


/* CONTENU */
.offer-section__content {
  padding-left: 36px;
}

.offer-section__content h2 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #460F10;
}

.offer-section__subtitle {
  margin: 0 0 25px;
  font-family: "Damion", cursive;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #460F10;
}

.offer-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-section__list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 31px;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #884013;
}

.offer-section__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;

  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #884013;
  color: #F5EBDB;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 900;
}

/* BOUTON */
.offer-section__button {
  width: 244px;
  height: 45px;
  margin: 52px auto 0;

  border-radius: 50px;
  background: #884013;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;

  color: #F5EBDB;
}

.offer-section__inner a {
  transition: background-color 0.5s ease;
}

.offer-section__inner a:hover {
  background-color: #460F10;
}

/* ================================
  SECTION TYPES EVENEMENTS
================================ */
.events-section {
  background: #FEF8EF;
  padding: 80px 20px;
}

.events-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* TITRE */
.events-section__title {
  margin: 0 0 12px;

  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.02em;

  color: #460F10;
}

/* SOUS-TITRE */
.events-section__subtitle {
  margin: 0 0 50px;

  font-family: "Damion", cursive;
  font-size: 20px;
  letter-spacing: 0.03em;

  color: #884013;
}

/* GRID */
.events-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-card a {
  transition: background-color 0.5s ease;
}

.event-card__button:hover {
  background-color: #884013;
}

/* IMAGE CERCLE */
.event-card__image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* TITRES */
.event-card__title {
  margin: 0 0 20px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* COULEURS TITRES */
.event-card__title--dark {
  color: #460F10;
}

.event-card__title--brown {
  color: #AB6532;
}

.event-card__title--orange {
  color: #C15017;
}

/* TEXTE */
.event-card__text {
  margin: 0 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;

  color: #884013;
}

/* BOUTONS */
.event-card__button {
  width: 235px;
  height: 55px;

  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;

  color: #F5EBDB;
}

/* COULEURS BOUTONS */
.event-card__button--dark {
  background: #460F10;
}

.event-card__button--brown {
  background: #AB6532;
}

.event-card__button--orange {
  background: #C15017;
}

/* ================================
  RESPONSIVE
================================ */
@media (max-width: 900px) {
  .events-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}


/* ================================
  SECTION AVIS CLIENTS
================================ */
.reviews-section {
  background: #F5EBDB;
  padding: 86px 20px 78px;
}

.reviews-section__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.reviews-section__title {
  margin: 0 0 22px;

  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-align: center;

  color: #460F10;
}

.reviews-section__stars {
  display: block;
  width: 157px;
  height: auto;
  margin: 0 auto 13px;
}

.reviews-section__rating {
  margin: 0 0 20px;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: center;

  color: #460F10;
}

.reviews-section__intro {
  margin: 0 auto 58px;
  max-width: 760px;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: center;

  color: #460F10;
}

/* SLIDER */
.reviews-slider {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.35s ease;
}

/* CARD */
.review-card {
  flex: 0 0 calc(50% - 9px);

  height: auto;
  min-height: unset;
  padding: 32px 36px 30px;

  border: 2px solid #C15017;
  border-radius: 16px;

  text-align: center;
}

.review-card--orange {
  border-color: #C15017;
}

.review-card--yellow {
  border-color: #F5A400;
}

.review-card h3 {
  margin: 0 0 10px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #C15017;
}

.review-card__subtitle {
  margin: 0 0 18px;

  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;

  color: #C15017;
}

.review-card__text {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: justify;

  color: #884013;
}

.review-card__text strong {
  font-weight: 700;
}

/* NAV */
.reviews-slider__nav {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 46px;
}

.reviews-slider__button {
  border: 0;
  background: transparent;

  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  line-height: 1;
  font-weight: 300;

  color: #E7B378;
  cursor: pointer;
}

.reviews-slider__button:hover {
  color: #C15017;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reviews-section {
    padding: 64px 20px;
  }

  .reviews-slider__track {
    gap: 0;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews-section__intro br {
    display: none;
  }
}

@media (max-width: 520px) {
  .reviews-section {
    padding: 52px 16px;
  }

  .reviews-section__title {
    font-size: 26px;
    line-height: 32px;
  }

  .review-card {
    padding: 28px 22px;
  }

  .review-card__text {
    font-size: 15px;
    line-height: 21px;
  }
}

/* ================================
  BANDEAU AVANTAGES
================================ */
.benefits-strip {
  width: 100%;
  min-height: 120px;
  background: #FBB80F;
  display: flex;
  align-items: center;
}

.benefits-strip__inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  align-items: center;
}

.benefits-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefits-strip__icon {
  object-fit: contain;
  flex-shrink: 0;
}

.benefits-strip__item h2 {
  margin: 0 0 2px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: #884013;
}

.benefits-strip__item p {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;

  color: #884013;
}

/* ================================
  RESPONSIVE - BANDEAU AVANTAGES
================================ */
@media (max-width: 800px) {
  .benefits-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px 10px;
  }
}


@media (max-width: 520px) {
  .benefits-strip__inner {
    grid-template-columns: 1fr;
    row-gap: 32px; /* espace réel entre les items */
    justify-items: center;
  }

  .benefits-strip__item {
    width: 100%;
    max-width: 260px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;

    padding: 5% 0; /* donne de l'air autour de chaque bloc */
  }

  .benefits-strip__item h2 {
    margin-bottom: 4px; /* espace titre / sous-texte */
  }

  .benefits-strip__item h2,
  .benefits-strip__item p {
    text-align: left;
  }
}

/* ================================
  SECTION COMMENT RÉSERVER
================================ */
.booking-section {
  background: #FEF8EF;
  padding: 86px 20px 78px;
}

.booking-section__inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.booking-section__title {
  margin: 0 0 60px;

  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-align: center;

  color: #460F10;
}

.booking-section__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;

  margin-bottom: 52px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-step__number {
  width: 63px;
  height: 63px;
  margin: 0 0 22px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #F5EBDB;
}

.booking-step p {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #884013;
}

.booking-step--one .booking-step__number {
  background: #460F10;
}

.booking-step--one p {
  color: #460F10;
}

.booking-step--two .booking-step__number {
  background: #AB6532;
}

.booking-step--two p {
  color: #AB6532;
}

.booking-step--three .booking-step__number {
  background: #C15017;
}

.booking-step--three p {
  color: #C15017;
}

.booking-step--four .booking-step__number {
  background: #FBB80F;
}

.booking-step--four p {
  color: #884013;
}

.booking-section__subtitle {
  margin: 0 0 18px;

  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;

  color: #460F10;
}

.booking-section__button {
  width: 233px;
  height: 45px;
  margin: 0 auto;

  border-radius: 50px;
  background: #460F10;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;

  color: #F5EBDB;
}

.booking-section__inner a {
  transition: background-color 0.5s ease;
}

.booking-section__inner a:hover {
  background-color: #884013;
}

/* ================================
  RESPONSIVE - COMMENT RÉSERVER
================================ */
@media (max-width: 900px) {
  .booking-section {
    padding: 64px 20px;
  }

  .booking-section__title {
    margin-bottom: 42px;
  }

  .booking-section__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 28px;
    margin-bottom: 44px;
  }
}

@media (max-width: 520px) {
  .booking-section {
    padding: 52px 16px;
  }

  .booking-section__title {
    font-size: 26px;
    line-height: 32px;
  }

  .booking-section__steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .booking-step__number {
    width: 58px;
    height: 58px;
  }

  .booking-section__button {
    width: 100%;
    max-width: 233px;
  }
}

/* ================================
  SECTION FAQ
================================ */
.faq-section {
  background: #F5EBDB;
  padding: 82px 20px 86px;
}

.faq-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-section__title {
  margin: 0 0 42px;

  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-align: center;

  color: #460F10;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #FBB80F;
}

.faq-item__question {
  width: 100%;
  padding: 11px 0;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  cursor: pointer;
}

.faq-item__question span:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;

  color: #884013;
}

.faq-item__plus {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;

  color: #884013;

  transition: transform 0.5s ease;
}

.faq-item__question:hover .faq-item__plus {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__plus {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 42px 14px 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;

  color: #460F10;
}

/* ================================
  RESPONSIVE - FAQ
================================ */
@media (max-width: 520px) {
  .faq-section {
    padding: 58px 16px 64px;
  }

  .faq-section__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .faq-item__question {
    gap: 16px;
  }

  .faq-item__question span:first-child {
    font-size: 15px;
    line-height: 21px;
  }

  .faq-item__answer p {
    padding-right: 32px;
    font-size: 14px;
    line-height: 21px;
  }
}

/* ================================
  SECTION CONTACT FINAL
================================ */
.final-contact-section {
  min-height: 420px;
  background-color: #C15017;
  background-image:
    linear-gradient(rgba(193, 80, 23, 0.8), rgba(193, 80, 23, 0.8)),
    url("assets/motif-ble.png");
  background-repeat: repeat;
  background-position: top left;

  padding: 38px 20px;
  display: flex;
  align-items: center;
}

.final-contact-section__inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 420px 681px;
  gap: 35px;
  align-items: center;
}

/* LOGO */
.final-contact-section__logo {
  display: flex;
  justify-content: right;
  align-items: center;
}

.final-contact-section__logo img {
  max-width: 100%;
  display: block;
  margin-bottom: 32%;
}

/* FORMULAIRE */
.final-contact-form {
  width: 100%;
  height: 440px;

  background: #F5EBDB;
  border-radius: 30px;
  padding: 35px 22px 20px;

  display: flex;
  flex-direction: column;
  gap: 13px;
}

.final-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* FIELD */
.final-contact-form__field {
  position: relative;
}

.final-contact-form__field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;

  color: #460F10;
  transition: opacity 0.2s ease;
}



.final-contact-form__field--textarea label {
  top: 18px;
  transform: none;
}

/* INPUTS */
.final-contact-form input,
.final-contact-form textarea {
  width: 100%;
  border: 1px solid #efb66e;
  border-radius: 5px;
  background: transparent;
  color: #460F10;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;

  outline: none;
}

.final-contact-form input {
  height: 35px;
  padding: 0 12px;
}

.final-contact-form textarea {
  height: 96px;
  padding: 11px 12px;
  resize: none;
}

/* RADIO */
.final-contact-form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.label-type-evenement {
  margin: 1% 0 1% 1%;
  padding: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;

  color: #460F10;
}

.final-contact-form__fieldset label {
  display: flex;
  align-items: center;
  gap: 7px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;

  color: #460F10;
  cursor: pointer;
}

.final-contact-form__fieldset input {
  appearance: none;
  -webkit-appearance: none;

  width: 17px;
  height: 17px;
  padding: 0;
  margin: 0;

  border: 1px solid #efb66e;
  border-radius: 50%;
  background: transparent;

  cursor: pointer;
}

.final-contact-form__fieldset input:checked {
  background: #460F10;
  border-color: #460F10;
  box-shadow: inset 0 0 0 4px #F5EBDB;
}

/* BOUTON */
.final-contact-form button[type="submit"] {
  width: 275px;
  height: 45px;
  margin: 3px auto 0;

  border: 0;
  border-radius: 50px;
  background-color: #460F10;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 0 35px;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;

  color: #F5EBDB;
  cursor: pointer;
}

/* TÉLÉPHONE */
.final-contact-form__phone {
  margin: -2px 0 -2px;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;

  color: #460F10;
}

/* NOTE */
.final-contact-form__note {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 100%;
  text-align: center;

  color: #C15017;
}

.final-contact-form__field label small {
  font-weight: 400;
  font-size: 14px;
}

.final-contact-form button {
  transition: background-color 0.5s ease;
}

.final-contact-form button:hover {
  background-color: #C15017;
}

/* ================================
  RESPONSIVE - CONTACT FINAL
================================ */
@media (max-width: 1200px) {
  .final-contact-section__inner {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }

  .final-contact-form {
    max-width: 780px;
    height: auto;
    width: 100%;
  }

  .final-contact-section__logo img {
    margin-bottom: auto;
  }
}

@media (max-width: 520px) {
  .final-contact-section {
    padding: 44px 16px;
  }

  .final-contact-section__logo img {
    width: 280px;

  }

  .final-contact-form {
    padding: 26px 16px 20px;
  }

  .final-contact-form__row {
    grid-template-columns: 1fr;
  }

  .final-contact-form__fieldset {
    gap: 12px;
  }

  .final-contact-form button[type="submit"] {
    width: 100%;
    max-width: 275px;
    font-size: 15px;
  }

  .final-contact-form__phone {
    font-size: 22px;
  }
}

/* TEXTE ENTRE PARENTHÈSES */
.final-contact-form__field label small {
  font-weight: 400;
  font-size: 14px;
}

/* ================================
  SECTION FOOTER
================================ */
.footer-section {
  background: #460F10;
  padding: 18px 20px 14px;
}

.footer-section__inner {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* SOCIALS */
.footer-section__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
}

.footer-section__socials a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none;
  border-radius: 0;
  text-decoration: none;
}

.footer-section__socials img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

/* TEXTE */
.footer-section__text {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-align: center;

  color: #C15017;
}

.footer-section__text a {
  color: #C15017;
  text-decoration: none;
}

/* CREDITS */
.footer-section__credits {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  text-align: center;

  color: #C15017;
}

.footer-section__credits a {
  color:#C15017;
}

/* ================================
  RESPONSIVE - FOOTER
================================ */
@media (max-width: 520px) {
  .footer-section {
    padding: 20px 14px 16px;
  }

  .footer-section__text {
    font-size: 11px;
  }

  .footer-section__credits {
    font-size: 10px;
  }
}



























/* ================================
  RESPONSIVE GLOBAL
================================ */

/* ================================
  DESKTOP INTERMÉDIAIRE
================================ */
@media (max-width: 1550px) {



  .hero__text-card {
    width: 74%;
  }

  .hero__form {
    width: 430px;
    margin-left: -23%;
  }

  .hero__text-card h1 {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 21px;
  }

  .hero__benefits li {
    font-size: 16px;
  }

  .hero__signature {
    font-size: 21px;
  }
}

/* ================================
  TABLETTE LARGE
================================ */
@media (max-width: 1200px) {
  .hero {
    height: auto;
    overflow: visible;
  }

  .hero__form {
    margin-left: auto;
  }

  .hero__nav {
    height: auto;
    min-height: 52px;
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 30px;
  }

  .hero__inner {
    height: auto;
    padding: 32px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .hero__logo {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .hero__text-card,
  .hero__form {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
}

/* ================================
  TABLETTE + MOBILE
================================ */
@media (max-width: 900px) {
  /* HERO */
  .hero__inner {
    grid-template-columns: 1fr;
  }

  /* SECTION ARGUMENTS */
  .features-section {
    padding: 48px 20px;
  }

  .features-section__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-card {
    min-height: auto;
    padding: 0 20px 34px;
  }

  .feature-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #d88454;
  }

  .features-section__cta {
    margin-top: 34px;
  }

  /* SECTION OFFRE */
  .offer-section {
    padding: 54px 20px 60px;
  }

  .offer-section__inner {
    max-width: 620px;
  }

  .offer-section__grid {
    display: block;
  }

  .offer-section__content {
    padding: 0;
    text-align: center;
  }

  .offer-section__content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .offer-section__subtitle {
    font-size: 20px;
    line-height: 110%;
  }

  .offer-section__list {
    max-width: 520px;
    margin: 0 auto;
  }

  .offer-section__list li {
    text-align: left;
  }

  .offer-section__image--top,
  .offer-section__image--bottom-left {
    display: none;
  }

  .offer-section__image--wide {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 32px auto 0;
  }

  .offer-section__button {
    margin-top: 40px;
  }
}

/* ================================
  MOBILE
================================ */
@media (max-width: 520px) {
  /* HERO */
  .hero__menu a {
    font-size: 24px;
  }

  .hero__inner {
    padding: 24px 14px;
  }

  .hero__logo img {
    width: 245px;
  }

  .hero__text-card {
    padding: 30px 22px;
  }

  .hero__text-card h1 {
    font-size: 29px;
  }

  .hero__subtitle {
    font-size: 25px;
  }

  .hero__signature {
    font-size: 21px;
    margin-bottom: 38px;
  }

  .hero__benefits li {
    font-size: 17px;
  }

  .hero__form-row {
    grid-template-columns: 1fr;
  }

  .hero__fieldset {
    gap: 14px;
  }

  /* SECTION OFFRE */
  .offer-section {
    padding: 46px 16px 54px;
  }

  .offer-section__content h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .offer-section__list li {
    font-size: 15px;
    line-height: 21px;
  }

  .offer-section__button {
    width: 100%;
    max-width: 260px;
  }
}