/* Base & Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

.landing-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Section HERO (Haut) --- */
.hero {
  background: #e1f2ec url(../temp/hero.jpg) no-repeat right bottom;
  background-size: cover;
  min-height: 100vh;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-content {
  max-width: 550px; /* Évite que le texte ne chevauche le visage de la femme */
  width: 100%;
}

.hero-text {
  margin-left: 5em;
}

.hero .hero-logo {
  margin-bottom: 6em;
}

.hero .hero-logo img {
  max-width: 450px;
  height: auto;
}

.hero-title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin: 0;
  position: relative;
  text-transform: none;
}

/* La ligne verte sous le titre principal */
.hero-location {
  display: inline-block;
  border-bottom: 8px solid #00ae6a;
  padding-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.15em;
  text-transform: uppercase;
  color: #333;
  margin: 18px 0 0 0;
}

.doctor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-list li {
  font-size: 1.4em;
  color: #222;
  line-height: 1.4;
}


/* --- Section VERTE (Bas) --- */
.section-green {
  color: #FFF;
  background: #00ae6a;
  text-align: center;
  padding: 60px 20px;
  margin-top: 10px;
  box-sizing: border-box;
}

.green-title {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 35px 0;
  text-transform: none;
}

.green-text {
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 20px 0;
  opacity: 0.95;
}

.green-subtext {
  font-size: 1.05em;
  font-weight: 400;
  margin: 0 0 15px 0;
  opacity: 0.85;
}

.social-link a {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.social-link a:hover {
  transform: scale(1.1); /* Petit effet fluide au survol */
}

.social-link img {
  width: 40px;
  height: auto;
}


/* --- Responsive (Mobile / Tablettes) --- */
@media (max-width: 1200px) {
  .hero {
    background-position: 70% center; /* Recentre le visage sur mobile */
    padding: 40px 5%;
    min-height: 480px;
  }

  .hero-content {
    max-width: 100%;
    /* Ajout d'un léger voile blanc en arrière-plan sur mobile si le texte devient difficile à lire sur l'image */
    background: rgba(255, 255, 255, 0.65);
    padding: 20px;
    border-radius: 8px;
  }

  .hero-title {
    font-size: 2em;
  }

  .hero .hero-logo {
    margin-bottom: 3em;
  }

  .hero .hero-logo img {
    max-width: 220px;
  }

  .section-green {
    padding: 45px 20px;
  }

  .green-title {
    font-size: 1.8em;
  }

  .green-text {
    font-size: 1.15em;
  }

  .hero-text {
    margin-left: 3.3em;
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 1300px) {
  html {
    padding-top: 0;
  }
}