
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Oswald:wght@200..700&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;

}

* {
        margin: 0;
        padding: 0;
    }


    .contact-info {
        width:  100%;
        height: 3%;
        z-index: 999999;
        background-color: white; /* Couleur de fond blanche */
        padding: 10px 0; /* Espacement intérieur en haut et en bas */
        text-align: center; /* Centrer le texte */
        font-family: 'Playfair Display', serif; /* Utilisation de la même police que le reste */
        color: #0d5a34; /* Même couleur verte que le menu pour un aspect cohérent */
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Légère ombre pour séparer visuellement */
        position: fixed;
    }
    
    .contact-info p {
        margin: 0;
        font-size: 16px;
    }
    
    .menu {
        display: none; /* Cacher le menu par défaut */
        position: fixed;
        top: 0px; /* On abaisse le menu de 50px */
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #0d5a34;
        
    }

    
    
    .container, .menu, .menu-container, .diapo, .wrapper, .Presentationtext {
        max-width: 100%;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    

.menu.show-menu {
    display: block; /* Afficher le menu lorsque la classe 'show-menu' est ajoutée */
}

.menu-container {
        
    padding-bottom: 1%;
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Even spacing between logo and buttons */
    padding: 20px; /* Optional: Adjust padding if necessary */
    background-color: #0d5a34;

}

.logo {
    display: flex;
    width: 60px;
}

.logo img {
    width: 100%;
}

.logo img:hover {
    color: green;
}

.site-name {
    font-family: "playfair Display", sans-serif;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    margin-left: 0px;
    color: white;
}


.site-name,
.menu-listing a {
    text-decoration: none; /* Supprime le soulignement */


}

.site-name:hover {
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
    color: green;
}

.Consiergerie {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-style: normal;
}

.menu-listing {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.menu-listing li:nth-child(3) a {   
        
    color: green;
    
    }
.menu-listing a {
    font-family: "playfair Display", sans-serif;
    text-decoration: none;
    color: white;
    padding: 10px 50px;
}

.menu-listing a:hover {
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
    color: green;
}

.mobile-menu {
    width: 100%;
    position: sticky;
    top: 0;
    height: 80px;
    background: #0d5a34;
    z-index: 9999;
    padding-inline: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.material-symbols-outlined{
    color: white;
    margin-top: 10px;
    font-size: 48px;
}

.parallax {
    /* Utilisation de l'image pour le fond */
    background-image: url('1478274609975.jpg'); /* Assurez-vous que le chemin du fichier image est correct */

    /* Taille et positionnement de l'image */
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(60%); /* Ajuste la luminosité de l'image */
}

.contact-form {
    background: white;
    padding: 50px;
    max-width: 600px;
    margin: -100px auto 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10; /* Assure que le formulaire est au-dessus de l'image */
}

.contact-form h2 {
    font-family: 'Anton', sans-serif;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.contact-form p {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #0d5a34;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}




.contact-form button:hover {
    background-color: #333;
}



iframe {
    display: block; /* Pour que le margin auto fonctionne */
    width: 70%; /* Largeur de la carte */
    height: 450px; /* Hauteur de la carte */
    margin: 20px auto; /* Centre horizontalement avec un espace en haut et en bas */
    border: 0; /* Retire les bordures par défaut */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Ombre pour un effet de profondeur */
    border-radius: 8px; /* Ajoute des coins arrondis pour un meilleur design (optionnel) */
}

.consent-container {
    background-color: #f9f9f9;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.consent-container p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.consent-checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Aligne verticalement la case et le texte */
    
}

.consent-checkbox-container label {
    display: flex;
    align-items: center; /* Centre verticalement la case et le texte */
    font-size: 14px;

}

.consent-checkbox-container input[type="checkbox"] {
    margin-right: 8px; /* Espace entre la case à cocher et le texte */
}



.containerbottom {
    margin-top: 50px;
    display: flex;
    justify-content: center; /* This will center the buttons horizontally */
    align-items: center; /* This will center the buttons vertically */
    height: 50%; /* Make sure this is set if you want vertical centering */
    background-color: #0d5a34;
}


.containerbottom .button {
    display: inline-block;
    margin: 0 5px;
    height: 60px;
    width: 60px;
    background-color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: width 0.1s ease; /* Animation de transition pour l'élargissement */
    overflow: hidden; /* Masque tout ce qui dépasse les dimensions du bouton */
}

.containerbottom .button:hover {
    width: 200px; /* Largeur augmentée au survol */
}

.containerbottom .button .icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    border-radius: 50px;
    line-height: 60px;
    transition: color 0.1s ease; /* Transition douce pour la couleur */
}

.containerbottom .button .icon i {
    font-size: 25px;
    line-height: 60px;
}

.containerbottom .button span {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    margin-left: 10px;
    opacity: 0; /* Cache le texte au départ */
    transition: opacity 0.1s ease 0.1; /* Transition pour l'affichage du texte après l'agrandissement */
    white-space: nowrap; /* Empêche le texte de se casser sur plusieurs lignes */
}

.containerbottom .button:hover span {
    opacity: 1; /* Affiche le texte au survol */
}

.mentioncontainer{
    color: white;
    display: block;
    position:  relative;
    margin-top: -120px;
    text-align: center;
    list-style: none;
    text-decoration: none;
   
}

.buttonmention:hover{
    color: #09632d;
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
}


.buttonmention{
    color: white;
    text-decoration: none;

}


.cookie-banner {
    position: fixed; /* Fixe la bannière en bas de la fenêtre */
    bottom: 0;
    width: 100%;
    background-color: #333; /* Couleur de fond */
    color: white; /* Couleur du texte */
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Assure que la bannière reste au-dessus de tout autre élément */
    display: none; /* Cachée par défaut, jusqu'à ce qu'on la montre en JavaScript */
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
    font-family: 'Playfair Display', serif;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-banner button:hover {
    background-color: #ddd;
}

/* Calque sombre */
#darkOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Opacité à 50% */
    z-index: 999; /* Assure que le calque est au-dessus du contenu mais en dessous de la bannière */
    display: none; /* Caché par défaut */
}

/* Bannière de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000; /* Assure que la bannière est au-dessus du calque sombre */
    display: none;
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-banner button:hover {
    background-color: #ddd;
}

.whatsapp-wrapper {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  left: auto !important;
  z-index: 1000000 !important;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease; /* Animation fluide pour la transformation */
  overflow: hidden; /* Masque le contenu jusqu'à l'expansion */
  position: relative;
}

/* Ajoute ceci à la fin de ton CSS */
.whatsapp-button .chat-content {
    display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.whatsapp-button.expanded .chat-content {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s 0.5s; /* Décale l'apparition après l'expansion */
}
.whatsapp-button.expanded {
  width: 400px;
  height: 550px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-button > i.fab.fa-whatsapp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px;
  transition: opacity 0.3s, font-size 0.3s;
  z-index: 2;
  pointer-events: none;
}   
.whatsapp-button.expanded i.fab.fa-whatsapp {
  font-size:0px; /* Réduit la taille de l'icône quand la boîte s'ouvre */

  opacity: 0,7; /* Réduit l'opacité pour un effet de fond */
}

.chat-content {
  display: none; /* Masqué par défaut */
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px;
}
.chat-close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.chat-close-btn:hover {
  color: #25D366;
}
.whatsapp-button.expanded .chat-content {
  position: relative;
}

.whatsapp-button.expanded .chat-content {
  display: flex; /* Affiche le contenu quand .expanded est actif */
}
 .chat-header h3,
.whatsapp-open-btn {
  font-family: "Segoe UI", "San Francisco", "Roboto", Arial, sans-serif !important;
  letter-spacing: 0.01em;
}
.chat-header {
  background-color: #25D366;
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
}

.chat-header h3 {
  margin: 10px;
  font-size: 25px;
  text-align: center;  
  margin-right: 51% ; /* Ajustement pour centrer le titre */;
}

.chat-header p {
  margin: 5px 0 0;
  font-size: 12px;
}

.chat-body {
  padding: 10px;
  max-height: 300px;
  max-width: 300px;
  font-size: 17px;
  color: #000000; /* Texte noir comme dans l'image */
  background-color: #e5e5ea; /* Gris clair typique des messages WhatsApp reçus */
  flex-grow: 1;
  position: relative;
  border-radius: 10px; /* Bordures arrondies */
  margin: 5px 20px; /* Espacement vertical */
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-body::before {
  content: "";
  position: absolute;
  left: -10px; /* Position du triangle à gauche */
  bottom: 10px; /* Ajustement vertical */
  width: 0;
  height: 0;
  border-top: 5px solid transparent; /* Triangle */
  border-bottom: 5px solid transparent; /* Triangle */
  border-right: 10px solid #e5e5ea; /* Couleur du fond de la bulle */
  transform: translateY(-50%);
}

.chat-footer {
  padding: 5px;
  text-align: center;
}

.whatsapp-open-btn {
  display: inline-block;
  margin-left: 200px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 20px;    /* Hauteur réduite (10px), largeur augmentée (40px) */
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.whatsapp-open-btn i {
  font-size: 30px;
  color: white;
  margin-left: 10px;
}

.whatsapp-open-btn:hover {
  background-color: #1ebe57;
}

.icon-animated-comment path {
  stroke: #fff;
  stroke-width: 32;
  fill: none;
  stroke-dasharray: 1800; /* Longueur du path adaptée à ce SVG */
  stroke-dashoffset: 1800;
  animation: draw-comment 1s linear forwards, erase-comment 1s 1s linear forwards;
  animation-iteration-count: infinite;
}
 .Secteur-activite h2{
    margin-bottom: 100px;
    font-size: 50px;
    margin-top: 100px;
    text-align: center;
 }
/* Rectangle centré pour les secteurs */
.secteurs-rectangle {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.secteurs-grid {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    min-width: 320px;
    max-width: 500px;
}

.secteur-item {
    font-size: 1.15rem;
    font-weight: 500;
    color: #222;
    text-align: left;
    padding: 4px 0;
}

.secteur-activite-title {
    animation: reveal linear;
    animation-timeline: view();
    animation-range-start: cover 0%;
    animation-range-end: contain 50%;
    display: block;
}

.secteur-item::before{
    content: "• "; /* Ajoute un point avant chaque secteur */
    color: #0d5a34; /* Couleur du point */
    font-size: 1.5rem; /* Taille du point */
    margin-right: 10px; /* Espace entre le point et le texte */
    vertical-align: middle; /* Aligne le point avec le texte */
}
@keyframes draw-comment {
  from { stroke-dashoffset: 1800; }
  to   { stroke-dashoffset: 0; }
}

@keyframes erase-comment {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: 1800; }
}
@media (max-width: 600px) {
  .whatsapp-button.expanded {
    width: 250px;
    height: 180px;
  }
}
@keyframes fly-in-out {
    0% {
        transform: scale(0) translate3d(0, -1000px, 0);
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
    15%,
    85% {
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1) translate3d(0, 0, 0);
        background: transparent;
        box-shadow: none;
    }
    100% {
        color: rgba(255, 255, 255, 1); /* Maintenir la couleur à la fin */
        transform: scale(1) translate3d(0, 0, 0);
        background: transparent;
        box-shadow: none;
    }
}


@media (max-width: 500px) {


    .cookie-banner {
        margin-left: -10px;
     }
 

    .cookie-banner p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cookie-banner button {
        padding: 10px;
        font-size: 12px;
        width: 48%; /* Largeur pour occuper tout l'espace */
    }



    .Presentationtext {
        left: 0;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
    }

    /* Éléments centraux sans déborder */
    .menu-container, .menu-listing, .wrapper {
        width: 100%;
    }

    /* Ajustez également la taille de l'image dans les conteneurs */
    .concierge-image {
        width: 100%;
    }
  
   
   
    menu {
      
        display: none; /* Toujours cacher le menu par défaut, même en petit écran */
    }

    .menu.show-menu {
        display: block; /* Afficher le menu si show-menu est actif */
    }

    .menu-container {
        padding-top: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-listing {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu-listing li {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .menu-listing a {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .mobile-menu {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 9999;
        padding-inline: 20px;
        background: #0d5a34;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .menu-listing li:nth-child(3) a {   
        
        color: green;
        
        }

 
}


@media (max-width: 810px) {
    .menu {
        display: none; /* Cacher le menu complet en-dessous de 810px */
    }

    .menu.show-menu {
        display: block; /* Afficher le menu complet lorsqu'on ajoute la classe 'show-menu' */
    }

    .menu-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-listing {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu-listing li {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .menu-listing a {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .logo {
        width: 80px;
        margin-bottom: 20px;
    }
}

@media (min-width: 811px) {
    .mobile-menu {
        display: none; /* Cacher le menu mobile */
    }

    .menu {
        display: block; /* Afficher le menu complet */
    }
}

@media (max-width: 430px) {

.contact-info p {
    margin-left: 15px;
    font-size: 15px;
}

}

@media (max-width: 417px) {

    .contact-info p {
        margin-left: 15px;
        font-size: 13px;
    }


    
}
    


@media (max-width: 410px) {

    .contact-info p {
        margin-left: 15px;
        font-size: 13px;
    }


    



}


@keyframes reveal {
   from {
    transform: scale(0);
    opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1450px) {
    .Secondary-image {
        left: 70px;
    }


}

@media (max-width: 600px) {
  .whatsapp-button.expanded {
    width: 95vw !important;
    max-width: 99vw;
    height: 70vh !important;
    min-height: 320px;
    border-radius: 20px !important;
    right: -2vw  !important;
    left: auto !important;
    bottom: 10px !important;
  }


  .whatsapp-button .chat-content,
  .whatsapp-button.expanded .chat-content {
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    min-height: 0;
    padding: 0 !important;
    border-radius: 20px !important;
    font-size: 1em;
  }
  
  .chat-header h3 {
    font-size: 18px !important;
    margin-right: 0 !important;
  }
  .chat-body {
    max-width: 100% !important;
    font-size: 15px !important;
    margin: 5px 5px !important;
    padding: 8px !important;
  }
  .chat-footer {
    padding: 5px !important;
  }
  .whatsapp-open-btn {
    margin-left: 0 !important;
    width: 90% !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
  }
  .chat-close-btn {
    top: 8px !important;
    right: 10px !important;
    font-size: 1.5rem !important;
  }
  
}
