/* Couleurs et typographie de base pour AMANA */
:root {
    --couleur-principale: #5C4033; /* Marron terre / Sépia foncé */
    --couleur-secondaire: #C19A6B; /* Sépia clair chaleureux */
    --couleur-fond: #FAFAFA; /* Blanc cassé très propre et respectueux */
    --couleur-texte: #333333; /* Gris très foncé pour la lisibilité */
    --couleur-accent: #8B0000; /* Rouge bordeaux pour souligner l'urgence */
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--couleur-fond);
    color: var(--couleur-texte);
    line-height: 1.6;
}

/* En-tête (Header) */
header {
    background-color: var(--couleur-principale);
    color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-container h1 {
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 2px;
}

.logo-container p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--couleur-secondaire);
}

/* Le bouton rouge du menu */
nav a.highlight {
    background-color: var(--couleur-accent);
    padding: 10px 18px;
    border-radius: 5px;
}

nav a.highlight:hover {
    background-color: #660000;
    color: white;
}

/* Section Accueil (Hero) */
.hero-section {
    background-color: var(--couleur-secondaire);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--couleur-principale);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #3e2b22;
}

/* Section Blog / Témoignages */
.blog-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: auto;
}

.blog-section h2 {
    text-align: center;
    color: var(--couleur-principale);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.post-card {
    background: white;
    border-left: 6px solid var(--couleur-principale);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.post-card h3 {
    margin-top: 0;
    color: var(--couleur-principale);
    font-size: 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--couleur-accent);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pied de page */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Adaptation pour téléphones portables (Responsive Design) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1.5rem;
    }
    .hero-section h2 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .post-card {
        padding: 1.5rem;
    }
}