/* Style général */
html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* SECTION 1 – HERO (Bannière avec image de fond) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero .slogan {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn {
    display: inline-block;
    background-color: #1b5e20;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* Style des Cartes/Sections */
.card {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

h2 {
    color: #1b5e20;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Listes */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

ul li:last-child {
    border-bottom: none;
}

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

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

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

.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, padding 0.3s ease;
    background-color: #ffffff;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding: 15px 20px;
}

.accordion-item.active .icon {
    transform: rotate(45deg); /* Le + devient une croix/indicateur d'ouverture */
}

/* SECTION 5 – CONTACT & CARTE */
.contact-details a {
    color: #1b5e20;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 20px;
}

.map-container h3 {
    margin-bottom: 10px;
    color: #555555;
}

iframe {
    border-radius: 5px;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222222;
    color: #ffffff;
    font-size: 0.9rem;
}