/* --- Mobile first (par défaut) --- */

/* Titre principal de la page */
.titre {
    margin-bottom: 5%;
    font-size: clamp(1rem, 2.5vw, 2rem);
    white-space: normal;  /* autorise retour à la ligne */
    max-width: 250px;     /* limite la largeur */
    margin-left: auto;    /* centre horizontalement */
    margin-right: auto;
    width: 100%;
}

/* Sections principales */
.mentions-legales-section {
    background-color: #F3E1CF; /* ton beige pour sections */
    border: 1px solid black;
    padding: 15px 20px;
    margin-bottom: 6%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

/* Titres des sections */
.mentions-legales-section h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #35322F;
}

/* Paragraphes */
.mentions-legales-section p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 0.8em;
}

/* Listes à puces */
.mentions-legales-section ul {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-left: 1.5em;
    margin-bottom: 0.8em;
}

/* Liens */
.mentions-legales-section a {
    color: #35322F;
    text-decoration: underline;
    transition: color 0.3s;
}

.mentions-legales-section a:hover {
    color: #555148; /* un ton légèrement plus clair au survol */
}

/* Texte du date */
.mentions-legales-section time {
    font-weight: 500;
}

/* --- Tablettes et plus larges --- */
@media screen and (min-width: 768px) {
    .titre {
        max-width: 500px;
    }

    .mentions-legales-section {
        padding: 25px 30px;
    }
}
