/* Bloc de texte d'introduction */
.intro-text-section {
  position: relative;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(168, 213, 226, 0.2);

  /* Combine ton dégradé et ton image */
  background:
    linear-gradient(135deg, rgba(248, 253, 255, 0.6), rgba(240, 249, 252, 0.6)),
    url('/img/logo.gif') no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.intro-text-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.intro-title {
  font-size: 2em;
  margin-bottom: 25px;
  font-weight: 600;
}

.intro-main {
  font-size: 1.25em;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.intro-description {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
}

.intro-approach {
  font-size: 1.15em;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .intro-text-section {
    padding: 30px 20px;
  }

  .intro-title {
    font-size: 1.6em;
  }

  .intro-main {
    font-size: 1.1em;
  }

  .intro-description {
    font-size: 1em;
    text-align: center;
  }

  .intro-approach {
    font-size: 1.05em;
  }
}

/* Section profil About */
.profile-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.profile-photo {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(168, 213, 226, 0.4);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(168, 213, 226, 0.5);
}

.profile-content {
  flex: 1;
  min-width: 300px;
}

.profile-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--text-color);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-photo {
    width: 100%;
    max-width: 350px;
  }
}


/* Bouton call-to-action personnalisé */
.btn-reservation {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #a8d5e2, #b8e0d2);
  text-decoration: none !important;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 213, 226, 0.3);
}

.btn-reservation:hover {
  background: linear-gradient(135deg, #8fc5d8, #9dd0c2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 213, 226, 0.5);
}

/* Hero section - Image fixe */
.hero-section {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-section h1 {
  font-size: 3.5em;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
  margin-bottom: 20px;
  color: white;
}

.hero-section p {
  font-size: 1.5em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-section h1 {
    font-size: 2em;
  }

  .hero-section p {
    font-size: 1.2em;
  }
}
