/* Configuration de base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f4; }

.container { padding: 80px 20px; max-width: 1000px; margin: 0 auto; text-align: center; }
.bg-light { background-color: #ffffff; }

/* SECTION 1 – HERO (Utilise img1) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; color: white; text-align: center;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }
.btn-scroll { display: inline-block; background-color: #2c3e50; color: white; padding: 12px 30px; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.btn-scroll:hover { background-color: #34495e; }

/* SECTION 3 - INFOS */
.info-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; }
.info-list li { background: #f4f4f4; padding: 15px; border-radius: 8px; border-left: 5px solid #2c3e50; }

/* SECTION 4 - FAQ (Accordéons) */
.accordion { max-width: 700px; margin: 0 auto; text-align: left; }
.accordion-item { margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; background: #fff; }
.accordion-header { width: 100%; padding: 15px; border: none; background: none; display: flex; justify-content: space-between; cursor: pointer; font-weight: bold; }
.accordion-content { max-height: 0; overflow: hidden; transition: 0.3s ease-out; }
.accordion-item.active .accordion-content { max-height: 200px; padding: 15px; border-top: 1px solid #eee; }

/* SECTION 5 - CONTACT COMPACT */
#contact.container { padding: 40px 20px; }
.contact-minimal { margin-bottom: 20px; font-size: 1.1rem; }
.separator { margin: 0 15px; color: #ccc; }
.map-container-small { max-width: 800px; margin: 0 auto; border-radius: 8px; overflow: hidden; line-height: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

footer { padding: 20px; background: #2c3e50; color: white; text-align: center; }

@media (max-width: 600px) {
    .separator { display: none; }
    .contact-minimal p strong { display: block; margin-top: 10px; }
    .hero-content h1 { font-size: 2rem; }
}