/* ============================================
   STYLES POUR PAGES LÉGALES SIMPLES
   (privacy-policy.html, legal-notice.html)
   Structure : body > header > main > footer
   ============================================ */

/* Style de base pour toutes les pages légales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
}

/* Header principal */
header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ff9a00;
}

header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Lien retour */
header a {
    display: inline-block;
    color: #666;
    text-decoration: none;
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s;
}

header a:hover {
    background: #ff9a00;
    color: white;
}

/* Contenu principal */
main {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Titres dans main */
main h3 {
    color: #2c3e50;
    border-left: 4px solid #ff9a00;
    padding-left: 15px;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Paragraphes */
main p {
    margin-bottom: 15px;
}

/* Listes */
main ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

main li {
    margin-bottom: 8px;
    position: relative;
}

main li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Avertissements spéciaux */
main h3 + p strong {
    color: #e74c3c;
}

/* Footer de la page */
footer {
    background-color: #0c2461;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #ff9a00;
}

/* Responsive */
@media (max-width: 768px) {

    main {
        padding: 20px;
        margin: 10px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    main h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   STYLES POUR LE FOOTER DE VOTRE SITE PRINCIPAL
   (À ajouter à votre fichier styles.css principal)
   ============================================ */

/* Style pour le footer sur index.html */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 25px 0;
    text-align: center;
    margin-top: 50px;
}

.site-footer p {
    margin: 10px 0;
}

.site-footer a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #ff9a00;
}

/* Pour séparer les liens avec des barres verticales */
.footer-links a:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #95a5a6;
}