/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@media only screen and (max-width: 575px) {
.feature-1 .feature-content {
flex:1;
}
}

/*responsive grid*/

.row-fluid-wrapper {
    overflow-x: hidden;
  }


/* image HP css   */

@tailwind base;
@tailwind components;
@tailwind utilities;

.wrapper {
  width: 530px;
  height: 480px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 75px auto;
}

.image {
  width: 530px;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s;
}

.image:hover img {
  transform: scale(1.1);
}

.content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.6s;
}

.content:hover {
  opacity: 1;
}

.content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  transform: translateY(25px);
  transition: transform 0.6s;
}

.content p {
  font-size: 21px;
  font-weight: bold;
  transform: translateY(25px);
  transition: transform 0.6s;
}

.content:hover h2,
.content:hover p {
  transform: translateY(0);
}

.content a {
  text-decoration: none;
  color: #ffffff;
}

/* Version Mobile */
@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 30px auto;
  }

  .image {
    width: 100%;
    height: 350px;
    margin: 0 auto;
  }

  .content {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
  }

  .content h2 {
    font-size: 32px;
    transform: translateY(0);
  }

  .content p {
    font-size: 18px;
    transform: translateY(0);
  }
}







/* ✅ Header transparent au départ */
.header.sticky-header.section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.4s ease-in-out;
  z-index: 1000; /* Toujours au-dessus */
  padding: 15px 30px;
}

/* ✅ Rendre le menu du header visible et interactif */
.header.sticky-header.section .menu {
  position: relative;
  z-index: 1001; /* Plus haut que le slider */
}

/* ✅ Header devient visible avec la bonne couleur au scroll */
.header.sticky-header.section.scrolled {
  background-color: #9ba27b;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Assure que le slider passe sous le menu mais garde les liens actifs */
.row-fluid-wrapper.row-depth-1.row-number-3.dnd_area-row-1-padding.dnd-section {
  position: relative;
  z-index: 999; /* Juste sous le menu du header */
}

@media screen and (max-width: 768px) {
  /* ✅ Ajuste la position du texte dans le slider */
  .hero-slide-1-content {
    margin-top: 60px !important; /* Décale le texte vers le bas */
  }

  /* ✅ Ajuste le bouton pour suivre le texte */
  .hero-slide-1-button {
    margin-top: 15px !important; /* Espace sous le texte */
  }
}









/* ✅ Structure du wrapper */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px; /* Ajustable selon le design souhaité */
  margin: auto; /* Centre le wrapper */
}

/* ✅ ESPACE AU-DESSUS DES IMAGES SUR DESKTOP */
@media screen and (min-width: 769px) {
  .wrapper {
    margin-top: 40px !important; /* Ajoute un espace au-dessus */
  }
}

/* ✅ ESPACE SOUS LES IMAGES SUR MOBILE */
@media screen and (max-width: 768px) {
  .wrapper {
    margin-bottom: 30px !important; /* Rétablit l’espace entre les images */
  }
}

/* ✅ Conteneur image */
.image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden; /* Empêche tout débordement */
}

/* ✅ Image : garder proportions */
.image img {
  width: 100% !important;
  height: auto !important;
  max-height: 400px;
  object-fit: cover !important;
  transition: transform 0.3s ease-in-out;
}

/* ✅ Effet hover uniquement sur desktop */
@media screen and (min-width: 769px) {
  .image:hover img {
    transform: scale(1.1);
  }

  .image:hover .content {
    opacity: 1;
  }
}

/* ✅ Contenu du hover */
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
}

/* ✅ Rendre les liens simples et sans effet "bouton" */
.content a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: inherit !important; /* Garde la taille originale */
  font-weight: inherit !important; /* Garde l'épaisseur originale */
  background: none !important; /* Supprime le fond */
  padding: 0 !important; /* Supprime le padding inutile */
  border-radius: 0 !important; /* Supprime les coins arrondis */
  display: inline !important; /* Garde le lien en mode texte */
}

/* ✅ SUR MOBILE : rendre les liens visibles */
@media screen and (max-width: 768px) {
  .content {
    opacity: 1 !important; /* Toujours visible */
    position: absolute; /* Recouvre bien l’image */
    background: rgba(0, 0, 0, 0.3); /* Léger fond sombre */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}










/*Ajustement logo sur version mobile*/

@media screen and (max-width: 768px) {
  .header-logo img {
    width: 150px !important; /* Largeur réduite pour mobile */
    height: auto !important; /* Garde les proportions */
  }
}

/* Fin d'ajustement logo sur mobile*/



/* Cacher le CTA Réservation header */

a.btn.btn-radius.btn-dark-hover.btn-sm {
  display: none !important;

}

  /* Fin de Cacher le CTA Réservation header */

/* Cacher le VILAIN TITRE app réseau sociaux*/

.eapps-instagram-feed-header-user-info-name {
  display: none !important;
}

/* ✅ Cacher le lien Elfsight */

a[href*="elfsight.com/instagram-feed-instashow"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* ✅ Cacher la croix rouge */
div[title="Remove Elfsight logo"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* Fin de Cacher le VILAIN TITRE app réseau sociaux*/









/* Affiche correctement le formulaire contact sur mobile*/

/* ✅ Assure que le conteneur reste bien centré et responsive */
.contact-info-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centre tous les éléments */
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* ✅ Structure des éléments individuels */
.single-contact-info-wrap {
  display: flex;
  align-items: center;
  justify-content: center; /* Centre le contenu */
  gap: 15px;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* ✅ Icônes */
.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: #9ba27b;
}

/* ✅ Texte */
.info-content {
  flex: 1;
  max-width: 100%;
  text-align: center; /* Assure que le texte est bien centré */
  word-wrap: break-word; /* Coupe proprement les longues lignes */
  overflow-wrap: break-word;
}

/* ✅ Ajustement des tailles de police */
.info-content h4 {
  font-size: 17px; /* Taille parfaite sur desktop */
}

.info-content p {
  font-size: 15px; /* Taille parfaite sur desktop */
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
}

/* ✅ Adresse : Ajout d’un retour à la ligne si trop longue */
.info-content p span.address {
  display: block; /* Force un retour à la ligne */
  white-space: normal; /* Permet le retour à la ligne automatique */
}

/* ✅ Adresse e-mail : Forcer le retour à la ligne sur Desktop et Mobile */
.info-content p span.email {
  display: block !important; /* Assure qu'il se comporte comme les autres */
  white-space: normal !important; /* Autorise le retour à la ligne */
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  text-align: center !important;
}

/* ✅ SUR MOBILE : Appliquer la même structure */
@media screen and (max-width: 768px) {
  .contact-info-wrap {
    flex-direction: column;
    align-items: center;
  }

  .single-contact-info-wrap {
    width: 90%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .info-content {
    max-width: 90%;
  }

  .info-content h4 {
    font-size: 15px; /* Réduction légère sur mobile */
  }

  .info-content p {
    font-size: 14px; /* Réduction légère sur mobile */
    line-height: 1.4;
  }

/* ✅ Assure que le conteneur ne déborde pas */
.contact-info-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 90%; /* Permet de s’adapter aux petits écrans */
  margin: auto;
  padding: 20px;
  overflow: hidden; /* Empêche le débordement */
}

/* ✅ Structure des éléments individuels */
.single-contact-info-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 100%; /* Évite que le texte dépasse */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ✅ Icônes */
.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px; /* Empêche les icônes de rapetisser */
  height: 50px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: #9ba27b;
}

/* ✅ Texte */
.info-content {
  flex: 1;
  max-width: 100%;
  overflow: hidden; /* Empêche tout débordement */
  text-align: left; /* Alignement correct */
}

.info-content h4 {
  font-size: 18px;
  margin: 0 0 5px;
  white-space: normal; /* Permet le retour à la ligne */
}

.info-content p {
  font-size: 16px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* ✅ SUR MOBILE : Adapter la mise en page et la taille du texte */
@media screen and (max-width: 768px) {
  .contact-info-wrap {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%; /* Prend toute la largeur disponible */
  }

  .single-contact-info-wrap {
    width: 90%;
    max-width: 100%;
    flex-direction: column; /* Passe en colonne */
    align-items: center;
    text-align: center; /* Centre le texte */
  }

  .info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px; /* Espace entre l’icône et le texte */
  }

  .info-content {
    text-align: center;
    max-width: 90%;
  }

  .info-content h4 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 14px;
    line-height: 1.4; /* Améliore la lisibilité */
    word-break: break-word; /* Coupe les mots longs */
  }
}


/* Fin Affiche correctement le formulaire contact sur mobile*/