/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f4f4f4;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background-image: url("hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BOUTON */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #dcdcdc;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.alt-section {
    background-color: #ffffff;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #111;
}

.section p,
.section li {
    font-size: 1.05rem;
}

/* LISTE INFOS */
.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f0f0f0;
    border-left: 4px solid #333;
    border-radius: 4px;
}

/* FAQ */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background-color: #ffffff;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: background-color 0.3s ease;
}

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

.icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

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

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

.accordion-content p {
    padding: 20px;
}

/* CONTACT */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }
}