
a {
  color: white;
  text-decoration: none;
}
h2 {
    font-size: 1.5em;
}

a:hover {
  text-decoration: underline; /* Ou none si tu veux éviter le soulignement */
}

body {
    font-family: sans-serif;
    background-color: #111;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}
.logo-banner {
    background-color: #ccc; /* gris clair */
    padding: 1em 0;
	width: 100vw;                 /* prend toute la largeur de la fenêtre */
    margin: calc(-50vw + 50%);
}

header {
    padding: 2em;
}
header h1 {
    margin-top: 2em;
}
.logo {
    max-width: 250px;
}
.zone-intervention {
  margin: 2em auto;
  max-width: 800px;
  font-size: 1em; /* même taille que le texte classique */
  line-height: 1.6em;
  color: #f1f1f1;
  text-align: center;
}

.zone-intervention h2 {

  margin-bottom: 0.5em;
  color: #fff;
}

 /* bouton reservez votre event */
.cta {
    background-color: #007BFF;
    color: white;
    padding: 1em 2em;
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
}
section {
    padding: 2em;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: auto;
}
input, textarea {
    padding: 1em;
    border: none;
    border-radius: 5px;
}
button {
    background-color: #007BFF;
    color: white;
    padding: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer {
    background-color: #222;
    padding: 1em;
}
.legend {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}
.legend-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 3px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}

.social-icons a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5em;
}

.green { background-color: green; }
.yellow { background-color: yellow; }
.red { background-color: red; }
.legend-box.gray {
  background-color: #999;
}


select#event_type {
    width: 100%;
    height: 2.5em;
    font-size: 1.1==em;
    padding: 0.3em 0.5em;
    border-radius: 4px;
	box-sizing: border-box;
}