/*
    Projet  : Start-Elite
    Fichier : assets/css/mentions-legales.css
    Page    : MENTIONS LÉGALES &amp; POLITIQUE DE CONFIDENTIALITÉ - START-ELITE
*/

*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #ffb648;
            --gold-light: #ffd089;

            /* Palette contenu clair */
            --c-dark: #1a2235;
            --c-body: #374151;
            --c-muted: #6b7a99;
            --c-accent: #b87513;
            --c-bg: #f0f4f8;
            --c-white: #ffffff;
            --c-border: rgba(0,0,0,0.08);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--c-dark);
            background: var(--c-bg);
            overflow-x: hidden;
        }

        
    /* Fil d'Ariane (breadcrumb) : indique la position dans le site */
        .breadcrumb {
            background: var(--c-white);
            border-bottom: 1px solid var(--c-border);
            padding: 14px 0;
        }

        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--c-muted);
        }

        .breadcrumb-content a {
            color: var(--c-accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb-content a:hover { color: var(--gold); }

        
        /* === CONTENU PRINCIPAL === */

        .main-content {
            max-width: 1400px;
            margin: 70px auto;
            padding: 0 30px;
        }

        .page-title {
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(38px, 5vw, 64px);
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--c-dark);
            margin-bottom: 50px;
            line-height: 1.2;
        }

        /* LEGAL CONTENT */
        .legal-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--c-dark);
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--c-accent);
        }

        .legal-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--c-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .legal-content p {
            color: var(--c-body);
            margin-bottom: 15px;
            text-align: justify;
        }

        .legal-content strong { color: var(--c-dark); font-weight: 600; }

        .legal-content ul {
            margin: 15px 0;
            padding-left: 30px;
        }

        .legal-content li {
            color: var(--c-body);
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .legal-content a {
            color: var(--c-accent);
            text-decoration: none;
        }

        .legal-content a:hover { text-decoration: underline; }

        /* Boîte définitions */
        .definitions-box {
            background: var(--c-bg);
            padding: 25px;
            border-radius: 3px;
            margin: 30px 0;
            border-left: 4px solid var(--c-accent);
        }

        .definitions-box p {
            margin-bottom: 12px;
            text-align: justify;
            color: var(--c-body);
        }

        /* Boîte propriétaire */
        .owner-box {
            background: var(--c-white);
            border: 2px solid var(--c-border);
            padding: 25px;
            border-radius: 3px;
            margin: 25px 0;
        }

        .owner-box p {
            margin-bottom: 8px;
            color: var(--c-body);
        }

        /* Bouton "Afficher les informations" propriétaire */
        #btn-owner {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border: 2px solid var(--c-dark);
            color: var(--c-dark);
            border-radius: 3px;
            cursor: pointer;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            user-select: none;
            background: transparent;
            transition: all 0.3s;
            margin-bottom: 10px;
        }

        #btn-owner:hover {
            background: rgba(26,34,53,0.06);
            border-color: var(--c-accent);
            color: var(--c-accent);
        }

        #owner-info-content {
            display: none;
            color: var(--c-body);
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 8px;
        }

        
    /* Bouton retour en haut de page (apparaît après 300px de scroll) */
        #scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: #1a1530;
            width: 46px;
            height: 46px;
            border-radius: 3px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,182,72,0.4);
            z-index: 999;
            transition: all 0.3s;
        }
        #scroll-top-btn.visible,
        #scroll-top-btn.show { display: flex; }
        #scroll-top-btn:hover { background: var(--gold-light); transform: translateY(-3px); }

        
        /* === RESPONSIVE — MEDIA QUERIES · ≤ 968px : tablet · ≤ 768px : mobile paysage === */

        @media (max-width: 968px) {
            .legal-content h2 { font-size: 20px; }
            .legal-content p  { text-align: left; }
            .definitions-box p { text-align: left; }
        }

        @media (max-width: 768px) {
            .main-content { padding: 0 15px; margin: 40px auto; }
        }
