/* =========================================
   PAGES LÉGALES
========================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#f6f6f3;
    color:#161616;
}


/* ESPACE SOUS LA NAVBAR */

.legal-page{
    padding-top:88px;
}


/* EN-TÊTE */

.legal-hero{
    padding:75px 7%;
    text-align:center;

    background:
        linear-gradient(
            rgba(7,23,50,.94),
            rgba(7,23,50,.94)
        ),
        url(
            "https://res.cloudinary.com/dhmehfgjo/image/upload/v1783519638/Alpes.jpg"
        );

    background-position:center;
    background-size:cover;
    color:#fff;
}

.legal-eyebrow{
    margin:0 0 13px;

    font-family:"Poppins", sans-serif;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:3px;
    color:#c8b46e;
}

.legal-hero h1{
    margin:0 0 17px;

    font-family:"Poppins", sans-serif;
    font-size:clamp(2rem, 4vw, 3.6rem);
    line-height:1.1;
    font-weight:800;
}

.legal-hero > p:last-child{
    margin:0;

    font-family:"Poppins", sans-serif;
    font-size:.75rem;
    color:rgba(255,255,255,.7);
}


/* CONTENU */

.legal-container{
    width:min(920px, 88%);
    margin:0 auto;
    padding:70px 0 90px;
}

.legal-section{
    margin-bottom:55px;
}

.legal-section:last-child{
    margin-bottom:0;
}

.legal-section h2{
    position:relative;

    margin:0 0 22px;
    padding-bottom:13px;

    font-family:"Poppins", sans-serif;
    font-size:1.35rem;
    line-height:1.3;
    font-weight:750;
    color:#071732;
}

.legal-section h2::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:48px;
    height:3px;

    background:#c8b46e;
}

.legal-section p,
.legal-section li{
    font-family:"Poppins", sans-serif;
    font-size:.87rem;
    line-height:1.75;
    color:#3e3e3e;
}

.legal-section p{
    margin:0 0 16px;
}

.legal-section ul{
    margin:10px 0 22px;
    padding-left:22px;
}

.legal-section li{
    margin-bottom:8px;
}

.legal-section a{
    color:#071732;
    font-weight:650;
    text-decoration-color:#c8b46e;
    text-underline-offset:3px;
}


/* CARTES D’INFORMATIONS */

.legal-card{
    margin:25px 0;
    padding:24px 27px;

    border-left:4px solid #c8b46e;
    border-radius:5px;

    background:#fff;

    box-shadow:0 12px 35px rgba(7,23,50,.06);
}

.legal-card p{
    margin:0 0 8px;
}

.legal-card p:last-child{
    margin-bottom:0;
}


/* FOOTER */

.legal-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    padding:23px 6%;

    background:#071732;
    color:rgba(255,255,255,.72);

    font-family:"Poppins", sans-serif;
    font-size:.7rem;
}

.legal-footer p{
    margin:0;
}

.legal-footer div{
    display:flex;
    gap:25px;
}

.legal-footer a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.legal-footer a:hover{
    color:#c8b46e;
}


/* TABLETTE */

@media (max-width:1024px){

    .legal-page{
        padding-top:78px;
    }

    .legal-hero{
        padding:65px 6%;
    }

    .legal-container{
        width:min(850px, 88%);
    }

}


/* MOBILE */

@media (max-width:768px){

    .legal-page{
        padding-top:72px;
    }

    .legal-hero{
        padding:55px 22px;
    }

    .legal-hero h1{
        font-size:2rem;
    }

    .legal-container{
        width:auto;
        padding:50px 21px 65px;
    }

    .legal-section{
        margin-bottom:43px;
    }

    .legal-section h2{
        font-size:1.13rem;
    }

    .legal-section p,
    .legal-section li{
        font-size:.8rem;
        line-height:1.65;
    }

    .legal-card{
        padding:20px;
    }

    .legal-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .legal-footer div{
        flex-direction:column;
        gap:8px;
    }

}