*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Verdana, Arial, sans-serif;

    background-image:url("../images/Fond_vierge.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:fixed;

    color:#333;

    line-height:1.7;
}

.container{

    width:90%;
    max-width:1100px;

    margin:auto;
}

header{

    padding:60px 0 30px;
    text-align:center;
}

h1{

    font-size:3em;
    color:#1f5b2b;
    text-align:left;
    margin-bottom:5px;
}

.slogan{

    font-size:1.2em;
    text-align:left;
    margin-bottom:40px;
}

nav ul{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    list-style:none;
}

nav a{

    color:#1f5b2b;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

nav a:hover{

    color:#5ea84d;
}

.active{

    border-bottom:3px solid #5ea84d;
}

.presentation{

    width:90%;
    max-width:1000px;

    margin:50px auto;

    padding:40px;

    background:rgba(255,255,255,0.90);

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    overflow:auto;
}

.photo-droite{

    float:right;

    width:420px;

    margin:0 0 25px 35px;

    border-radius:12px;
}

.presentation p{

    text-align:justify;

    margin-bottom:20px;

    font-size:1.15em;

    line-height:1.8;
}

.mise-en-avant{

    text-align:center;

    font-weight:bold;

    color:#1d5f2d;

    font-size:1.25em;
}

.presentation p{

    margin-bottom:25px;

    text-align:justify;

    font-size:1.15em;
}

.presentation h2{

    color:#1f5b2b;

    font-size:2em;

    margin-bottom:20px;
}

.contact-block{

    text-align:center;

    margin:25px 0 30px;
}

.contact-link{

    display:inline-block;

    background:#1f5b2b;

    color:white;

    text-decoration:none;

    padding:12px 22px;

    border-radius:999px;

    font-weight:bold;
}

.prestations-list{

    display:grid;

    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));

    gap:20px;

    margin-top:20px;
}

.prestation-card{

    display:block;

    background:#f6f7f2;

    border:1px solid #dce8dc;

    border-radius:12px;

    padding:20px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    text-decoration:none;

    color:inherit;

    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.prestation-card:hover{

    transform:translateY(-4px);

    border-color:#5ea84d;

    box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

.prestation-card h3{

    color:#1f5b2b;

    margin-bottom:10px;
}

.contenu{

    display:flex;

    align-items:center;

    gap:40px;
}

.texte{

    flex:2;
}

.photo{

    flex:1.3;
    min-width:380px;

    text-align:center;
}

.photo img{

    width:100%;

    max-width:100%;

    border-radius:12px;
}

.mise-en-avant{

    text-align:center;

    font-weight:bold;

    color:#1f5b2b;

    font-size:1.25em;
}

footer{

    text-align:center;

    padding:40px;

    background:#1f5b2b;

    color:white;
}

footer a{

    color:white;

    text-decoration:none;
}

footer p{

    margin:10px 0;
}

.footer-icons{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:24px;

    flex-wrap:wrap;

    margin:20px auto;
}

.footer-icon{

    width:120px;

    max-width:100%;

    height:auto;

    border:0;
}

@media(max-width:768px){

    h1{

        font-size:2.2em;
    }

    .presentation{

        padding:25px;
    }

    nav ul{

        flex-direction:column;
    }

}
@media (max-width:768px){

    .photo-droite{

        float:none;

        display:block;

        width:90%;

        max-width:400px;

        margin:0 auto 25px auto;
    }

}

/* Footer email highlight */
.large-email{
    font-size:22px;
    font-weight:700;
    color:#cfeed6;
}