body {
  font-family: roboto, sans-serif;
  margin: 0;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 30px;
}

.navbar .nav-link {
  font-size: 1.3rem;
}

.nav-link {
  text-decoration: none;
  color: black;
  margin: 0 15px;
  font-weight: 500;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/src/hero.png");
  background-size: 120% auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero-soins {
  width: 100%;
  min-height: 60vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("/src/soins.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-parcours {
  width: 100%;
  min-height: 60vh;
  color: #74485c;
  background-image:
    linear-gradient(rgba(0, 1, 0, 0.6), rgba(0, 1, 0, 0.3)),
    url("/src/parcours.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-bottom: 50px;
}

.hero-soins h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

section {
  padding: 80px 20px;
}

.about {
  background: #f9f9f9;
}

.formations {
  background: linear-gradient(120deg, #fce4ec, #fff8e1);
  color: #333;
  padding: 80px 20px;
  border-radius: 5px;
}

.soins {
  background: #fff;
  padding: 80px 20px;
}

.inspiration {
  background: #f4f4f4;
}

.cta {
  background: linear-gradient(120deg, #fde8eb, #cbb173);
  color: #5a3d46;
  text-align: center;
  padding: 80px 20px;
  border-radius: 5px;
}

.cta .button {
  background: linear-gradient(135deg, #f5b9c5, #d4a953);
  color: white;
}

.cta .button:hover {
  background: #cfa07b;
}

.button {
  background: linear-gradient(135deg, rgb(205, 150, 170), rgb(152, 175, 152));
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.content-row {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-top: 50px;
}

.side-image {
  width: 40%;
  max-width: 100px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer {
  font-size: 12px;
  text-align: center;
}

.contact-section {
  font-family: roboto;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-section h1,
.contact-section p {
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input,
textarea,
select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #c47a9c;
}

.contact-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #c47a9c;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-button:hover {
  background: #a95f82;
}
.contact-button:active {
  transform: scale(0.98);
}

[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

@media (max-width: 768px) {
  .hero {
    background-size: cover;
    min-height: 100dvh;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .content-row {
    flex-direction: column;
    text-align: center;
  }
  .side-image {
    width: 80%;
    max-width: 300px;
  }
}
