
* { 
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff7e5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
}

.logo { 
    height: 40px; 
}

.house {
    width: 16px; /* Largeur de l'icône de la maison */
    height: 16px; /* Hauteur de l'icône de la maison */
    margin-right: 8px; /* Espace entre l'icône et le texte "Home" */
}


.nav-center a {
    margin: 0 5px; /* J'ai réduit un peu la marge car le padding va prendre de la place */
    text-decoration: none;
    color: #3D2B1F;
    font-weight: 500;
    font-size: 14px;
    
    /* --- AJOUTEZ CECI --- */
    padding: 8px 15px;   /* Donne du volume à TOUS les boutons */
    border-radius: 20px; /* Arrondit les coins de TOUS les boutons */
    /* -------------------- */
}

/* --- AJOUTEZ CECI A LA FIN DU CSS --- */
/* Style pour le bouton actif (la page où on se trouve) */
.nav-center a.active {
    background-color: #FFB321; /* Le fond orange */
    color: #3D2B1F; /* On garde la couleur du texte */
}

/* Optionnel : Petit effet quand on passe la souris dessus */
.nav-center a:hover {
    background-color: #fff7e5; /* Un fond très clair au survol */
}

.btn-donate {
    background: #FDE8E8;
    color: #E63946;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION */
.hero { 
    padding: 50px 10%;
}

.hero-container { 
    display: flex; gap: 50px; align-items: center; 
}
.hero-text { 
    flex: 1;
}

.hero h1 {
    font-size: 64px; 
    font-weight: 900; 
    line-height: 1; 
    text-align: center;
    color: #7a2c00;
}

.hero h2 {
    font-size: 36px; 
    color: #7a2c00; 
    margin: 10px 0 30px; 
}

.hero p { 
    font-size: 18px; 
    line-height: 1.6; 
    max-width: 500px; 
    margin-bottom: 40px; 
}


.title {
    font-size: 40px; 
    font-weight: 700; 
    margin: 10px;
}

.adventure {
    margin: 80px 10%;
}

.adventure h2 { 
    font-size: 22px; 
    margin-bottom: 20px; 
    color: #db6f39;;;
}

.adventure .subtitle { 
    max-width: 700px; 
    margin: 0 auto 60px; 
    color: #000;
    font-size: 20px;
}

.adventure-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 30px;
}

.adventure-card {
    background: #fff;
    color: #000;
    padding: 50px;
    border-radius: 20px;
    width: 400px;
    text-align: left;
    position: relative;
    flex: 0.6;
}

.adventure-card {
    font-size: 20px;
}

.adventure-card h2 { 
    font-size: 30px; 
    margin-bottom: 20px; 
}

.adventure-card h3 { 
    font-size: 24px; 
    margin-bottom: 20px; 
}

.adventure-image {
    width: 20%;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* TEAM / ÉQUIPE SECTION */
.equipe {
    padding: 80px 10%;
    color: #3D2B1F;
    background-color: #ffffff;
}
.equipe .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.equipe h2 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #7a2c00;
}
.equipe .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5b4b3f;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.equipe-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(66,43,23,0.08);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
}

.equipe-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #2f1b10;
}

.equipe-card p {
    font-size: 14px;
    color: #6b5a51;
}


@media (max-width: 900px) {
    .equipe-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .equipe-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; }
}

