/* Importation de la police Poppins pour un rendu moderne */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Style global */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff8e1; /* couleur pastel claire */
    color: #333;
    line-height: 1.7;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

/* Header et navigation */
header {
    background-color: #b3cde0; /* bleu pastel */
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffd1dc; /* rose pastel au survol */
}

/* Bannière */
.banner {
    background: linear-gradient(135deg, #ffe6f0, #fff8e1);
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 20px;
}

.banner h1 {
    font-size: 36px;
    color: #6d8aa0; /* bleu-gris doux */
    margin-bottom: 15px;
}

.banner p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Cartes intro et quiz */
.intro-card, .quiz-card {
    background-color: #fff3e6; /* orange pastel très clair */
    border-radius: 20px;
    padding: 25px;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Titres */
h2 {
    font-size: 28px;
    color: #6d8aa0;
    margin: 30px 0;
    text-align: center;
}

h3 {
    font-size: 24px;
    color: #ffb6b9; /* rose pastel doux */
    margin-bottom: 15px;
}

/* Cartes de contenu */
.card {
    max-width: 900px;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    padding: 25px;
    align-items: center;
    gap: 25px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.card-img {
    width: 180px;
    height: 180px;
    border-radius: 50%; /* images rondes */
    object-fit: cover;
    border: 4px solid #ffb6b9; /* contour pastel */
}

.text-content {
    flex: 1;
}

/* Boutons */
button {
    background-color: #ffb6b9;
    color: white;
    font-size: 16px;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff8a95; /* rose plus intense au survol */
}

/* Résultat du quiz */
.result {
    text-align: center;
    font-size: 20px;
    color: #6d8aa0;
    margin-top: 20px;
}

/* Section des liens supplémentaires */
.links-card {
    max-width: 900px;
    margin: 30px auto;
    background-color: #e0f7fa; /* bleu pastel clair */
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.links-card ul {
    list-style: none;
    padding: 0;
}

.links-card li {
    margin: 10px 0;
}

.links-card a {
    color: #6d8aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.links-card a:hover {
    color: #ff8a95; /* rose pastel */
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }
    .card-img {
        margin-bottom: 20px;
    }
}