/**
 * Fichier: css/privacy.css
 * Ajouté le: 2026-01-21 06:23:36
 */

/* Styles pour la page de Politique de confidentialité */

/* Hero Section */
.privacy-hero {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-date {
    font-size: 16px;
    opacity: 0.8;
}

/* Table des matières */
.privacy-toc-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.privacy-toc {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.privacy-toc h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 40px;
}

.privacy-toc li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.privacy-toc a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-toc a:hover {
    color: var(--primary-color);
}

/* Contenu de la politique */
.privacy-content-section {
    padding: 60px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.privacy-intro {
    margin-bottom: 40px;
    color: #444;
    line-height: 1.6;
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px; /* Pour le smooth scroll */
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.privacy-section h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #444;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .privacy-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-toc ul {
        columns: 1;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
    }
    
    .privacy-section h3 {
        font-size: 17px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .privacy-hero {
        padding: 40px 0;
    }
    
    .privacy-toc-section, .privacy-content-section {
        padding: 30px 0;
    }
    
    .privacy-content {
        padding: 20px 15px;
    }
}