.body{
  color: gold;
  background-color: #000;
  scroll-behavior: smooth;
}

.hero-intro {
  background-color: #000;
  color: #f5f5f5;
  padding: 100px 20px 60px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center; /* aligne les blocs en haut */
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff2d6;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000;
}

.hero-text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #D4AF37;
  font-weight: 400;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #dddddd;
  max-width: 600px;
}

.infos-horaires h3,
.infos-adresse h3{
  color: #D4AF37;
  margin-bottom: 2px;
}

.infos-horaires p,
.infos-adresse p {
  font-size: 16px;
  color: #d2d2d2;
}

.btn-itineraire {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #2c1f1f;
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.btn-itineraire:hover {
  background-color: #D4AF37;
  color: #1e1e1e;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;            
  justify-content: flex-start;    
  background: linear-gradient(to right, #000 65%, #4e3939 100%);
  border-top: 2px solid gold;
  font-weight: bold;              
  padding: 10px 140px 0 140px;          
  color: gold;
  margin: 0;                      
}

.breadcrumb-item {
  color: gold;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-item:hover {
  color: white;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: gold;
}


.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}


.hero-images {
  display: flex;
  height: 100%;
}

.hero-images img {
  width: 25%;
  object-fit: cover;
  height: 100%;
  filter: brightness(60%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
}

.banner-text h4 {
  font-size: 3.5rem;
  margin: 10px 0;
  font-weight: bold;
  color:#c2b5b5
}

h6{
  display: flex;
  justify-content: center;
  font-size: 25px;
}

.equipe{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .hero-intro {
    padding: 60px 20px 40px 20px;
    flex-direction: column;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .infos-wrapper {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .infos-horaires,
  .infos-adresse {
    width: 100%;
  }

  .btn-itineraire {
    width: auto;
    max-width: 80%;
    margin: 12px auto 0 auto;
    padding: 10px 20px;
    display: block;
    text-align: center;
  }

  .hero-images {
    flex-direction: column;
  }

  .hero-images img {
    width: 100%;
    height: auto;
  }

  .banner-text h4 {
    font-size: 2rem;
  }

  h6 {
    font-size: 20px;
    padding: 10px;
  }

  .equipe img {
    width: 100%;
    height: auto;
    padding: 0 10px;
  }

}
