p {
    margin: 0;
    padding: 0;
    line-height: 40px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
}


.les-fees-du-buron {
    font-family: "Dancing Script";
    font-size: 28px;
}


/*Navabar*/



.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}



.navbarcapucine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    /* padding horizontal */
    height: 80px;
    /* hauteur fixe */
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
    /* important pour inclure le padding dans la largeur */
}

.navbarboutons {
    list-style: none;
    display: flex;
    /* les li sont en ligne */
    gap: 20px;
    /* espace entre les boutons */
    margin: 0;
    padding: 0;
}

.navbarboutons li a {
    text-decoration: none;
    transition: color 0.3s;
    color: black;
}

.navbarboutons li a.dropbuttonchambre {
    text-decoration: underline;
    text-decoration-color: black;
    font-weight: 500;
    text-decoration-thickness: 1px;
    /* épaisseur du trait */
    text-underline-offset: 15px;
    /* <-- c’est ça qui déplace le soulignement */
    transition: color 0.3s;
}

.dropdown-content {
    display: none;
    /* caché par défaut */
    flex-direction: column;
    padding-left: 20px;
    gap: 10px;
}

.dropdown-content.show {
    display: flex;
}


.navbarboutons li a:hover {
    color: #96d8f4;
    /* léger effet au survol */
}


.navbarboutons li a.active {
    font-weight: 600;
    /* plus gras */
    text-decoration: none;
    /* pas de soulignement */
}







h2 {
    font-family: "Dancing Script";
    font-size: 4rem;
    text-align: center;
    margin-top: 80px;
}

/* Images maisone et Shadow*/
.maison-shadow {
    display: flex;
    gap: 10px;
}

.maison-shadow img {
    max-width: 50%;
}


/* Pourquoi ce nom ?*/

h3 {
    font-size: 2rem;
}

.nom {
    margin-top: 60px;
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 60px;

}


/* Maison.  */

.maison {
    display: flex;
    margin-top: 60px;
    margin-bottom: 120px;
    margin-left: 80px;
}

.maison img {
    max-width: 50%;
}



.lamaison {
    margin-top: 30px;
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 60px;
}

/* Jardin  */

.jardin {
    display: flex;
    justify-content: space-between;
    /* espace égal entre les colonnes */
    align-items: center;
    /* centre verticalement le contenu */
    width: 100%;
    margin-bottom: 130px;
}

.jardin img {
    max-width: 30%;
}

.text-jardin {
    text-align: center;
    margin: 50px;
}

.valee {
    background-image: url('Images/valee.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* footer */
.footer {
    background-color: black;
    color: white;

}

.footer-items {
    display: flex;
    flex-direction: column;
    /* Empile les éléments verticalement */
    gap: 10px;

}

.items-contact {
    display: flex;
    align-items: center;
    /* Aligne icône et texte sur la même ligne */
    gap: 10px;
    /* Espace entre icône et texte */

}

.footer {
    background-color: black;
    color: white;
    padding: 40px 60px;
    /* 20px vertical, 60px horizontal */

}

.footer h4 {
    margin-bottom: 40px;
    text-align: start;
    font-size: 2rem;
}

/* Conteneur principal du footer : deux colonnes */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* <-- alignement en haut */
    gap: 50px;
    flex-wrap: wrap;
    /* pour mobile */
}


/* Colonne gauche */
.footer-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}



.footer-items li img {
    filter: invert(1);
    width: 20px;
    /* ajuster selon taille icône */
    height: 20px;
}

/* Colonne droite */
.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info img {
    filter: invert(1);
    width: 20px;
    height: 20px;
}



/* Desktop uniquement */
@media (min-width: 769px) {

    /* Dropdown parent */
    .dropdown {
        position: relative;
        /* référence pour le positionnement absolu du sous-menu */
    }

    /* Sous-menu */
    .dropdown-content {
        display: none;
        /* caché par défaut */
        position: absolute;
        /* sort du flux normal */
        top: 100%;
        /* juste en dessous du bouton */
        left: 0;
        background-color: white;
        padding: 10px;
        min-width: 200px;
        /* largeur minimale */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 100;
        /* devant tout le reste */
    }

    .dropdown-content.show {
        display: block;
        /* affichage quand on clique */
    }

    .dropdown-content a {
        display: block;
        padding: 5px 10px;
        color: black;
        text-decoration: none;
    }

    .dropdown-content a:hover {
        background-color: #f0f0f0;
    }


    .navbarboutons,
    .navbarboutons ul,
    .navbarboutons li {
        list-style: none;
        margin: 10px;
        padding: 0;
    }
}



/* Sur mobile */
@media (max-width: 768px) {

    /* Bouton hamburger */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Menu mobile */
    .navbarboutons {
        display: none;
        /* caché par défaut */
        flex-direction: column;
        gap: 15px;
        /* espacement entre les liens */
        background-color: #fff;
        position: absolute;
        top: 60px;
        /* juste sous la navbar */
        right: 20px;
        padding: 10px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 100;

        /* aligne les li à droite dans le menu */

    }

    /* Afficher quand le menu est actif */
    .navbarboutons.show {
        display: flex;
    }

    /* Chaque lien avec un petit trait de séparation */
    .navbarboutons li {
        border-bottom: 1px solid #ccc;
        /* trait fin */
        padding: 10px 0;
        /* espace autour du texte */
    }

    .navbarboutons li:last-child {
        border-bottom: none;
        /* pas de trait après le dernier lien */
    }

    /* Texte des liens */
    .navbarboutons li a {
        text-decoration: none;
        /* pas de soulignement */
        font-weight: 400;
        /* poids normal par défaut */
        font-size: 18px;
        /* texte plus lisible */
        color: black;
        transition: color 0.3s;
    }

    /* Lien actif */
    .navbarboutons li a.active {
        font-weight: 700;
        /* plus gras */
        text-decoration: none;
        /* pas de soulignement */
    }



    .nom {
        margin-top: 60px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 60px;
    }

    .maison-shadow {
        flex-direction: column;
        width: auto;
    }


    .maison-shadow img {
        max-width: 100%;
        height: auto;
    }



    .maison {
        flex-direction: column;
        margin: 0;
        /* supprime toutes les marges */
        padding: 0 20px;
        /* ajoute un peu de padding horizontal */
        width: 100%;
        /* prend toute la largeur */
        box-sizing: border-box;
        /* inclut le padding dans la largeur */
    }

    .maison img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .lamaison {
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }

    .text-maison {
        .maison img {
            max-width: 100%;
        }
    }

    .text-maison {
        margin-top: 60px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 60px;
    }








    .jardin {
        flex-direction: column;
        width: auto;
        margin-bottom: 0px;

    }


    .jardin img {
        max-width: 100%;
        height: auto;
    }

    .text-jardin {
        margin: 20px;
        text-align: start;
    }




}