body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HERO */
.hero {
    background-image: url("hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 40px;
}

h2 {
    margin-bottom: 20px;
}

/* FAQ */
.question {
    background: #eee;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.reponse {
    display: none;
    padding: 10px;
    background: #f9f9f9;
}

/* CONTACT */
iframe {
    width: 100%;
    height: 300px;
    border: none;
}body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: red; /* 👈 AJOUT ICI */
}@keyframes zoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

.hero {
    background-image: url("hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    animation: zoom 10s infinite alternate;
}
/* Style du texte animé */
.texte-animé {
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: couleurBouge 5s linear infinite;
}
