@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 {
    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(4) 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;
}

.ImagePresentation {
position: relative; /* Assure le positionnement de l'image */
display: block;
width: 100%;
height: auto;
display: inline-block;
z-index: 5; /* Z-index inférieur à celui du nav */
transition: transform 0.3s ease-in-out;
margin-top: 0px; /* Ajustez selon vos besoins */
filter: brightness(60%); /*Assombrir l'image*/
}




.wrapper {
    position: absolute; /* Permet le positionnement indépendant */
    top: 150px; /* Ajustez cette valeur pour le positionnement désiré de wrapper */
    left: 50%;
    transform: translateX(-50%); /* Centre horizontalement */
    z-index: 10;
    font-size: 0px;
    width: 100%;
    text-align: center;
}

.wrapper .wrapper1,
.wrapper .wrapper2 {
    display: block; /* Chaque titre occupe une ligne complète */
    margin-bottom: 20px; /* Espacement entre les deux titres */
    color: white;
    font-size: 40px; /* Taille du texte augmentée */
    line-height: 1.2; /* Hauteur de ligne ajustée */
    text-transform: uppercase; /* Conversion du texte en majuscules */
    text-align: center; /* Centrer le texte horizontalement */
}

.wrapper1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8%;
}

.wrapper2 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
}

.wrapper1, .wrapper2 {
    opacity: 0; /* Début en invisible */
    animation: slideDown 1s ease forwards;
}

.wrapper1 {
    animation-delay: 0.5s; /* Début de l'animation avec un petit délai */
}

.wrapper2 {
    animation-delay: 1s; /* Début de l'animation un peu plus tard */
}




#bottom-arrow {
    display: block;
    margin: 12% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
    font-size: 2rem; /* Taille de l'icône */
    color: white; /* Couleur de l'icône */
    animation: bounce 2s infinite; /* Animation pour attirer l'attention */
}

/* Ajout d'une animation pour l'arrivée de l'image depuis la gauche */
.presentation-image {
    width: 40%;
    border-radius: 50%;
    opacity: 0; /* Invisible au départ */
    border: 8px solid #0d5a34; /* Bordure verte de 5px */
    transform: translateX(-100%); /* Hors écran à gauche */
    transition: transform 1s ease, opacity 1s ease; /* Animation douce */
}

/* Classe qui déclenche l'animation */
.presentation-image.show {
    opacity: 1;
    transform: translateX(0); /* Retourne à sa position normale */
}

.presentation-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    padding: 20px;
}

.presentation-content {
    flex: 1;
    margin-left: 20px;
    padding-bottom: 20px;
}
.presentation-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px; /* Ajoute un espacement sous "Marika" */
}

.presentation-content h3 {
    font-size: 24px;
    margin-bottom: 15px; /* Ajoute un espacement sous "Fondatrice de Gabi Conciergerie" */
}

.presentation-content p {
    font-size: 18px;
    margin-bottom: 20px; /* Ajoute un espacement sous "Échangez vos clefs contre de la tranquillité !" */
}


.green-button {
    margin-top: 30px;
    background-color: #0d5a34; /* Couleur verte du bouton */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.green-button:hover {
    background-color: #09632d; /* Couleur plus foncée au survol */
}

.containerbottom {
    width: 100%;
    height: 20%;
    background-color: #0d5a34;
    position: absolute;
    bottom: -200%;


}


.containerbottom {
    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{
    margin-top: 250px;
    margin-left: -160px;
   text-decoration: none;

}

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

.buttonmention{
    color: black;
}


.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;
}



@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 {


        margin-top: 10px;
        font-size: 25px;
   }


}


@media (max-width: 950px) {

    .wrapper .wrapper1,
    .wrapper .wrapper2 {


        margin-top: 50px;
        font-size: 30px;
   }


}

@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 */
    }


    .wrapper .wrapper1,
    .wrapper .wrapper2 {

        margin-top: -30px;
         font-size: 20px;
         padding-bottom: 30px;

}

#bottom-arrow {
    display: block;
    margin: 0% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
    font-size: 2rem; /* Taille de l'icône */
 
}





}

@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(4) a {   
        
    color: green;
    
    }
 
}

@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;
    }

    .wrapper .wrapper1,
    .wrapper .wrapper2 {

         margin-top: -60px;
         font-size: 15px;
         padding-bottom: 40px;

}
    
}
    


@media (max-width: 410px) {

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


    



}





@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);
    }
}
