/* ========================================
   STYLES PAGES LÉGALES - Ora Shel Torah
   ======================================== */

/* Reset et base */
body.legal-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #faf9f6 0%, #f5f0e8 100%);
    min-height: 100vh;
    color: #2d2d2d;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Container principal - resserré */
.legal-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* Lien retour site (en haut, PAS de logo) */
.back-to-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #eda234;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: 2px solid #eda234;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-to-site:hover {
    background: #eda234;
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(237, 162, 52, 0.3);
}

/* Titre principal */
.legal-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 3px solid #eda234;
    padding-bottom: 15px;
    line-height: 1.3;
}

/* Date de mise à jour */
.legal-date {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

/* Titres de section (h2) */
.legal-container h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #eda234;
    padding-left: 15px;
}

/* Sous-titres (h3) */
.legal-container h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Paragraphes */
.legal-container p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}

/* Emphase */
.legal-container em {
    color: #666;
    font-style: italic;
}

/* Liens */
.legal-container a {
    color: #eda234;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-container a:hover {
    color: #d89520;
    border-bottom-color: #d89520;
}

/* Listes */
.legal-container ul,
.legal-container ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-container li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
}

/* Bouton retour en haut */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #eda234;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(237, 162, 52, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border: none;
    cursor: pointer;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(237, 162, 52, 0.6);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px 50px;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-container h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }
    
    .legal-container h3 {
        font-size: 1.1rem;
    }
    
    .legal-container p,
    .legal-container li {
        text-align: left;
        font-size: 0.9rem;
    }
    
    .back-to-site {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

