body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #d1e2c4;
}

.top-bar {
  display: flex;
  align-items: center;
  background-color: #d1e2c4;
  padding: 10px 20px;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  background-color: white;
  padding: 8px 12px;
  border-radius: 5px;
  color: black;
  font-weight: bold;
}

.btn-reserver {
  background-color: yellow;
  color: black;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.banner {
  position: relative;
  width: 100%;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(211, 234, 211, 0.8);
  padding: 15px 25px;
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
}

.info-section {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background-color: #c6d9b4;
}

.left-col,
.center-col,
.right-col {
  flex: 1;
  padding: 10px 20px;
}

.logo-large {
  width: 100%;
  max-width: 200px;
}

.horaires, .contact, .social {
  margin-bottom: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

footer .map-placeholder {
  width: 100%;
  height: 100px;
  background-color: #eee;
  background-image: linear-gradient(to right, #f5f5f5 10%, #c6d9b4 10%, #c6d9b4 90%, #f5f5f5 90%);
}
.map-container {
  margin-top: 20px;
  border-top: 3px solid #aac18f;
}
.inscription-section {
  background-image: url('/image/Drone2.JPG');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  min-height: 100vh;
}

.overlay-inscription {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 10px;
  display: inline-block;
}

.inscription-text {
  font-size: 24px;
  margin-bottom: 20px;
}

.tarifs-img {
  margin-top: 30px;
  max-width: 100%;
  height: auto;
  border: 2px solid white;
  border-radius: 10px;
}

.submenu {
  display: none;
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 1000;
}

.submenu-parent {
  position: relative;
}

.submenu-parent:hover .submenu {
  display: block;
}

.submenu li {
  padding: 5px 20px;
}

.submenu li a {
  color: black;
  text-decoration: none;
  display: block;
}

.submenu li a:hover {
  background-color: #f0f0f0;
}
.partners-section {
  padding: 20px 0;
  background: #f5f5f5;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* espace entre les logos */
  flex-wrap: wrap; /* s'ils ne tiennent pas sur une ligne */
}

.partners-logos img {
  height: 60px;
  object-fit: contain;
}
