/* legal.css - Styles pour Mentions Légales & Politique */

.legal-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 2;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #ccc;
    text-align: left; /* Important : Texte aligné à gauche pour la lisibilité */
}

/* Titre principal */
.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-align: center; /* Seul le titre reste centré */
}

.legal-content .subtitle, 
.legal-content .last-update {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
    font-style: italic;
    font-size: 0.9rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #9b30ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Blocs de texte */
.legal-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.legal-block h2 {
    color: #9b30ff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(155, 48, 255, 0.2);
    padding-bottom: 10px;
}

.legal-block p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-block ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-block ul li::before {
    content: "•";
    color: #9b30ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-block strong {
    color: #fff;
}

/* Liens dans le texte */
.legal-block a {
    color: #9b30ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.legal-block a:hover {
    border-bottom-color: #9b30ff;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content h1 { font-size: 2.2rem; }
    .legal-block { padding: 20px; }
}