/* --- VARIABLES DE COULEURS --- */
:root {
    --primary: #d32f2f;
    --primary-hover: #b71c1c;
    --bg-color: #f4f4f4;
    --bg-card: #ffffff;
    --bg-card-member: #eeeeee;
    --text-main: #333;
    --text-light: #555;
    --white: #ffffff;
    --dark: #111111;
}

/* --- STYLES GLOBAUX --- */
body { margin: 0; font-family: Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); }
html { scroll-behavior: smooth; }
section { min-height: 100vh; padding: 80px 20px 60px 20px; border-bottom: 1px solid #ddd; }
.container { max-width: 900px; margin: 0 auto; text-align: center; }

/* --- NAVIGATION --- */
nav { position: fixed; top: 0; width: 100%; background-color: var(--dark); padding: 15px 0; text-align: center; z-index: 1000; }
nav a { color: var(--white); margin: 0 15px; text-decoration: none; font-weight: bold; transition: color 0.3s; }
nav a:hover { color: var(--primary); }

/* --- BOUTONS --- */
.btn { display: inline-block; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 1.1em; transition: background-color 0.3s, transform 0.2s; }
.btn:hover { transform: scale(1.05); }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-hover); }
.btn-youtube { background-color: #ff0000; color: var(--white); padding: 15px 30px; font-size: 1.2em; }
.btn-dark { background-color: #333; color: var(--white); border: 1px solid #555; }
.btn-dark:hover { background-color: #444; }

/* --- SECTION ACCUEIL --- */
.hero-section { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero-logo { max-width: 250px; margin-bottom: 10px; }
.hero-title { margin-top: 0; font-size: 2.5em; }
.hero-desc { max-width: 600px; font-size: 1.2em; line-height: 1.6; margin-bottom: 30px; }
.hero-img { max-width: 100%; max-height: 400px; object-fit: cover; border-radius: 10px; margin-bottom: 30px; box-shadow: 0px 4px 10px rgba(0,0,0,0.1); }

/* --- SECTION MUSIQUE --- */
.music-desc { margin-bottom: 30px; font-size: 1.1em; color: var(--text-light); }
.music-img { max-width: 100%; border-radius: 10px; margin-bottom: 30px; box-shadow: 0px 4px 15px rgba(0,0,0,0.1); }

/* --- SECTION DATES --- */
.services-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 50px; }
.service-card { background: var(--bg-card); padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); width: 220px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.dates-title { margin-bottom: 30px; font-size: 1.5em; border-bottom: 2px solid #ddd; display: inline-block; padding-bottom: 10px; }
.date-card { background: var(--bg-card); border-radius: 8px; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 5px rgba(0,0,0,0.1); flex-wrap: wrap; gap: 15px; margin-bottom: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.date-left { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 250px; }
.date-logos { display: flex; align-items: center; gap: 10px; }
.date-logos img { height: 40px; width: 40px; object-fit: contain; border-radius: 5px; }
.date-logos span { font-weight: bold; color: #aaa; font-size: 1.2em; }
.date-info { text-align: left; }
.date-time { font-size: 0.85em; color: var(--primary); font-weight: bold; margin-bottom: 2px; }
.date-name { margin: 0; font-size: 1.1em; color: var(--text-main); }
.date-place { font-size: 0.9em; color: #666; margin-top: 2px; }
.cta-box { background-color: var(--bg-card); padding: 30px; border-radius: 10px; border-left: 5px solid var(--primary); text-align: left; margin-top: 40px; }

/* --- SECTION GROUPE --- */
.group-desc { font-size: 1.1em; line-height: 1.6; color: #444; max-width: 700px; margin: 0 auto 50px auto; }
.members-list { display: flex; flex-direction: column; gap: 30px; }
.member-card { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; background: var(--bg-card-member); padding: 20px; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0,0,0,0.05); text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.member-card:hover, .service-card:hover, .date-card:hover { transform: scale(1.03); box-shadow: 0px 8px 15px rgba(0,0,0,0.15); z-index: 10; }
.member-img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin: 0 auto; }
.member-info { flex: 1; min-width: 250px; }
.member-info h3 { margin-top: 0; margin-bottom: 5px; color: var(--primary); }
.member-info p { margin: 0; color: var(--text-light); line-height: 1.5;}

/* --- FOOTER --- */
footer { background-color: #1a1a1a; color: var(--bg-color); padding: 50px 20px 20px 20px; text-align: center; margin-top: 40px; }
.footer-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; }
.footer-socials i { margin-right: 8px; }
.contact-info { margin-bottom: 40px; font-size: 1.1em; color: #ddd; }
.contact-info div { margin-bottom: 12px; }
.contact-info i { color: var(--primary); margin-right: 10px; font-size: 1.2em; vertical-align: middle; }
.copyright { border-top: 1px solid #333; padding-top: 20px; font-size: 0.9em; color: #777; }

/* --- SECTION FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; text-align: left; }
.faq-item { background: var(--bg-card); padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary); box-shadow: 0 4px 8px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.faq-item:hover { transform: scale(1.02); }
.faq-item h3 { margin-top: 0; margin-bottom: 15px; color: var(--primary); font-size: 1.2em; }
.faq-item p { margin: 0; color: var(--text-light); line-height: 1.6; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav { padding: 10px 0; }
    nav a { display: inline-block; margin: 5px 10px; font-size: 0.9em; }
    section { padding-top: 120px; }
    .date-left, .member-card { flex-direction: column; text-align: center; }
    .date-info, .member-info, .cta-box { text-align: center; }
    .date-card { justify-content: center; text-align: center; }
}
/* --- MINI FOOTER --- */
.mini-footer {
    background-color: #1a1a1a;
    color: #ddd;
    padding: 20px 20px 10px 20px;
    text-align: center;
    margin-top: 40px;
}
.contact-info-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.contact-info-mini span {
    font-size: 1.1em;
}
.contact-info-mini i {
    color: var(--primary);
    margin-right: 8px;
}

/* --- PAGE CONTACT --- */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    margin-top: 30px;
}
.contact-form-col, .contact-info-col {
    flex: 1;
    min-width: 300px;
}
.contact-form {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-main);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}
.form-group textarea {
    resize: vertical;
    height: 150px;
}
.contact-info-col img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- PAGE NOUS SUIVRE --- */
.social-big-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.widget-container {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}
/* --- PAGE AVIS --- */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: left;
    border-bottom: 4px solid var(--primary);
}
.stars {
    color: #fbbc04; /* Jaune officiel des étoiles Google */
    margin-bottom: 15px;
    font-size: 1.2em;
}
.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.review-author {
    font-weight: bold;
    color: var(--text-main);
}