
/* --- HEADER & NAVIGATION --- */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaea;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background: linear-gradient(135deg, #941818, #5e0202);
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-bottom: 10px solid #d4af37;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    transition: transform 0.5s;
    object-fit: cover;
    margin-bottom: 10px;
}

.logo:hover { 
    transform: rotate(360deg); /* Animation  */
} 

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover { 
    color: gold; 
}


/* --- STRUCTURE PRINCIPALE (Utilisation de l'espace) --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-section {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto;
}
/* --- Grille pour l'équipe --- */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.member-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 300px;
}
.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
}
.quote-box {
    background: #fff;
    border-left: 5px solid #d4af37;
    padding: 20px;
    margin: 10px auto;
    max-width: 800px;
    font-style: italic;
}
/* --- FOOTER & RETOUR EN HAUT --- */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 50px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}