/* RESET - Réinitialisation des marges, bordures, etc. */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(1rem, 1.5vh, 2.5rem); /* a conserver */
}

body {
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
  overflow-y: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  padding: 0 20px;
  background-color: #632828;
}

.ligne-soulignement {
  display: block;
  margin: -30px auto 10px auto;
  width: 25%; /* adapte la taille selon le visuel */
  height: auto;
}

/* Logo */

#logo {
  width: 70%;
}

/* Menu principal */

div.header {
  width: 100%;
  height: 20vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  z-index: 1000;
  background-color: #11286c00;
  transition: background-color 0.5s ease-in-out;
}

div.header.scrolled {
  background-color: #11276c;
}

/* Menu burger */

.header-burger {
  display: block; /* Visible uniquement sur mobile et tablette */
}

.header-burger svg {
  fill: #fff;
  width: 20%;
  height: auto;
  cursor: pointer;
  margin-left: 80%;
}

/* Menu navigation */

nav.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%; /* Occupe tout l'écran en mobile/tablette */
  height: 100vh;
  background-color: #252729d3;
  display: flex;
  align-items: center; /* Centrer les éléments verticalement */
  justify-content: center; /* Centrer les éléments horizontalement */
  transform: translateX(100%);
  display: none;
  transition: 0.5s transform ease-in-out;
}

nav.header-nav.scrolled {
  background-color: rgba(
    37,
    39,
    41,
    0.7
  ); 
}

nav.header-nav.open {
  transform: initial;
  display: block;
}

.header-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column; /* Disposition verticale sur mobile/tablette */
  align-items: center; /* Centrer horizontalement */
  justify-content: center; /* Centrer verticalement */
  height: 100%; /* Prendre toute la hauteur disponible */
  padding: 0;
  margin: 0;
  gap: 20px; /* Espacement vertical entre les liens */
}

.header-menu-link a {
  color: #f0eff1;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  font-size: clamp(1.4rem, 2.5vw, 3.5rem); /* Taille responsive */
  transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.header-menu-link a:hover {
  color: #ebebe9; /* Changement de couleur au survol */
}

/* Page active */
.header-menu-link a.active {
  color: #feda00; /* Couleur du lien actif */
}

.header-menu-link a:after {
  content: "";
  height: 2px;
  background-color: #f9f9f9;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s all ease-in-out;
}

.header-menu-link a:hover:after {
  width: 100%;
}

/* Styles pour les icônes SVG */
.size-6 {
  width: 20px;
  height: 20px;
  stroke: #f9f9f9;
  margin-right: 8px;
  vertical-align: middle;
}

/* Icône de fermeture du menu */
.header-nav-close {
  display: block;
  cursor: pointer;
}

.header-nav-close svg {
  fill: #fff;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 7.5%; /* Ajustable avec media queries */
    right: 1.5%;
}

/* Main */

/* Section h1 et video */
.section-video {
  position: relative;
  text-align: center;
  color: #f0eff1;
}

.section-video video {
  width: 100%;
  height: auto;
  display: block;
}

.section-video h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: bold;
  color: #f0eff1;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.section-video span {
  font-size: 5rem;
}

/* Section banniere message */

.vente-bateau {
  background-color: #11276c;    
  color: #f9f9f9;                
  padding: 60px 30px;
  width: 100%;                  
  text-align: center;
  box-sizing: border-box;        
  box-shadow: 0 4px 8px rgba(16, 39, 108, 0.3);
}

.vente-bateau h2 {
  font-size: 2.6rem;
   margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #feda00;            
  text-shadow: 1px 1px 2px #000a2a;
  font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.vente-bateau p {
  font-size: 1.2rem;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1.5em; 
  line-height: 1.6;
  max-width: none;    
  padding: 0;    
}

.btn-contact {
  display: inline-block;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ff0101;     
  color: #f9f9f9;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 20px;    
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
  background-color: #277afe;
}


/* Section présentation */

.presentation {
  width: 100%;
  background-color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper centré */
.content-wrapper {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Section texte */
.text-section {
  padding: 20px;
  background-image: url(Images/test_pinceau_4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 250px;
}

/* H2 */
.text-section h2 {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
  background-image: url(Images/Lignes/lignejaune.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.039); /* Légère ombre */
}

/* Bouton CTA */
.text-section .btn-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0101;
  color: white;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  border-radius: 35px;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.text-section .btn-cta:hover {
  background-color: #277afe;
}

/* Carousel */

.carousel {
  position: relative;
  width: 100%; /* Largeur du carousel */
  height: 60vh; /* Hauteur du carousel */
  overflow: hidden;
  border-radius: 15px;
  margin: 0 auto; /* Centre horizontalement */
  margin-bottom: 30px;
}

.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center; /* Centre verticalement */
  height: 100vh; /* Hauteur de la fenêtre (ou un conteneur parent) */
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fade 0.8s ease-in-out;
  position: relative;
}

.slide.active {
  display: block;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: #11286c83;
  padding: 20px;
  border-radius: 10px;
  width: 100vh;
  height: auto;
}

h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
}

p {
  font-size: 1.4rem;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fade 0.7s ease-in-out; /* Augmente la durée ici pour ralentir l'animation */
  position: relative;
}

/* Style spécifique pour le lien dans le carousel */
.carousel-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0101; /* Couleur de fond du bouton */
  color: white;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border-radius: 35px;
  font-size: 20px;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Effet au survol */
.carousel-link:hover {
  background-color: #277afe;
}

/* Effet lors du clic */
.carousel-link:active {
  background-color: #003f7f;
}

/* Section Balades croisières */

/* Section en grid */
.grid-section {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(350px, 1fr)
  ); /* Colonnes ajustables */
  gap: 30px;
  padding: 5%;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: minmax(
    350px,
    auto
  ); /* Permet à chaque ligne de s'ajuster en fonction du contenu */
}

/* Chaque bloc */
.grid-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Légère ombre */
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: auto; /* Hauteur dynamique selon le contenu */
  min-height: 350px; /* Hauteur minimale définie */
}

/* Conteneur image + texte */
.image-container {
  position: relative;
  width: 100%;
  height: 250px; /* Ajuste la hauteur de l'image */
  margin-bottom: 20px; /* Espacement plus grand sous l'image */
}

/* Image sans arrondi */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Titre centré sur l'image */
.image-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.213);
  padding: 5px 15px;
  border-radius: 20px;
  pointer-events: none;
}

/* Paragraphe juste sous l'image */
.grid-box p {
  font-size: 1.4rem; /* Taille de texte normale */
  font-family: "Arimo", sans-serif;
  margin: 15px 0; /* Un peu d'espace autour */
  color: #333;
}

/* Lien (Bouton) */
.grid-box .btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0101;
  color: white;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  border-radius: 35px;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.grid-box .btn-link:hover {
  background-color: #277afe;
  color: white;
}

/* Section infos pratiques */

.infos-pratiques {
  background-color: #11276c;
  text-align: center;
  padding: 30px;
}

.infos-pratiques h2 {
  font-size: 3rem;
  line-height: 1.3;
  color: #f0eff1;
  padding: 50px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.infos-container {
  display: grid;
  grid-template-columns: 2fr 1fr; /* image plus large */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
  margin-top: 30px;
}

.calendrier img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image cliquable */
.clickable-img {
  cursor: pointer;
  transition: 0.3s ease;
}
.clickable-img:hover {
  opacity: 0.8;
}

/* Modal (plein écran) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Image agrandie */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoom 0.6s;
}

/* Bouton de fermeture */
.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #ff0101;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Animation */
@keyframes zoom {
  from {
    transform: scale(0.1)
  }
  to {
    transform: scale(1)
  }
}



.conseils {
  max-width: 400px;
  text-align: center;
  margin: auto;
}

.conseils h3 {
  font-size: 1.8rem;
  color: #f0eff1;
  margin-bottom: 15px;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.conseils ul {
  list-style-type: none;
  padding: 0;
}

.conseils li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.conseils a {
  color: #ff0101;
  text-decoration: none;
  font-weight: bold;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.conseils a:hover {
  text-decoration: underline;
}


/* Section expériences */

.experience-section {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
}

.experience-section h2 {
  font-size: 3rem;
  line-height: 1.3;
  color: #333;
  padding: 30px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Images */
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Agrandissement au survol */
.gallery img:hover {
  transform: scale(1.2);
}

/* Style de la galerie */
.gallery a {
  display: inline-block;
  margin: 5px;
}

/* section feed réseaux sociaux  */
.section-feed {
  background-color: #11276c;
  padding: 60px 20px;
  color: #f0eff1;
  font-family: "Cormorant", serif;
}

/* CONTAINER CENTRAL */
.feed-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TITRE */
.section-feed h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}

/* IMAGE DE SOULIGNEMENT */
.ligne-soulignement {
  display: block;
  margin: 0 auto 40px auto;
  max-width: 150px;
}

/* GRILLE DES POSTS */
.feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARTE INDIVIDUELLE */
.feed-card {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feed-card:hover {
  transform: translateY(-5px);
}

/* POUR QUE LES EMBEDS S'AJUSTENT */
.fb-post {
  width: 100% !important;
  max-width: 100%;
}


/* Section réseaux sociaux */

.section-reseaux-sociaux {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #11276c;
  padding: 20px;
}

/* Section partenaires */

.section-partenaires {
  background-color: white;
  padding: 20px 0;
  text-align: center;
}

/* Titre de la section */

.section-partenaires h2 {
  color: #333;
  font-size: 3rem;
  line-height: 1.3;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 130px;
}

/* Conteneur des logos */
.partenaires-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
  padding: 0 20px;
  margin-top: 50px;
}

/* Style des logos */
.partenaires-wrapper img {
  max-width: 400px;
  max-height: 120px;
  object-fit: contain;
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.partenaires-wrapper img:hover {
  transform: scale(1.1);
}

/* Footer */

/* Section contact */
.footer-section {
  background: #11276c;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff0101;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
  padding-bottom: 10px;
}
.cta-text h4 {
  color: #fff;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 2px;
}
.cta-text span {
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

/* Section logo et liens */
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}

/* Réseaux sociaux*/
.footer-social-icon {
  padding-bottom: 10px;
  padding-left: 2.5%;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  display: inline-block; /* Assure que l'élément est inline-block pour accepter la transformation */
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icon a:hover {
  transform: scale(1.2);
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #ff0101;
}

.instagram-bg {
  background: #ff0101;
}

.linkedin-bg {
  background: #ff0101;
}

/* Horaires et Liens */
.footer-text.mb-25 p {
  color: #fff;
  font-size: 16px;
}

.footer-widget-heading h3 {
  color: #fff;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff0101;
}
.footer-widget ul li {
  display: inline-block;
  /*float: left;*/
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
}

/*
  .subscribe-form {
    position: relative;
    overflow: hidden;
  }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
  }
  .subscribe-form button {
      position: absolute;
      right: 0;
      background: #ff5e14;
      padding: 13px 20px;
      border: 1px solid #ff5e14;
      top: 0;
  }
  .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
  }*/

/* Copyright*/
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* Media queries */

/* Styles pour les petits écrans (smartphones) */
@media (max-width: 600px) {
  /* Menu navigation et menu burger */

  .header-nav-menu {
    flex-direction: column;
    gap: 20px; /* Espacement vertical */
  }

  .header-burger {
    display: block; /* Le menu burger reste visible */
  }

  .header-menu-link a {
    font-size: clamp(1.5rem, 4vw, 3rem); /* Taille responsive adaptée */
  }

  /* Barre supérieure */

  .barre-superieure {
    display: flex;
    justify-content: space-between;
    padding: 0px 30px;
    font-size: 1.2rem;
    background-color: transparent;
    position: relative;
    z-index: 10;
  }

  /* Right content */
  .right-content {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #fcb900;
    padding: 7px;
    border-radius: 20px;
    z-index: 1000; /* Positionne le .right-content au-dessus de tout */
    border: none; /* S'assure qu'il n'y a pas de bordure sous l'élément */
  }

  .right-content a {
    text-decoration: none;
    font-family: "Varela Round", sans-serif;
    font-weight: 600;
  }

  /* Assurer que le footer et parallax ne recouvrent pas les éléments */
  #parallax-balades,
  footer {
    z-index: 1; /* S'assure que les éléments parallax et footer sont derrière les éléments fixes */
  }

  /* Section h1 et vidéo */

  .section-video {
    display: block; /* Affiche la section */
    background-image: url("Images/Bannières/banniere_actualites.jpg"); /* Remplace par ton image */
    background-size: cover;
    background-position: center;
    height: 70vh;
  }

  .section-video video {
    display: none;
  }

  .section-video h1 {
    font-size: 6rem;
    color: #f0eff1;
  }

  .section-video span {
    font-size: 3rem; /* Réduire la taille du span */
  }

  /* Section présentation */

  .container-presentation {
    height: auto;
  }

  .container-presentation .box {
    width: 100%;
    padding: 0 10px;
  }

  .container-presentation .box-texte h2 {
    font-size: 20px;
  }

  .container-presentation .box p {
    font-size: 14px;
  }

  .container-presentation .box .image-round {
    width: 100px;
    height: 100px;
  }

  .carousel {
    width: 95vw;
    height: 30vh;
    border-radius: 10px;
  }

  .content {
    width: 80%;
    padding: 15px;
  }

  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .carousel-link {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .arrow {
    font-size: 18px;
    padding: 8px 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .infos-container {
    display: flex;
    flex-direction: column-reverse; /* Texte en premier, image en second */
    gap: 20px;
    padding: 0 15px;
  }

  .infos-pratiques h2 {
    font-size: 2rem;
    padding: 30px 10px 20px;
  }

  .conseils {
    max-width: 100%;
  }

  .conseils h3 {
    font-size: 1.5rem;
  }

  .conseils li {
    font-size: 1rem;
  }

  .calendrier img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* Styles pour les tablettes (600px à 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  /* Menu navigation et menu burger */

  .header-nav-menu {
    flex-direction: column;
    gap: 20px; /* Espacement vertical */
  }

  .header-burger {
    display: block; /* Le menu burger reste visible */
  }

  .header-menu-link a {
    font-size: clamp(1.5rem, 4vw, 3rem); /* Taille responsive adaptée */
  }

  .barre-superieure {
    display: none;
  }

  /* Section h1 et vidéo */

  .section-video {
    display: block; /* Affiche la section */
    background-image: url("Images/Bannières/banniere_actualites.jpg"); /* Remplace par ton image */
    background-size: cover;
    background-position: center;
    height: 70vh;
  }

  .section-video video {
    display: none;
  }

  .section-video h1 {
    font-size: 8rem;
    color: #f0eff1;
  }

  .section-video span {
    font-size: 3rem; /* Réduire la taille du span */
  }

  /* Section présentation */

  .container-presentation {
    justify-content: center;
    padding-top: 180px;
  }

  .container-presentation .box {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Ajuste la taille des images sur les petits écrans */
  .container-presentation .box .image-round {
    width: 120px;
    height: 120px;
  }
  
}

/* Styles pour les écrans de bureau (plus de 1024px) */
@media (min-width: 1025px) {
  /* Menu navigation et menu burger */

  nav.header-nav {
    display: flex; /* Toujours visible sur desktop */
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    transform: initial;
  }

  .header-nav-menu {
    flex-direction: row; /* Le menu s'aligne en ligne */
    gap: 30px; /* Espacement horizontal */
    align-items: center; /* Centrer horizontalement */
    justify-content: center; /* Centrer horizontalement */
    height: auto;
    margin-right: 40px; /* Décalage vers la gauche */
  }

  .header-burger {
    display: none; /* Cache le menu burger */
  }

  .header-nav-close {
    display: none; /* Cache l'icône de fermeture sur desktop */
  }

  .header-menu-link a {
    font-size: 1.2rem; /* Taille de police ajustée pour desktop */
    letter-spacing: 0.05rem;
  }

  .barre-superieure {
    display: none;
  }
}

/* Styles pour les écrans + 4k */
@media (min-width: 1921px) {
  /* Menu navigation et menu burger */

  nav.header-nav {
    display: flex; /* Toujours visible sur desktop */
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    transform: initial;
  }

  .header-nav-menu {
    flex-direction: row; /* Le menu s'aligne en ligne */
    gap: 30px; /* Espacement horizontal */
    align-items: center; /* Centrer horizontalement */
    justify-content: center; /* Centrer horizontalement */
    height: auto;
    margin-right: 40px; /* Décalage vers la gauche */
  }

  .header-burger {
    display: none; /* Cache le menu burger */
  }

  .header-nav-close {
    display: none; /* Cache l'icône de fermeture sur desktop */
  }

  .header-menu-link a {
    font-size: 1.2rem; /* Taille de police ajustée pour desktop */
    letter-spacing: 0.05rem;
  }

  .barre-superieure {
    display: none;
  }
}
