/* ===== EXPÉRIENCE SECTION ===== */
.experience-section {
  background-color: #0d2c23; /* fond vert profond global */
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

.experience-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;

}

/* ===== Image ===== */
.experience-image {
  flex: 0 0 60%; /* image à droite, environ 60 % */
  height: 550px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  flex:2;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ===== Bloc texte ===== */
.experience-content {

  background-color: #0e382d;
  color: #fff;
  width: 45%;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  box-shadow: none;
  margin-right: -71px;
  flex:2;
}

.experience-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.experience-accroche {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
}

.experience-infos {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
}

.experience-container .infos {font-size: 12px; font-style: italic; color: white;}

.experience-infos li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience-description {
  line-height: 1.7;
  margin-bottom: 50px;
  font-size: 1rem;
}

.btn-reserver {
  background-color: #d5e9e0;
  color: #0d2c23;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-reserver:hover {
  background-color: #fff;
  color: #0d2c23;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .experience-container {
    flex-direction: column;
    align-items: center;
  }

  .experience-section {
    padding: 138px 0;
}

  .experience-image {
    width: 100%;
    max-width: 80%;
    margin-top: 0em;

  }

  .experience-content {
      position: relative;
      transform: none;
      top: auto;
      left: auto;
      width: 100%;
      margin-top: 0;
      padding: 40px 30px;
      background: none;
      border-radius: 0;
      margin-right: 0;
  }

  .experience-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .experience-content {
    width: 95%;
    padding: 30px 20px;
    margin-top: -40px;
  }

  .experience-title {
    font-size: 1.5rem;
  }

  .experience-accroche {
    font-size: 1rem;
  }

  .experience-infos {
    flex-direction: column;
    gap: 10px;
  }

  .btn-reserver {
    width: 100%;
    text-align: center;
  }
}
