/* RÉINITIALISATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BOUTONS */
.btn {
    display: inline-block;
    background: #66ccff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

/* SECTION HERO */
.hero {
    height: 100vh;
    background: url("hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}
.hero-box {
    display: inline-block;
    background-color: #2563eb; /* couleur corail/orangé harmonieuse avec texte blanc */
    padding: 25px 40px;        /* espace autour du texte */
    border-radius: 20px;        /* coins arrondis */
    text-align: center;
    color: white;               /* texte blanc */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* optionnel : ombre pour faire ressortir le rectangle */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.light {
    background: #f4f4f4;
    color: #222;
}

.blue {
    background: #2563eb;
    color: white;
}

.dark {
    background: #111;
    color: white;
}

/* LISTES */
ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* ACCORDÉON FAQ */
.accordion .item {
    margin: 15px 0;
    border-bottom: 1px solid #ccc;
}

.question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
}

.question::after {
    content: '+';
    position: absolute;
    right: 0;
}

.answer {
    display: none;
    padding: 10px 0 20px;
    text-align: left;
}

/* MAP */
.map iframe {
    width: 100%;
    border: 0;
    border-radius: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
}#contact a {
  color: #66ccff;
  text-decoration: none;
}

#contact a:hover {
  color: #ffffff; /* devient blanc au survol */
  text-decoration: underline;
}