/* Base et Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
}

/* Sections globales */
.section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222222;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Section 1 - Hero */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #222222;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Section 2 - Présentation */
.presentation p {
    font-size: 1.1rem;
    text-align: justify;
}

/* Section 3 - Informations Pratiques */
.infos-pratiques ul {
    list-style: none;
}

.infos-pratiques li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

/* Section 4 - FAQ (Accordéon) */
.accordion-container {
    margin-top: 20px;
}

.accordion-item {
    background-color: #ffffff;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

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

.accordion-header .icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.accordion-content p {
    padding: 20px;
    border-top: 1px solid #eeeeee;
    color: #555555;
}

/* Styles pour l'état ouvert généré par JS */
.accordion-item.active .accordion-content {
    max-height: 200px; /* S'ajuste dynamiquement en JS, valeur de secours ici */
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

/* Section 5 - Contact */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Adaptation Mobile basique */
@media (max-width: 600px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .section { padding: 40px 20px; }
}
.contact-map-fallback {
    background-color: #f0f0f0;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.contact-map-fallback p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555555;
}

.btn-map {
    background-color: #222222 !important;
    color: #ffffff !important;
    font-size: 1rem;
}

.btn-map:hover {
    background-color: #444444 !important;
}
