/* Styles dédiés pour la page Mentions Légales - Neim */

.legal-section {
    min-height: 100vh;
    background: var(--black);
    padding: 140px 48px 80px 48px;
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 800px;
    width: 100%;
}

.legal-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--violet-l);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--violet-l);
}

.legal-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 200;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.legal-title em {
    font-style: italic;
    color: var(--violet-l);
}

.legal-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 48px;
}

.legal-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(247, 246, 243, 0.65);
    font-weight: 300;
}

.legal-text strong {
    color: var(--white);
    font-weight: 500;
}

.legal-link {
    color: var(--violet-l);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-link:hover {
    opacity: 0.7;
}

.legal-meta {
    font-size: 12px;
    color: rgba(247, 246, 243, 0.3);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    margin-top: -16px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-list li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(247, 246, 243, 0.65);
    font-weight: 300;
    padding-left: 18px;
    position: relative;
}

.legal-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--violet-l);
    font-size: 9px;
    top: 5px;
}

.legal-list li strong {
    color: var(--white);
    font-weight: 500;
}

.legal-footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 48px;
    display: flex;
    justify-content: center;
}

.legal-footer-copy {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(247, 246, 243, 0.3);
    text-transform: uppercase;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-footer-copy a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer-copy a:hover {
    color: var(--white);
}

/* Hover style pour le lien dans le footer inline */
.contact-bottom-copy a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-bottom-copy a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 24px 60px 24px;
    }

    .legal-footer {
        padding: 20px 24px;
    }
}
