/* ========================================
   MENTIONS LÉGALES — NeoClean
   ======================================== */

/* Variables */
:root {
    --neoclean-dark: #1d1d1f;
    --neoclean-gray: #6c757d;
    --neoclean-light: #f8f9fa;
    --neoclean-border: #dee2e6;
}

/* Page principale */
.legal-page {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Sections légales */
.legal-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }
.legal-section:nth-child(6) { animation-delay: 0.6s; }
.legal-section:nth-child(7) { animation-delay: 0.7s; }
.legal-section:nth-child(8) { animation-delay: 0.8s; }
.legal-section:nth-child(9) { animation-delay: 0.9s; }
.legal-section:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header de section */
.section-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--neoclean-border);
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neoclean-light);
    border-radius: 10px;
}

/* Contenu de section */
.section-content {
    transition: all 0.3s ease;
}

.section-content:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Liens dans le contenu */
.section-content a {
    color: var(--neoclean-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.section-content a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Listes */
.section-content ul {
    padding-left: 20px;
}

.section-content ul li {
    margin-bottom: 8px;
    color: var(--neoclean-gray);
}

/* Breadcrumb */
.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--neoclean-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--neoclean-dark);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--neoclean-dark);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--neoclean-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        margin-top: 70px;
    }
    
    h1 {
        font-size: 1.8rem !important;
    }
    
    .section-header h2 {
        font-size: 1.2rem !important;
    }
    
    .section-content {
        padding: 1.5rem !important;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-icon i {
        font-size: 1.2rem !important;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus states pour accessibilité */
a:focus,
button:focus {
    outline: 2px solid var(--neoclean-dark);
    outline-offset: 2px;
}

/* Impression */
@media print {
    .navbar,
    .footer,
    #cookie-banner,
    .floating-social-bar {
        display: none !important;
    }
    
    .legal-page {
        margin-top: 0;
        padding: 0;
    }
    
    .section-content {
        box-shadow: none;
        border: 1px solid var(--neoclean-border);
    }
}