/* === TYPOGRAPHIE KANFURA === */
body {
  font-family: 'Lora', serif;
  color: #2a1e12;
  background-color: #fffdf9;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* === LIGNES PRINCIPALES === */
.kanfura-section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* === BLOC HERO IMAGE === */
.kanfura-hero-block {
  flex: 1 1 55%;
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0.8rem;
}

.kanfura-hero-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomOut 15s ease forwards;
}

.kanfura-hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.kanfura-hero-text {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kanfura-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* === ZÉYA BLOCK === */
.zeya-block {
  flex: 1 1 40%;
  text-align: center;
  padding: 1rem;
  background: #f7e9d6;
  border-radius: 0.8rem;
}

.zeya-block img {
  max-width: 220px;
  margin: 1rem auto;
}

.zeya-block .btn-precommande {
  display: inline-block;
  margin-top: 1rem;
  background-color: #a8653d;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.zeya-block .btn-precommande:hover {
  background-color: #8a4d2c;
}

/* === DIAGNOSTIC FULL WIDTH === */
.diagnostic-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0.8rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.diagnostic-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diagnostic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.diagnostic-text {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.diagnostic-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* === SECTION ENGAGEMENTS + TEMOIGNAGE === */
.kanfura-section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* espace horizontal entre les colonnes */
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 3rem auto;
}

/* Bloc Engagements */
.engagements-block {
  flex: 1 1 48%;
  background-color: #f7e9d6;
  padding: 2rem;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}

.engagements-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.engagements-block p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.valeurs-grid {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.valeur {
  flex: 0 0 120px;
  text-align: center;
}

.valeur img {
  max-width: 120px;
  margin-bottom: 0.5rem;
  justify-content: center;
}

.valeur h3 {
  font-size: 0.9rem;
  margin: 0.3rem 0;
  text-align: center;
}

.valeur p {
  font-size: 0.7rem;
  margin: 0;
}

/* Bloc Témoignage */
.temoignage-block {
  flex: 1 1 48%;
  background-color: #fffaf3;
  padding: 2rem;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}

.temoignage-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.temoignage-card {
  position: relative;
}

.temoignage-card img {
  max-width: 220px; /* réduction de la taille de l'image */
  border-radius: 1rem;
  display: block;
  margin: 0 auto 1rem auto;
}

.temoignage-texte {
  font-size: 0.95rem;
  color: #3a2c1a;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .kanfura-section-row {
    flex-direction: column;
    gap: 2rem;
  }

  .engagements-block,
  .temoignage-block {
    flex: 1 1 100%;
  }

  .temoignage-card img {
    max-width: 180px;
  }
}

/* === Boutons === */
.btn-kanfura {
  background-color: #a8653d;
  color: white;
  font-weight: 500;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-kanfura:hover {
  background-color: #8a4d2c;
}

/* === ANIMATION ZOOM === */
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  .kanfura-hero-block,
  .zeya-block,
  .diagnostic-section,
  .engagements-block,
  .temoignage-block {
    flex: 1 1 100%;
  }
  .kanfura-hero-text h1 {
    font-size: 1.6rem;
  }
}

