/*
 * css/plan-du-site.css — extracted from inline <style> blocks for CSP hardening.
 * Source: plan-du-site.html (1 block)
 * Auto-generated by _csp_extract_per_page_css.cjs — re-run after content edits.
 */
.sitemap-container {
            max-width: 1200px;
        }
        .sitemap-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }
        .sitemap-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        .sitemap-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        .sitemap-section {
            margin-bottom: 3rem;
        }
        .sitemap-section h2 {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
        }
        .sitemap-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .sitemap-link {
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--accent-color);
            border-left: 3px solid var(--accent-color);
        }
        .sitemap-link:hover {
            background: var(--bg-tertiary);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(198, 169, 98, 0.1);
        }
        .sitemap-link-title {
            display: block;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .sitemap-link-url {
            font-size: 0.85rem;
            color: var(--text-secondary);
            word-break: break-all;
        }
        @media (max-width: 768px) {
            .sitemap-header h1 {
                font-size: 2rem;
            }
            .sitemap-links {
                grid-template-columns: 1fr;
            }
            .sitemap-section h2 {
                font-size: 1.25rem;
            }
        }
