.video-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.logo{
  width:33%;
  height:auto;
  text-align: center;
}

.maintitle {
  text-align: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh; /* prend toute la hauteur de l'écran */
  padding: 2rem;
  text-align: center;
}


.video-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-reserver {
  background-color: var(--orange-main);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-reserver:hover {
  background-color: var(--orange-main);
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}
