/* ==========================================================================
   MENTIONS.CSS : STYLE 'EDITORIAL PRESTIGE'
   ========================================================================== */

/* --- WRAPPER --- */
.legal-page-wrapper {
    padding-top: 300px; /* Grande respiration au-dessus du titre */
    padding-bottom: 150px;
    background-color: #fff;
}

/* --- TITRE PRINCIPAL --- */
.legal-header {
    text-align: center;
    margin-bottom: 120px;
}

.legal-main-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-text-main);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

/* Ornement doré fin */
.legal-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 30px auto 0;
}

/* --- GRILLE ÉDITORIALE --- */
.legal-grid {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.legal-row {
    display: flex;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    align-items: flex-start;
    transition: background-color 0.5s ease;
}

.legal-row:hover {
    background-color: #fdfbf7;
}

/* --- COLONNE GAUCHE (TITRES) --- */
.legal-label {
    flex: 0 0 30%;
    padding-right: 40px;
}

.legal-label span {
    font-family: var(--font-serif);
    font-style: italic; /* Style manuscrit élégant */
    font-size: 1.8rem;
    color: #888; /* Gris doux pour l'élégance */
    display: block;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* Survol : les titres s'illuminent légèrement */
.legal-row:hover .legal-label span {
    color: var(--color-accent);
    opacity: 0.8;
}

/* --- COLONNE DROITE (CONTENU) --- */
.legal-content {
    flex: 1;
}

.legal-text {
    font-family: var(--font-avenir);
    font-size: 1rem;
    line-height: 2; /* Lecture aérée */
    color: #4a4a4a;
    font-weight: 300;
}

/* Style spécifique pour les italiques dans le texte (noms propres) */
.legal-text i {
    font-style: italic;
    font-weight: 400; /* Légèrement plus de poids pour la lisibilité */
    color: #222;      /* Un peu plus foncé pour marquer l'entité */
}

/* --- LIENS (Auto-générés) --- */
.legal-link-gold {
    color: #4a4a4a;
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 154, 40, 0.4);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.legal-link-gold:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .legal-page-wrapper { padding-top: 180px; }
    
    .legal-main-title { font-size: 2.2rem; }

    .legal-row {
        flex-direction: column;
        padding: 40px 0;
    }

    .legal-label {
        flex: auto;
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .legal-label span { font-size: 1.6rem; }
    
    .legal-text { font-size: 0.95rem; }
}