/* css/style.css */
body {
  font-family: Arial, sans-serif;
  line-height: 2;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #853;
}

header ul {
  list-style: none;
  padding: 0;
}

header ul li {
  display: block;
  margin: 0 15px;
}

header ul li a {
  color: #999;
  text-decoration: none;
}

section {
  padding: 20px;
}

.video-gallery {
  display: flex;
  gap: 20px;
}

.video-item {
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea, form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 10px 0;
  background: #333;
  color: #fff;
}/* Vidéo plein écran */
#hero {
  position: relative;
  width: 100%;
  height: 100vh; /* 100% de la hauteur de la fenêtre */
  overflow: hidden;
}

#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5); /* Léger fond transparent */
  z-index: 1;
}

#hero h1 {
  font-size: 3rem;
  margin: 0;
}

#hero p {
  font-size: 1.5rem;
}