/*
Theme Name: Prépa Examen Civique
Theme URI: https://prepa-examen-civique.fr
Description: Thème professionnel pour la préparation aux examens civiques CSP et CR
Version: 1.0.0
Author: Prépa Examen Civique
Author URI: https://prepa-examen-civique.fr
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prepa-examen-civique
Tags: education, quiz, civic-exam
*/

/* Variables CSS */
:root {
    --bleu-marine: #1E3A5F;
    --bleu-france: #000091;
    --rouge: #E1000F;
    --vert: #00A64F;
    --creme: #F5F0E8;
}

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

body {
    font-family: 'Marianne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #161616;
    background: #F6F6F6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: #E8E8E8;
    border-bottom: 3px solid var(--bleu-france);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #0d2847 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bleu-france);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background: #000074;
    transform: translateY(-2px);
}
