body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fbf7ec;
  color: #15351f;
}

.banner {
  height: 750px;
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)),
    url("/images/nolhan-image.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 6px solid #15351f;
}

.menu {
  position: absolute;
  top: 30px;
  right: 40px;
  background: #15351f;
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: bold;
}

.banner-logo {
  position: absolute;
  left: 12%;
  top: 65px;
  text-align: center;
  color: #12325f;
}

.drop {
  width: 120px;
  height: 150px;
  margin: auto;
  border: 7px solid #75bdd2;
  border-radius: 55% 45% 58% 42%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: bold;
}

.banner-logo h1 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 48px;
  margin: 15px 0 0;
}

.banner-logo p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
  margin: -8px 0 0;
  color: #15351f;
}

.home {
  text-align: center;
  padding: 60px 8% 80px;
  background: #fbf7ec;
}

.home h2 {
  font-family: Georgia, serif;
  font-size: 70px;
  letter-spacing: 18px;
  margin: 0;
  color: #15351f;
}

.separator {
  margin: 25px 0;
  color: #6d8b6b;
  font-size: 24px;
}

.home h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 38px;
  font-weight: normal;
  margin: 0 0 55px;
  color: #15351f;
}

.buttons {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 50px;
}

.box {
  min-height: 145px;
  border: 2px solid #6d8b6b;
  border-radius: 18px;
  background: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  color: #15351f;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.box:hover {
  background: white;
  transform: translateY(-3px);
}

.icon {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2f6b3b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.box h4 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 1px;
}

.box p {
  margin: 0;
  color: #1d261f;
  font-size: 17px;
  line-height: 1.5;
}

.contact-box {
  grid-column: 1 / 3;
  max-width: 540px;
  margin: auto;
}

footer {
  background: #15351f;
  color: white;
  padding: 30px 7%;
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
}

@media (max-width: 800px) {
  .banner {
    height: 340px;
  }

  .banner-logo {
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
  }

  .menu {
    top: 18px;
    right: 18px;
  }

  .home h2 {
    font-size: 42px;
    letter-spacing: 8px;
  }

  .home h3 {
    font-size: 28px;
  }

  .buttons {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-column: auto;
  }

  .box {
    flex-direction: column;
    text-align: center;
  }
}
.small-banner {
  height: 600px;
}

.parcours {
  padding: 80px 8%;
  background: #f7f1df;
  text-align: center;
}

.parcours h2 {
  font-family: Georgia, serif;
  color: #15351f;
  font-size: 56px;
}

.intro-text {
  max-width: 900px;
  margin: 20px auto 50px;
  font-size: 20px;
  line-height: 1.8;
  color: #355b3c;
}

.parcours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.parcours-grid div {
  background: white;
  border: 1px solid #6d8b6b;
  border-radius: 20px;
  padding: 30px;
}

.parcours-grid h3 {
  color: #15351f;
  font-size: 28px;
}

.parcours-grid p {
  line-height: 1.7;
  color: #355b3c;
}

.btn-retour {
  background: #15351f;
  color: white;
  padding: 16px 28px;
  border-radius: 40px;
  text-decoration: none;
}

@media (max-width: 800px) {
  .parcours-grid {
    grid-template-columns: 1fr;
  }
}
.profil-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.profil-photo img {
  width: 520px;
  height: 520px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  border: 12px solid white;
  background: white;
  box-shadow: 0 25px 70px rgba(0,0,0,0.20);
}
.page-service {
  padding: 80px 8%;
  background: #f7f1df;
  text-align: center;
}

.page-service h1 {
  font-family: Georgia, serif;
  color: #15351f;
  font-size: 58px;
  margin: 0 0 20px;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.realisation-card {
  background: white;
  border: 1px solid #6d8b6b;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  text-align: left;
}

.photo-placeholder {
  height: 260px;
  border-radius: 18px;
  background: #dfe8dc;
  border: 2px dashed #6d8b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #355b3c;
  font-weight: bold;
  margin-bottom: 20px;
}

.realisation-card h3 {
  color: #15351f;
  font-size: 26px;
  margin: 0 0 10px;
}

.realisation-card p {
  color: #355b3c;
  line-height: 1.7;
}

.page-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .realisations-grid {
    grid-template-columns: 1fr;
  }

  .page-service h1 {
    font-size: 42px;
  }
}
.contact-page {
  padding: 80px 8%;
  background: #f7f1df;
  text-align: center;
}

.contact-page h1 {
  font-family: Georgia, serif;
  font-size: 58px;
  color: #15351f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.contact-card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  text-decoration: none;
  color: #15351f;
  border: 1px solid #6d8b6b;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.2s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-card h2 {
  margin: 0 0 15px;
}

.contact-form-box {
  max-width: 900px;
  margin: 70px auto 0;
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #cfd8c9;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  background: #15351f;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-page h1 {
    font-size: 42px;
  }
}
