/* Import de la police TT Fors */
@font-face {
  font-family: "TT Fors";
  src: url("../../fonts/TT-Fors-Trial-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Fors";
  src: url("../../fonts/TT-Fors-Trial-Medium.ttf") format("truetype");
  font-weight: medium;
  font-style: normal;
}
@font-face {
  font-family: "TT Fors";
  src: url("../../fonts/TT-Fors-Trial-DemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TT Fors";
  src: url("../../fonts/TT-Fors-Trial-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: revert;
}

/* Application de la police */
body {
  font-family: "TT Fors", sans-serif;
  margin: 0;
  line-height: normal;
}

/* Main */
:root {
  /* Couleurs principales */
  --color-primary: #f0931c; /* Orange */
  --color-secondary: #0973a0; /* Bleu */
  --logo-size: 150px;
  --icon-size: 40px;
  --size-0: 60px;
  --size-1: 35px;
  --size-2: 24px;
  --size-3: 18px;
  --size-4: 16px;
  --size-5: 14px;
  --gap-12: 12px;
  --gap-20: 20px;
  --gap-50: 50px;
  --width-90: 90%;
  --shadowed: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  --shadowed-2: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1280px) {
  :root {
    --logo-size: 130px;
    --icon-size: 32px;
    --size-0: 55px;
    --size-1: 32px;
    --size-2: 22px;
    --size-3: 16px;
    --size-4: 16px;
    --size-5: 14px;
    --gap-12: 8px;
    --gap-20: 16px;
    --gap-50: 30px;
    --width-90: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --size-0: 45px;
    --size-1: 28px;
    --size-2: 20px;
    --size-3: 16px;
    --size-4: 14px;
    --size-5: 12px;
    --gap-12: 4px;
    --gap-20: 16px;
    --gap-50: 30px;
    --width-90: 100%;
  }
}

@media (max-width: 500px) {
  :root {
    --size-0: 32px;
    --size-1: 21px;
    --size-2: 18px;
  }
}

p {
  font-size: var(--size-3);
  color: var(--color-secondary);
}
ul {
  padding-left: 0;
}
img:not(.noShdw) {
  box-shadow: var(--shadowed-2);
}

.mobileOnly {
  display: none;
}
@media (max-width: 1024px) {
  .mobileOnly {
    display: block;
  }
}

.center {
  width: 199px;
  margin: auto;
}
.center a {
  color: white;
  text-decoration: none;
}
.abs {
  position: absolute;
  left: 0px;
}

/* Boutons */
.button {
  position: relative;
  display: block;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.5px;
  cursor: pointer;
  overflow: hidden;
}

.button--primary {
  background-color: white;
  color: var(--color-primary);
  border: 3px solid var(--color-primary);
}
.button--secondary {
  background-color: white;
  color: var(--color-secondary);
  border: 3px solid var(--color-secondary);
}
.button--white {
  background-color: transparent;
  color: white;
  border: 3px solid white;
}
.button--primary-filled {
  background-color: var(--color-primary);
  color: white;
  border: 3px solid white;
}
.button--secondary-filled {
  background-color: var(--color-secondary);
  color: white;
  border: 3px solid white;
}
.button {
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.button:hover {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 12px currentColor;
  transform: scale(1.02);
}

@media (max-width: 1280px) {
  .button {
    padding: 0.5rem 1rem;
    font-weight: bold;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section--maxContent {
  width: 1200px;
  margin: auto;
}
.section--light {
  background: #fff;
}
.section--white {
  background: #f9f9f9;
}

.section-custom {
  background: var(--color-secondary);
  color: #fff;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;

  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.section--secondary-color {
  background: var(--color-secondary);
  color: #fff;
}

.section--gradient {
  background: linear-gradient(to bottom, var(--color-primary), #fff);
}

.section.google {
  padding: 2rem 0;
}
.dashed-container {
  border: 6px dashed var(--color-secondary);
  border-radius: 50px;
  padding: 20px 80px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.dividing-line {
  width: 50%;
  height: 4px;
  background-color: var(--color-secondary);
  margin: auto;
}

.container.page_resa,
.container.paddingTop {
  padding-top: 10rem;
}

@media (max-width: 1280px) {
  .section--maxContent {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  .dashed-container {
    padding: 20px 40px;
  }
  .dividing-line {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 2rem 0;
  }
  .section.noPadBtmMobile {
    padding: 2rem 0 0 0;
  }
  .dashed-container {
    padding: 20px;
  }
}

/* Grilles */
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid {
  display: grid;
  gap: var(--gap-20);
  align-items: flex-start;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid .grid-item {
  width: 200px;
  border-radius: 20px;
}
.grid-item.space {
  transform: translateY(50px);
}

@media (max-width: 768px) {
  .grid--2.tablet {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 500px) {
  .grid--2.phone {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid--3.phone {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid .grid-item {
    width: 100%;
  }

  .grid-item.space {
    transform: translateY(25px);
  }
}

/* Personnalisation */
.white {
  color: white !important;
}
.black {
  color: black;
}
.primary-color {
  color: var(--color-primary);
}
.secondary-color {
  color: var(--color-secondary);
}
.underline {
  text-decoration: underline;
}
.uppercase {
  text-transform: uppercase;
}
.paddingUp {
  padding-top: 4rem;
}
.marginBtm {
  margin-bottom: 4rem !important;
}
.noMargin {
  margin: 0;
}
.text-center {
  text-align: center;
}
.size-0 {
  font-size: var(--size-0);
}
.size-1 {
  font-size: var(--size-1);
}
.size-2 {
  font-size: var(--size-2);
}
.size-3 {
  font-size: var(--size-3);
}
.size-4 {
  font-size: var(--size-4);
}
.size-5 {
  font-size: var(--size-5);
}
.bold {
  font-weight: bold;
}
.ultra-bold {
  font-weight: 800;
}
.nogap {
  gap: 0 !important;
}
.gap-12 {
  gap: var(--gap-12);
}
.gap-20 {
  gap: var(--gap-20);
}
.m-auto {
  margin: auto;
}
.translatedUp {
  transform: translateY(-12px);
}
.relative {
  position: relative;
}
.w-50 {
  width: 50%;
}
.justify-left {
  justify-content: left;
}
.justify-end {
  justify-content: end;
}
.whitespace-nowrap {
  white-space: nowrap;
}

.icon {
  height: var(--icon-size);
}
@media (max-width: 768px) {
  .paddingUp {
    padding-top: 3rem;
  }
}
@media (max-width: 500px) {
  .marginBtm {
    margin-bottom: 2rem !important;
  }
  .paddingUp {
    padding-top: 2rem;
  }
}

/* ANIMATIONS */

/* Vers le haut au hover */
.nav-links > li:not(.social),
.social > a,
.flex-container img,
.intro-site img,
.partenaires-container img,
.footer-nav img,
.rental.license .grid > a {
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.nav-links > li:not(.social):hover,
.social > a:hover,
.flex-container img:hover,
.intro-site img:hover,
.partenaires-container img:hover,
.footer-nav img:hover,
.rental.license .grid > a:hover {
  transform: translateY(-2px);
}

/* === Titres & Textes === */
.container-colored-title {
  margin: auto auto 50px;
  text-align: center;
}
.section-colored-title {
  position: relative;
  font-size: var(--size-1);
  color: white;
  background-color: var(--color-primary);
  width: fit-content;
  max-width: 800px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 10px var(--size-0);
  margin: auto;
  transform: rotate(-5deg);
  z-index: 2;
  box-shadow: var(--shadowed);
}
.section-colored-subtitle {
  font-size: var(--size-2);
  color: white;
  background-color: var(--color-secondary);
  width: fit-content;
  max-width: 550px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  padding: 15px var(--size-0);
  margin: -8px auto;
  transform: rotate(-5deg);
  box-shadow: var(--shadowed);
}
.section-title {
  font-size: var(--size-1);
  text-transform: uppercase;
}
.subtitle-3 {
  font-size: var(--size-2);
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 500px) {
  .section-colored-subtitle {
    padding: 10px var(--size-0);
  }
}

/* SECTION: Hero */
.hero {
  position: relative;
  height: 722px;
  width: 100%;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-bottom-right-radius: 50px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 1072px !important;
  transform: translate(-50%, -350px);
  object-fit: cover;
  object-position: top;
  z-index: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.5;
  z-index: 2;
}
.hero-text {
  position: absolute;
  z-index: 3;
  color: white;
  text-align: center;
  width: fit-content;
  max-width: 700px;
  padding: 0 2rem;
}
.hero-text.btmR {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  margin: auto;
}
.hero-subtitle {
  font-size: 27px;
  font-weight: 800;
  color: white;
}

@media (max-width: 500px) {
  .hero-text {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 1rem;
  }
  .hero-text.btmR {
    text-align: center;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    z-index: 2;
  }
}

/* SECTION: Présentation & Activités */
.flex-container {
  width: var(--width-90);
  margin: auto;
  display: flex;
  justify-content: center;
  gap: var(--gap-50);
}
.flex-container p {
  text-align: justify;
}
.flex-container > div {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.flex-container > div > p:first-of-type {
  margin-bottom: 30px;
}
.flex-container img {
  width: 100%;
  aspect-ratio: 2;
  border-radius: 20px;
}
.siteCard {
  display: flex;
  align-items: center;
  gap: var(--gap-20);
  border-radius: 20px;
  background-color: var(--color-primary);
  box-shadow: var(--shadowed);
}
.siteCard img {
  max-width: 200px;
  width: 50%;
  border-radius: 20px var(--size-0) 20px 20px;
}
.siteCard .content {
  flex: 1;
  font-weight: bold;
}
.siteCard .content div {
  margin-bottom: 12px;
}
.siteCard .content > div > * + * {
  margin-top: 4px;
}
.siteCard p {
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 500px) {
  .flex-container {
    flex-direction: column;
    gap: 0;
  }
  .flex-container > div {
    width: 100%;
  }
  .flex-container img {
    order: 2;
  }
  .siteCard {
    flex-direction: column;
    gap: 0;
    padding-block: 1rem;
    border-radius: 20px 20px 20px 20px;
  }
  .siteCard:first-of-type {
    margin-bottom: 20px;
  }

  .siteCard img {
    display: none;
  }

  .siteCard .content {
    padding: 8px;
  }
}

/* SECTION : Horaires & Trajet */
.schedules .info-box + .info-box {
  border-left: 5px solid var(--color-secondary);
  padding-left: 50px;
}
.info-box .address {
  min-height: 95px;
}
.schedules ul:not(.disc) {
  list-style-type: none;
}
.schedules ul:not(.disc) > * + * {
  margin-top: 12px;
}
.schedules ul.disc {
  padding-left: 40px;
  list-style-type: disc;
}

.schedules .logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.route article {
  display: flex;
  flex-direction: column;
  gap: var(--gap-12);
}
.route ul {
  padding-left: 30px;
  margin: auto;
}

.route .info-box > * + * {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .info-box {
    padding-bottom: 20px;
  }
  .schedules .info-box + .info-box {
    border-left: none;
    border-top: 5px solid var(--color-secondary);
    padding-left: 0;
    padding-top: 20px;
  }
  .schedules .logo {
    display: none;
  }
  .info-box .address {
    min-height: auto;
  }
}

@media (max-width: 500px) {
  .route .section-title {
    margin: revert;
  }
}

/* SECTION : Offrez / Téléchargez */
.offer-section .grid {
  gap: 40px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap-12);
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.offer-card img {
  width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  .offer-card {
    padding: 20px;
  }

  .offer-card > div:not(:first-child) > p {
    min-height: 95px;
  }
}

/* SECTION : Carrousel */
.slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
.slider .content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.card {
  position: absolute;
  transition: all 0.6s ease;
  opacity: 0;
  width: 0%;
  height: 0%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
  pointer-events: none;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.4s;
}
.card.prev {
  width: 90%;
  height: 90%;
  z-index: 1;
  left: 40%;
  opacity: 0.7;
  pointer-events: auto;
}
.card.active {
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 50%;
  opacity: 1;
  pointer-events: auto;
}
.card.next {
  width: 90%;
  height: 90%;
  z-index: 1;
  left: 60%;
  opacity: 0.7;
  pointer-events: auto;
}
.carrousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  font-size: 80px;
  color: white;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}
.carrousel-button.prev {
  left: 0;
}
.carrousel-button.next {
  right: 0;
}
@media (max-width: 768px) {
  .slider .content {
    width: 85%;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .slider .content {
    width: 90%;
    height: 250px;
  }
  .carrousel-button {
    display: none;
  }
}

/* SECTION: Partenaires */
.partenaires-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: var(--gap-12);
}

.partenaires-container img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 500px) {
}

/* SECTION : Intro site */
.intro-site {
  display: flex;
  flex-direction: column;
  width: var(--width-90);
  margin: auto;
  gap: var(--gap-20);
}
.intro-site p {
  text-align: justify;
}
.intro-site img {
  width: 50%;
  aspect-ratio: 2;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .intro-site {
    gap: 0;
  }
  .intro-site .flex {
    flex-direction: column;
  }
  .intro-site img {
    order: -1;
    width: 100%;
  }
}
/* SECTION: Nos offres */
.map-container {
  position: relative;
  width: fit-content;
  margin: auto;
}
.map-container img {
  position: relative;
  width: 800px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}
.map-container > span {
  position: absolute;
  right: 0;
  bottom: -20px;
  text-transform: uppercase;
  font-style: italic;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .map-container img {
    width: 100%;
  }
}

/* SECTION: Locations */
.rental .grid {
  max-width: var(--width-90);
  margin: auto;
  gap: var(--gap-50);
}
.rental-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-12);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.rental-card .show {
  font-size: var(--size-5);
  color: var(--color-secondary);
  text-align: center;
  font-style: italic;
}
.rental-card .hidden {
  display: none;
  margin: 0;
}
.rental-card .toggle-button {
  cursor: pointer;
  text-decoration: underline;
}
.rental-card h3 {
  min-height: 66px;
  align-content: center;
}
.license-less .rental-card p:first-of-type {
  min-height: 125px;
  align-content: center;
  margin: 0;
}
.rental-card img {
  width: 80%;
  align-self: center;
  border-radius: 20px;
}
.rental-card .price {
  margin: 0;
  text-align: center;
  font-size: var(--size-2);
  font-weight: bold;
  color: var(--color-primary);
}

.rental.license .rental-card {
  border: 4px solid var(--color-primary);
}
.rental.license img {
  position: relative;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  border-radius: 20px;
}

.license-less .conditions {
  margin-bottom: 2rem;
  padding-block: 0;
}
.conditions {
  max-width: var(--width-90);
  margin: auto;
  padding-block: 1rem;
}
.conditions,
.conditions p {
  font-size: 12px;
  color: black;
}

.rental-card.v2 {
  flex-direction: row;
  align-items: center;
  gap: var(--gap-20);
  max-width: var(--width-90);
  margin: auto;
  border: none;
  padding: 0;
}
.rental-card.v2 img {
  width: auto;
  max-width: 50%;
  aspect-ratio: 3/2;
  object-fit: cover;
  height: 100%;
}
.rental-card.v2 .content {
  position: relative;
  padding: 1rem;
  flex: 1;
}
.rental-card.v2 .content > .align-left {
  display: flex;
  flex-direction: column;
  gap: var(--gap-12);
  max-width: 30%;
  margin-bottom: 12px;
}
.rental-card.v2 .show {
  font-size: var(--size-3);
  text-align: left;
}
.rental-card.v2 .price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: var(--size-1);
}
.additional-pictures {
  display: flex;
  justify-content: center;
  margin-top: var(--gap-50);
  gap: var(--gap-20);
}
.additional-pictures > img {
  min-width: 0;
  height: auto;
  flex: 1 1 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .rental-card.v2 .content > .align-left {
    max-width: 50%;
  }
  .rental-card {
    padding: 12px;
  }
  .rental-card img {
    width: 100%;
  }
  .rental.license .rental-card {
    border: 2px solid var(--color-primary);
  }
  .rental .grid {
    gap: 20px;
  }
  .rental-card.v2 {
    flex-direction: column;
    height: auto;
  }
  .rental-card.v2 .content {
    order: -1;
  }
  .rental-card.v2 img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .license-less .rental-card p:first-of-type,
  .rental-card h3 {
    min-height: auto;
  }

  .rental-card {
    gap: 18px;
  }
  .additional-pictures {
    flex-direction: column;
    margin-top: var(--gap-20);
  }
  .additional-pictures > img {
    max-width: 100%;
  }
}

/* SECTION: Infos supplémentaires */
.infos-section .grid {
  height: 230px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
  box-sizing: border-box;
  height: 100%;
  border-radius: 20px;
  background-color: #545454;
  padding: 40px;
  color: white;
}
.info-card p {
  color: white;
  margin: 0;
}
.info-card ul {
  font-size: var(--size-3);
  margin: 0;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .infos-section .grid {
    height: auto;
  }
}

/* SECTION: Header */

.header {
  padding: 2rem;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
}
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #0000006b;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 6px 20px;
}
.navbar .logo img {
  width: var(--logo-size);
}
.nav-links {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  position: unset;
  background: unset;
  padding: unset;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--size-3);
}

.social img {
  height: 40px;
}

.flag {
  position: absolute;
  right: 1rem;
  bottom: -3rem;
}

.flag img {
  width: 50px;
  aspect-ratio: 2;
}

.header .icon {
  width: var(--icon-size);
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-secondary);
  display: none;
  flex-direction: column;
  z-index: 100;
}
.mobile-menu.open {
  display: flex;
}
.nav-links.column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}
.nav-links.column a {
  font-size: var(--size-2);
}
.mobile-menu .close-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.mobile-social {
  position: static;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
}

/* FIXED SIDEBAR */
.fixed-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  width: 47px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  transition: all 0.3s ease;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f0931c;
  color: white;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border-radius: 25px 0 0 25px;
  transition: all 0.3s ease;
  width: 60px;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sidebar-item .icon {
  width: 30px;
}

.sidebar-item .label.phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixed-sidebar:hover {
  width: 200px;
}
.fixed-sidebar:hover .sidebar-item {
  width: 200px;
}

.fixed-contact-mobile {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

/* Optional custom colors */
.fixed-sidebar:hover .facebook {
  background-color: #3b5998;
}
.fixed-sidebar:hover .instagram {
  background-color: #e1306c;
}
.fixed-sidebar:hover .sables {
  background-color: #007bff;
}
.fixed-sidebar:hover .port {
  background-color: #28a745;
}

@media (max-width: 1280px) {
  .header {
    padding: 2rem 1rem;
  }
}

@media (max-width: 1024px) {
  .toHide,
  .contact-links,
  .fixed-sidebar {
    display: none;
  }
  .nav-links {
    justify-content: space-between;
  }
  .header {
    padding: 1rem 1rem;
  }

  header.section--maxContent {
    width: 100%;
  }

  .fixed-contact-mobile {
    display: block;
  }
}

/* SECTION: Footer */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.footer-left,
.footer-center,
.footer-right {
  max-width: 33%;
}
.footer-center {
  display: flex;
  flex-direction: column;
  gap: var(--gap-12);
}
.footer-logo {
  width: var(--logo-size);
}
.footer-nav .icon {
  height: var(--icon-size);
}
.icon.google {
  border-radius: 100%;
}
.stars {
  color: gold;
  font-size: 30px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}

.footer-right ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-20);
  list-style-type: none;
  font-size: var(--size-3);
}
.footer-right ul li a {
  color: white;
  text-decoration: none;
}
.footer-right ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--width-90);
  margin: auto;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
  }

  .footer-left {
    width: fit-content;
  }
  .footer-center,
  .footer-right {
    width: 100%;
    max-width: none;
    align-items: center;
    gap: 30px;
  }

  .footer-right ul {
    justify-content: space-between;
  }
}

/* SECTION: Formulaire de réservation */
form > * + *,
form .form-bottom-section > div > * + * {
  margin-top: 30px;
}
.infos-box > * + *,
.dates-selection > * + * {
  margin-top: 12px;
}
.form-bottom-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}
.form-bottom-section img {
  width: 50%;
  max-height: 600px;
  border-radius: 20px;
}
.recap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.infos-box {
  border: none;
  border-radius: 20px;
  background-color: var(--color-primary);
  padding: 40px 50px;
  margin-bottom: 50px;
}

.infos-box .full {
  grid-column: span 2;
}
.infos-box label,
.sendCadeau label.hidden {
  display: none;
}

input:not(.submit):not([type="radio"]),
textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  box-sizing: border-box;
}

input.submit {
  padding: 0.5rem 2.5rem;
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
}

select {
  width: 100%;
  max-width: fit-content;
}

form h3 {
  font-size: var(--size-1);
  color: var(--color-secondary);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.supp-box > * + * {
  margin-top: 12px;
}

.supp-box textarea {
  border: 1px solid black;
}

.message {
  text-align: center;
  font-size: var(--size-1);
  padding: 1rem;
}

@media (max-width: 768px) {
  .infos-box {
    padding: 20px 20px;
  }

  .infos-box .full {
    grid-column: auto;
  }

  .form-bottom-section img {
    display: none;
  }
}

/* CLEANING PREVIOUS STYLESHEET */

header nav:before,
header nav ul:before {
  display: none !important;
}

header nav {
  z-index: auto !important;
  width: unset !important;
  max-width: unset !important;
  margin: unset !important;
}

header nav ul li a {
  padding: unset !important;
  display: auto !important;
  font-family: inherit !important;
}

.listingVille {
  display: none !important;
}
