@font-face {
  font-family: "Goodly";
  src: url("/assets/fonts/goodly/goodly-regular.woff2") format("woff2"),
    url("/assets/fonts/goodly/goodly-regular.woff") format("woff"),
    url("/assets/fonts/goodly/goodly-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Goodly", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-radius: 5px;
  color: #0032fa;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style de la modale */
.modal {
  display: none; /* Par défaut, la modale est cachée */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fond sombre */
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 80%;
  max-width: 500px;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Navbar principale */
.navbar {
  background-color: #333;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo */
.navbar .logo img {
  width: 40px;
  height: 40px;
}

/* Icône du menu (hamburger) */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon .bar {
  width: 30px;
  height: 3px;
  background-color: white;
}

/* Menu */
.menu {
  display: flex;
  gap: 15px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
}

.menu a:hover {
  background-color: #ddd;
  color: black;
  border-radius: 5px;
}

/* Responsive */
@media screen and (max-width: 1100px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    padding: 10px 0;
  }

  .menu.active {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#accueil {
  position: relative;
  background-image: url("assets/images/2.webp");
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  padding: 10% 5%;
  height: 80vh;
  min-height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  background-attachment: fixed;
}

#accueil .section-overlay {
  padding: 10%;
  border-radius: 10px;
  max-width: 80%;
  width: 100%;
  text-align: center;
}

#accueil h2 {
  font-size: 3vw;
  margin-bottom: 20px;
}

#accueil p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #2c5067;
  margin-bottom: 20px;
}

#accueil .btn-reservation {
  padding: 1em 2em;
  font-size: 1.2em;
  background-color: #4572d1;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 60%;
  width: auto;
  margin: 0 auto;
  display: block;
  text-align: center;
  word-wrap: break-word;
  line-height: 1.2;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  #accueil {
    height: 80vh;
    min-height: 350px;
    padding: 10% 5%;
    background-size: cover;
  }

  #accueil h2 {
    font-size: 5vw;
  }

  .btn-reservation {
    padding: 1em 2em;
    font-size: 1em;
  }
}

@media screen and (max-width: 800px) {
  #accueil {
    height: 70vh;
    min-height: 300px;
    padding: 20% 5%;
    background-size: cover;
    background-attachment: inherit;
  }

  #accueil h2 {
    font-size: 6vw;
  }

  .btn-reservation {
    font-size: 0.9em;
    max-width: 70%;
    width: auto;
    padding: 0.6em 1em;
  }
}

@media screen and (max-width: 480px) {
  #accueil {
    height: 60vh;
    min-height: 250px;
    padding: 25% 5%;
    background-size: cover;
    background-attachment: inherit;
  }

  #accueil h2 {
    font-size: 7vw;
  }

  #accueil p {
    font-size: 5vw;
  }

  .btn-reservation {
    font-size: 0.8em;
    max-width: 60%;
    width: 100%;
    padding: 0.5em 0.8em;
    margin: 0 auto;
    display: block;
    text-align: center;
    line-height: 1.2;
  }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Section Carte */
#carte-section {
  padding: 60px 20px;
  background-color: #eef5ff;
  text-align: center;
  border-top: 5px solid #007bff;
  border-bottom: 5px solid #007bff;
}

.carte-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
}

/* Titre de la section carte */
.carte-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #004085;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
}

.carte-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.carte-description {
  font-size: 1.2rem;
  color: #0056b3;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.6;
}
.custom-carrousel {
  position: relative;
  width: 100%;
  max-width: 1600px;
  min-height: 40vh;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
}
.custom-image img:hover {
  transform: scale(1.1);
}
/* Container des slides */
.custom-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

/* Chaque slide */
.custom-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image dans chaque slide */
.custom-image img {
  max-width: 80%; /* Limite la largeur à 80% du conteneur */
  max-height: 100vh; /* Limite la hauteur à 60% de la hauteur de l'écran */
  object-fit: contain; /* Garde les proportions sans rogner l'image */
  border-radius: 12px;
}

/* Boutons de navigation */
.custom-next,
.custom-prev {
  background: rgba(0, 0, 0, 0.3); /* Fond semi-transparent */
  border: none;
  color: white; /* Couleur des flèches */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; /* Taille des flèches ajustée */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.6; /* Boutons légèrement transparents */
  transition: opacity 0.3s ease, background 0.3s ease;
}

.custom-next:hover,
.custom-prev:hover {
  opacity: 1; /* Plus visibles au survol */
  background: rgba(0, 0, 0, 0.5);
}

.custom-next {
  right: 10px; /* Position à droite */
}

.custom-prev {
  left: 10px; /* Position à gauche */
}

/* Responsivité : Ajustements pour les tablettes */
@media screen and (max-width: 1024px) {
  .custom-image img {
    max-width: 90%; /* Réduit encore un peu les dimensions */
    max-height: 50vh;
  }
}

/* Responsivité : Ajustements pour les petits écrans */
@media screen and (max-width: 800px) {
  .custom-image img {
    max-width: 100%; /* L'image prend toute la largeur */
    max-height: 40vh; /* Plus petite hauteur pour les petits écrans */
  }
  .custom-next,
  .custom-prev {
    font-size: 1rem; /* Taille réduite pour les flèches */
    width: 30px;
    height: 30px;
  }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Style pour la section Habit de Lumière avec image de fond */
#habit-de-lumiere {
  position: relative;
  background-image: url("assets/images/fond\ noir\ et\ bleu\ .webp");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0px;
  flex-direction: column;
  overflow: hidden;
}

/* Style pour le titre */
.habit-titre {
  color: white;

  font-size: 2.5em;
  margin-bottom: 30px;
  z-index: 10;
  position: relative;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Overlay pour rendre le texte lisible */
#habit-de-lumiere .section-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
  width: 90%;
  text-align: center;
  z-index: 5;
}

/* Style du formulaire de réservation */
.habit-de-lumiere-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Style du bouton de billetterie Weezevent */
.weezevent-widget-integration {
  background-color: #0032fa;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.weezevent-widget-integration:hover {
  background-color: #001a75;
}

#widget_container {
  width: 100%;
}
.small-text {
  font-size: 0.5em;
  color: #777; /* Pour un texte gris clair */
}

/* Responsivité pour les tablettes */
@media screen and (max-width: 1024px) {
  #habit-de-lumiere {
    height: auto; /* Hauteur ajustée */
    padding: 80px 20px;
  }

  .habit-titre {
    font-size: 2.2em; /* Taille du titre réduite */
    margin-bottom: 20px;
  }

  .section-overlay {
    padding: 30px;
  }

  .weezevent-widget-integration {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* Responsivité pour les petits écrans (moins de 780px) */
@media screen and (max-width: 780px) {
  #habit-de-lumiere {
    flex-direction: column;
    padding: 60px 20px;
    background-image: none;
    background-color: #000;
    width: 100%;
    margin: 0;
  }

  .habit-titre {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .section-overlay {
    padding: 20px;
  }

  .weezevent-widget-integration {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  #widget_container {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
/* Responsivité pour les très petits écrans (moins de 400px) */
@media screen and (max-width: 400px) {
  .weezevent-widget-integration {
    font-size: 12px;
    padding: 10px 15px;
    width: 100%; /* Prend toute la largeur disponible */
    max-width: 100%; /* Empêche toute restriction de largeur */
    box-sizing: border-box;
    margin: 0 auto;
    transform: scale(0.9);
    transform-origin: top left;
  }

  #widget_container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  /* Réduire le texte du titre si nécessaire */
  .habit-titre {
    font-size: 1.5em;
  }

  /* Si nécessaire, ajuster le contenu de la section */
  .section-overlay {
    padding: 10px;
  }
}

/* Responsivité pour les petits écrans (moins de 600px) */
@media screen and (max-width: 600px) {
  .weezevent-widget-integration {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%; /* Prend toute la largeur disponible */
    max-width: 100%; /* Empêche toute restriction de largeur */
    box-sizing: border-box;
  }

  #widget_container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Ajuster les autres éléments si nécessaire */
  .habit-titre {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .section-overlay {
    padding: 20px;
  }
}

/* Conteneur principal de la promotion */
.promotion-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenu de la promotion */
.promotion-content {
  background-color: #fff; /* Fond blanc */
  color: #333; /* Texte sombre pour un bon contraste sur fond blanc */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin: 0;
}

/* Image de la promotion */
.promotion-image {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px 10 10 10px;
  margin-right: 20px;
  margin-left: 0;
}

/* Texte de la promotion */
.promotion-text {
  color: #333; /* Texte sombre pour un contraste élevé */
}

.promotion-text h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #2a2a2a; /* Titre en gris foncé pour un meilleur contraste */
}

.promotion-text p {
  font-size: 1.5em;
  margin: 0;
  color: #555; /* Texte des paragraphes légèrement plus clair */
}

.promotion-text strong {
  font-size: 1.5em;
  color: #b07d21; /* Couleur dorée légèrement plus foncée pour un meilleur contraste */
}

/* Titre "Offre Spéciale" en doré */
.Offre {
  color: #b07d21; /* Couleur dorée foncée */
  font-size: 3em;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */

/* Pour les petits écrans (mobiles) */
@media screen and (max-width: 600px) {
  .promotion-content {
    flex-direction: column;
    padding: 15px;
    width: 95%;
    max-width: none;
  }

  .promotion-image {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .promotion-text h2 {
    font-size: 2em;
  }

  .promotion-text p {
    font-size: 1.2em;
  }

  .promotion-text strong {
    font-size: 1.2em;
  }

  .Offre {
    font-size: 2.5em;
  }
}

/* Pour les tablettes (écrans moyens) */
@media screen and (max-width: 900px) {
  .promotion-content {
    flex-direction: column;
    padding: 20px;
    width: 90%;
  }

  .promotion-image {
    width: 250px;
    margin-right: 15px;
  }

  .promotion-text h2 {
    font-size: 2.2em;
  }

  .promotion-text p {
    font-size: 1.4em;
  }

  .promotion-text strong {
    font-size: 1.4em;
  }

  .Offre {
    font-size: 2.8em;
  }
}

/* Pour les grands écrans (bureau) */
@media screen and (min-width: 1200px) {
  .promotion-content {
    padding: 20px;
    width: 80%;
    flex-direction: column;
  }

  .promotion-image {
    width: 300px;
  }

  .promotion-text h2 {
    font-size: 2.5em;
  }

  .promotion-text p {
    font-size: 1.5em;
  }

  .promotion-text strong {
    font-size: 1.5em;
  }

  .Offre {
    font-size: 3em;
  }
}
/* Responsivité pour les très petits écrans (moins de 335px) */
@media screen and (max-width: 470px) {
  .weezevent-widget-integration {
    font-size: 12px;
    padding: 10px 15px;
    width: 100%; /* Prend toute la largeur disponible */
    max-width: none; /* Aucune restriction de largeur */
    margin: 0 auto;
    transform: scale(0.9);
    transform-origin: top left;
    position: relative;
    left: -50%; /* Sort de son conteneur */
  }

  #widget_container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  /* Réduire le texte du titre si nécessaire */
  .habit-titre {
    font-size: 1.5em;
  }

  /* Si nécessaire, ajuster le contenu de la section */
  .section-overlay {
    padding: 10px;
  }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Section des horaires */
#horaires {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Titre des horaires */
#horaires h2 {
  color: #1e3a8a;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Conteneur des horaires */
.horaires-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 10px;
}

/* Item des horaires */
.horaires-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

.horaires-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Titre du jour */
.horaires-item .jour {
  font-size: 22px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 10px;
}

/* Horaire */
.horaires-item .horaire {
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styles spécifiques */
.horaires-item.fermé {
  background-color: #f8d7da; /* Rouge clair pour "Fermé" */
  color: #721c24;
}

/* Happy Hour */
.horaires-item.happy-hour {
  background-color: #fff3cd; /* Jaune pâle pour Happy Hour */
  color: #856404;
}

/* Contact Info */
.contact-info {
  margin-top: 20px;
  font-size: 18px;
  color: #1e3a8a;
}

.contact-info a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.phone-icon {
  color: #1e3a8a;
  font-size: 20px;
  margin-right: 5px;
}

/* Responsive - petits écrans */
@media (max-width: 600px) {
  #horaires h2 {
    font-size: 24px;
  }

  .horaires-item .jour {
    font-size: 18px;
  }

  .horaires-item .horaire {
    font-size: 16px;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style général de la section paiement */
#paiement {
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

#paiement h2 {
  color: #0032fa; /* Bleu pour le titre */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Style de la liste de paiements */
.payment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.payment-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  flex-direction: column;
  margin-bottom: 20px;
}

.payment-list i {
  font-size: 40px;
  color: #888;
  margin-bottom: 10px;
}

.payment-list span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Responsivité : Ajustement pour différentes tailles d'écran */

/* Tablettes (moins de 1024px) */
@media screen and (max-width: 1024px) {
  .payment-list li {
    width: 150px;
  }
}

/* Mobiles (moins de 800px) */
@media screen and (max-width: 800px) {
  .payment-list li {
    width: 120px;
  }
}

/* Très petits écrans (moins de 480px) */
@media screen and (max-width: 480px) {
  #paiement {
    padding: 20px;
  }

  .payment-list {
    gap: 20px;
  }

  .payment-list li {
    width: 100px;
    margin-bottom: 15px;
  }

  .payment-list i {
    font-size: 30px;
  }

  .payment-list span {
    font-size: 14px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style général de la section des services */
.mod-website-services {
  padding: 40px 20px;
  text-align: center; /* Centrer le titre */
  border-radius: 10px;
  width: 100%;
}
.mod-website-services h2 .title,
.mod-website-services h2 .subtitle {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Style de la liste des services */
.services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.services-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  padding-top: 20px;
}

.services-list i {
  font-size: 40px;
  color: #0032fa;
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #888;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  flex-shrink: 0;
}

.services-list span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  flex-grow: 1;
  text-align: center;
  margin-top: 10px;
  word-wrap: break-word;
  max-height: 60px;
  overflow: hidden;
}

.services-list i:hover {
  background-color: #0032fa;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .services-list li {
    width: 150px;
    height: auto;
  }

  .services-list i {
    font-size: 35px;
    width: 50px;
    height: 50px;
  }

  .services-list span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .services-list li {
    width: 100px;
    height: auto;
  }

  .services-list i {
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .services-list span {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Style pour la section de contacts */
.mod-website-contacts {
  padding: 60px 20px;
  background-color: black;
  color: white;
}

.mod-website-contacts h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff; /* Texte principal en blanc pour une bonne visibilité */
}

.mod-website-contacts .divider-mark {
  width: 80px;
  height: 5px;
  background-color: #3498db; /* Bleu plus vif pour améliorer le contraste */
  margin: 0 auto 40px;
}

.mod-website-contacts .contact-block-holder {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-block {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  width: 30%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-block i {
  font-size: 30px;
  color: #333; /* Utilisation d'un gris foncé pour les icônes, contraste avec le fond blanc */
  margin-bottom: 8px;
}

.contact-block h3 {
  font-size: 1.4em;
  color: #333; /* Titre en gris foncé pour plus de lisibilité */
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 0.9em;
  color: #555; /* Texte légèrement plus clair mais encore contrasté */
  line-height: 1.4;
  margin-bottom: 10px;
}

.contact-block a {
  color: #1a73e8; /* Couleur bleu plus sombre pour les liens */
  text-decoration: none;
  font-size: 0.9em;
  display: block;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: #616161; /* Couleur du lien au survol, avec un contraste plus marqué */
}

@media screen and (max-width: 768px) {
  .mod-website-contacts h2 {
    font-size: 1.8em;
  }

  .contact-block-holder {
    flex-direction: column;
    align-items: center;
  }

  .contact-block {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-block a {
    font-size: 0.8em;
  }

  .contact-block p {
    font-size: 0.8em;
  }

  .contact-block h3 {
    font-size: 1.2em;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Section "Réservation" */
#reservation {
  margin: 0 auto;
  padding: 50px 20px;
  background-color: transparent;
  background-image: url("assets/images/PICORETTES GEORGES TEST.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  height: 75vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-button {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  background-color: #0052cc;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cta-button:hover {
  background-color: #0066ff;
  transform: translateY(-2px);
}

.cta-button:active {
  background-color: #0047b3;
  transform: translateY(1px);
}

/* Fenêtre modale */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Overlay pour flouter l'arrière-plan */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Contenu de la fenêtre modale */
.modal-content {
  position: relative;
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Bouton de fermeture (croix rouge) */
.close {
  color: red;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: darkred;
  text-decoration: none;
}

/* Formulaire */
.form-group {
  margin-bottom: 20px;
}

input,
select,
button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  box-sizing: border-box;
  font-size: 16px;
}

/* Message de confirmation */
#confirmationMessage {
  text-align: center;
  font-size: 18px;
  display: none;
}

#confirmationMessage h2 {
  margin-bottom: 20px;
}

/* Texte de warning */
.warning-text {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Pour les écrans de 768px ou moins (tablettes et petits écrans) */
@media (max-width: 768px) {
  #reservation {
    padding: 40px 15px;
    background-image: url("assets/images/PICORETTES GEORGES TEST-medium.webp");
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group button {
    font-size: 14px;
  }

  #confirmationMessage h2 {
    font-size: 16px;
  }
}

/* Pour les écrans de 480px ou moins (smartphones) */
@media (max-width: 480px) {
  .cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group button {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
  background-color: black;
  color: white;
  padding: 20px;

  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Liens sociaux */
.social-links {
  margin-top: 10px;
}

.social-icon {
  margin: 0 15px;
  font-size: 24px;
  color: #00bfff;
  text-decoration: none;
}

.social-icon:hover {
  color: #1e90ff;
}

/* Instagram et Facebook */
.instagram-icon {
  color: #e4405f;
}

.facebook-icon {
  color: #1877f2;
}

/* Ajout de l'icône en utilisant FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*--------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style du bandeau cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

/* Style du texte dans le bandeau */
.cookie-banner p {
  margin: 0;
  padding-right: 20px;
  flex-grow: 1;
  font-size: 0.9rem;
}

/* Style du lien dans le bandeau */
.cookie-banner a {
  color: #1e90ff;
  text-decoration: underline;
}

/* Style des boutons */
.cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;

  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

/* Effet au survol des boutons */
.cta-button:hover {
  background-color: #0056b3;
}

/* Masquer le bandeau si l'utilisateur a accepté les cookies */
.cookie-banner.hide {
  display: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style de base pour le conteneur de la carte */
#map {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

/* Iframe de Google Maps */
#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive : Tablette (768px à 1024px) */
@media (max-width: 1024px) {
  #map {
    height: 300px;
  }
}

/* Responsive : Mobile (moins de 768px) */
@media (max-width: 768px) {
  #map {
    height: 250px;
  }
}

/* Optionnel : Responsive pour les très petits écrans (moins de 480px) */
@media (max-width: 480px) {
  #map {
    height: 200px;
  }
}
/* Affichage de base de la modale d'erreur */
#reservationModal,
#errorModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Modale Mentions Légales */
.modal-legal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content-legal {
  background-color: #f4f4f9;
  padding: 20px;
  margin: 10% auto;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  color: #333;
  cursor: pointer;
}

/* Modifier l'apparence des liens dans la modale */
.modal-content-legal a {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.modal-content-legal a:hover {
  text-decoration: underline;
}

.close-legal {
  color: #007bff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.cta-button-legal {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.cta-button-legal:hover {
  background-color: #0056b3;
}

/* Ajouter des lignes grises entre chaque paragraphe */
.modal-content-legal p {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-content-legal p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Modale Protection des Données */
.modal-privacy {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-privacy {
  background-color: #f4f4f9;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  max-height: 80%;
  overflow-y: auto;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
}

.close-privacy {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
}

.close-privacy:hover,
.close-privacy:focus {
  color: #0056b3;
}

.privacy-text {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  background-color: #f9f9f9;
  margin-top: 20px;
  border-radius: 5px;
}

.privacy-content p {
  margin: 10px 0;
}

/* Modifier l'apparence des liens dans la modale */
.modal-content-privacy a {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.modal-content-privacy a:hover {
  text-decoration: underline;
}

.cta-button-privacy {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  display: block;
  margin: 20px auto;
  border-radius: 5px;
}

.cta-button-privacy:hover {
  background-color: #0056b3;
}
/* Style pour le slider (switch) */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  border-radius: 50%;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Modale Clear Storage */
.modal-clear-storage {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 60px;
}

/* Contenu de la modale Clear Storage */
.modal-content-clear-storage {
  background-color: #f4f4f9;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  color: #333;
  cursor: pointer;
  border: 1px solid #ddd;
}

/* Titre de la modale */
.modal-content-clear-storage h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #007bff;
}

/* Texte de la modale */
.modal-content-clear-storage p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

/* Cacher le style du switch et du slider */
.switch,
.switch-text,
.switch-label,
.slider {
  display: none;
}

/* Les boutons sont maintenant toujours visibles */
.buttons-clear-storage {
  display: block;
  margin-top: 20px;
}

/* Boutons (Confirmer / Annuler) */
.cta-button-clear-storage {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.cta-button-clear-storage:hover {
  background-color: #0056b3;
}

/* Positionnement de la croix de fermeture */
.close-clear-storage {
  color: #007bff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close-clear-storage:hover {
  color: #0056b3;
}
/*-----------------------*/
/* Style commun pour les liens */
.modal-link {
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

/* Séparation par une barre verticale */
.modal-link:not(:last-child) {
  border-right: 2px solid #ccc;
  margin-right: 20px;
}

/* Effet de survol */
.modal-link:hover {
  background-color: blue;
}

/* Style pour les liens déjà cliqués ou activés (facultatif) */
.modal-link:active {
  background-color: blue;
}
/* Responsive - Tablette (jusqu'à 768px) */
@media (max-width: 768px) {
  .modal-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* Empile les liens verticalement */
  .modal-link {
    display: block;
    margin-bottom: 10px;
  }

  /* Enlever la barre verticale entre les liens */
  .modal-link:not(:last-child) {
    border-right: none;
  }
}

/* Responsive - Mobile (jusqu'à 480px) */
@media (max-width: 480px) {
  .modal-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Empile les liens avec plus d'espace */
  .modal-link {
    margin-bottom: 15px;
  }

  /* Ajuster la couleur de survol pour mieux s'adapter aux petits écrans */
  .modal-link:hover {
    background-color: #0056b3;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: center;
  border-radius: 10px;
}

.close {
  float: right;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: #0056b3;
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Container du carrousel */
.nouveau-carrousel-container {
  text-align: center;
  margin: 40px auto;
  width: 90%;
  max-width: 1200px;
}

/* Carrousel container */
.nouveau-carrousel {
  position: relative;
  overflow: hidden;
}

/* Slide container */
.nouveau-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Chaque slide */
.nouveau-slide {
  display: flex;
  min-width: 100%;
  box-sizing: border-box;
}

/* Contenu de chaque slide (image + texte) */
.nouveau-slide-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center; /* Centrer le contenu */
}

/* Style de l'image */
.nouveau-image {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.nouveau-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Style du texte */
.nouveau-text {
  flex: 1;
  padding: 30px;
  font-size: 1.4rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 10px;
  height: 100%;
}

.nouveau-text p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

/* Cacher les flèches */
.nouveau-prev,
.nouveau-next {
  display: none; /* Cache les flèches */
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .nouveau-carrousel-container {
    width: 85%;
  }

  .nouveau-text p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 992px) {
  .nouveau-text {
    padding: 20px;
  }

  .nouveau-text p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .nouveau-carrousel-container {
    width: 90%;
  }

  .nouveau-slide-content {
    flex-direction: column;
  }

  .nouveau-image img {
    width: 100%;
    height: auto;
  }

  .nouveau-text {
    padding: 15px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .nouveau-text {
    font-size: 1rem;
    padding: 10px;
  }

  .nouveau-text p {
    font-size: 1.2rem;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------------*/
.privatisation-section {
  background-color: #f0f8ff;
  padding: 80px 40px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  margin: 50px auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.privatisation-section h3 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;

  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.privatisation-section ul {
  list-style-type: none;
  padding: 0;
  font-size: 1.1rem;
  color: #1e3d58;
  line-height: 1.8;
  margin-bottom: 40px;
}

.privatisation-section ul li {
  margin-bottom: 10px;
}

.privatisation-section ul li strong {
  color: #005bb5;
}

.privatisation-section ul li:first-child {
  margin-top: 20px;
}

.privatisation-section .form-group {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .privatisation-section h3 {
    font-size: 1.8rem;
  }

  .privatisation-section ul li {
    font-size: 1rem;
  }

  .privatisation-section ul li strong {
    font-weight: 600;
  }
}

@media screen and (max-width: 470px) {
  .privatisation-section h3 {
    font-size: 1.6rem;
  }

  .privatisation-section ul li {
    font-size: 0.95rem;
  }
}

.privatisation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 91, 181, 0.1)
  );
  z-index: -1;
  opacity: 0.5;
}

.privatisation-section h2 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 30px;

  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.privatisation-section p {
  font-size: 1.3rem;
  color: #1e3d58;
  margin-bottom: 40px;

  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #003366;
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #a3c9f1;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  color: #003366;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0073e6;
  box-shadow: 0 0 8px rgba(0, 115, 230, 0.5);
  outline: none;
}

button[type="submit"] {
  background-color: #005bb5;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;

  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:hover {
  background-color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

button[type="submit"]:active {
  background-color: #003366;
  transform: translateY(0);
}

.form-group:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .privatisation-section {
    padding: 60px 20px;
  }

  .privatisation-section h2 {
    font-size: 2.2rem;
  }

  .privatisation-section p {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
  }

  button[type="submit"] {
    padding: 12px 25px;
  }
}

.content-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 25px;
  background-color: #f0f8ff;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e8f0;
}

.content-container h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.content-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c5067;
  margin-bottom: 20px;
}

.content-container p span {
  color: #3c8dbc;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-container {
    padding: 20px;
  }

  .content-container h1 {
    font-size: 2.5rem;
  }

  .content-container p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 470px) {
  .privatisation-section {
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
}
/*------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Style pour le titre de Happy Hour */
.happy-hour-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  background-color: #cbd9f3;
  border-radius: 5px;
  border: 2px solid #007bff;
}

.happy-hour-title span {
  font-style: italic;
}

.happy-hour-info {
  display: block;
  font-size: 1.2em;
  color: #ff5722;
  margin-top: 10px;
  font-weight: normal;
}
