/* Styles généraux et sobres */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333333;
    line-height: 1.6;
    scroll-behavior: smooth; /* Permet le défilement fluide */
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #1a365d;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-top: 0;
}

/* SECTION 1 – HERO */
.hero-section {
    position: relative;
    height: 70vh;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65); /* Assombrit l'image pour le texte */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #ffffff;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.btn-contact {
    display: inline-block;
    background-color: #319795;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-contact:hover {
    background-color: #2c7a7b;
}

/* SECTION 3 – INFORMATIONS PRATIQUES */
.info-list {
    list-style-type: none;
    padding: 0;
}

.info-list li {
    background: #f1f5f9;
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-left: 4px solid #319795;
    border-radius: 4px;
}

/* SECTION 4 – FAQ (Accordéon) */
.accordion-item {
    border: 1px solid #cbd5e1;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background-color: #f8fafc;
    border: none;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f1f5f9;
}

.accordion-header .icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-content p {
    margin: 1rem 0;
}

/* État actif de l'accordéon géré par JS */
.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 1rem;
}

.accordion-item.active .icon {
    transform: rotate(45deg); /* Transforme le + en x / indicateur d'ouverture */
}

/* SECTION 5 – CONTACT */
.contact-info p {
    font-size: 1.1rem;
    margin: 0.4rem 0;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Pied de page */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 3rem;
}