@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');



* {
    margin: 0;
    padding: 0;
}



body{
    overflow-x: hidden; /* Empêcher le défilement horizontal */
}

.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 {
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(2) 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: 0px;
height: 80px;
background: #0d5a34;
z-index: 960;
padding-inline: 20px;
box-sizing: border-box;
display: flex;
align-items: center;
}

.material-symbols-outlined{
    color: white;
    margin-top: 10px;
    font-size: 48px;
    
}




.ContaineMentionLegales{

margin-top: 130px;
text-align: center;



}

.Big-Title{
    margin-bottom: 40px;
    font-size: 80px;
}

.title{
    
    margin-bottom: 20px;
}

.text-container{
    margin-bottom:20px ;
}


.containerbottom {
    
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajustez selon le besoin */
    background-color: #0d5a34;
    width: 100%;
    position: relative; /* Utilisation de position relative pour bien placer les éléments */
    
}


.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: -110px;
    text-align: center;
    list-style: none;
   
   
}

.buttonmention:hover{
    color: #09632d;
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
}


.buttonmention{
    color: white;
    text-decoration: none;

}





@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: 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;
    }

    .wrapper .wrapper1,
    .wrapper .wrapper2 {


       
        font-size: 25px;
   }


}




@media (max-width: 500px) {

    .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(2) a {   
        
    color: green;
    
    }
    .wrapper .wrapper1,
    .wrapper .wrapper2 {

         margin-top: -40px;
         font-size: 20px;
         padding-bottom: 40px;

}
 
#bottom-arrow {
    display: block;
    margin: -5% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
    font-size: 2rem; /* Taille de l'icône */
 
}
}






  






@media (min-width: 811px) {
    .mobile-menu {
        display: none; /* Cacher le menu mobile */
    }

    .menu {
        display: block; /* Afficher le menu complet */
    }
}

@keyframes reveal {
   from {
    transform: scale(0);
    opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}