/* ==========================================
   RACBYSHOP - PAGES LÉGALES UNIQUEMENT
   Fichier: legal-pages.css
   ========================================== */

/* Fond noir */
body.page-legal {
    background: #000000 !important;
}

body.page-legal .site-content {
    background: #000000 !important;
}

/* Container */
body.page-legal .entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #000000 !important;
}

/* H1 */
body.page-legal article h1,
body.page-legal .entry-title {
    color: #D4AF37 !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #D4AF37;
}

/* H2 */
body.page-legal article h2 {
    color: white !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

body.page-legal article h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #D4AF37;
}

/* H3 */
body.page-legal article h3 {
    color: #D4AF37 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-top: 35px !important;
    margin-bottom: 20px !important;
}

/* Paragraphes */
body.page-legal article p {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.8 !important;
    font-size: 1.05rem !important;
    margin-bottom: 20px !important;
}

/* Liens */
body.page-legal article a:not(.button) {
    color: #D4AF37 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

body.page-legal article a:not(.button):hover {
    color: #F4D03F !important;
}

/* Listes */
body.page-legal article ul,
body.page-legal article ol {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.8 !important;
    margin-left: 30px !important;
    margin-bottom: 25px !important;
}

body.page-legal article ul li,
body.page-legal article ol li {
    margin-bottom: 12px !important;
}

body.page-legal article ul li::marker {
    color: #D4AF37 !important;
}

/* Strong */
body.page-legal article strong {
    color: white !important;
    font-weight: 700 !important;
}

/* Em */
body.page-legal article em {
    color: rgba(255,255,255,0.6) !important;
    font-style: italic;
}

/* HR */
body.page-legal article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 50px 0 !important;
}

/* Boutons */
body.page-legal article .button,
body.page-legal article a.button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000 !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 20px;
}

body.page-legal article .button:hover,
body.page-legal article a.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    body.page-legal .entry-content {
        padding: 40px 20px;
    }
    
    body.page-legal article h1,
    body.page-legal .entry-title {
        font-size: 2rem !important;
    }
    
    body.page-legal article h2 {
        font-size: 1.5rem !important;
    }
    
    body.page-legal article h3 {
        font-size: 1.2rem !important;
    }
}