/* Wall of love styles only (video-related styles removed as requested) */

/* Section container */
.love-wall-section {
  position: relative;
  /* Fond identique à how-it-works: blanc plein, sans motif */
  background: #fff;
  color: #0f172a;
  background-image: none;
  background-size: auto;
  background-position: initial;
  /* Réduit l’espace avec la section précédente (pricing) */
  padding-top: 16px;
}

/* Titre de section */
.love-wall-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1.25rem 0;
}
.love-wall-subheading {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Card */
.love-wall-card {
  position: relative;
  background: linear-gradient(180deg, #eef2ff 0%, #e8edff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.10);
  border-radius: 24px;
}

/* Decorative lines */
.love-wall-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.love-wall-line.line-1::before,
.love-wall-line.line-2::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.25), transparent);
  transform: rotate(12deg);
}
.love-wall-line.line-1::before { top: 20%; }
.love-wall-line.line-2::before { top: 70%; transform: rotate(-10deg); }

/* Slides */
.love-wall-slides { position: relative; }
.love-wall-slide { display: none; }
.love-wall-slide.active { display: block; }

/* Media (left) */
.love-wall-photo-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  /* Ensure a concrete height for the image area */
  aspect-ratio: 4 / 3;
  min-height: 280px;
  background: #eef2ff; /* pour ressembler au visuel main */
}
.love-wall-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* pour ne pas rogner la main */
}

/* Content (right) */
.love-wall-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}
.love-wall-author {
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.love-wall-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;
  margin: 14px 0 18px;
}
.love-wall-partners {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  font-weight: 600;
  flex-wrap: wrap;
}
.love-wall-partners .divider {
  color: #9ca3af;
}

/* Carousel-like controls (decorative) */
.love-wall-controls {
  position: absolute;
  left: auto;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.love-wall-controls .dots {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 9999px;
  padding: 8px 12px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.10);
  display: flex;
  align-items: center;
  gap: 10px;
}
.love-wall-controls .dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #d1d5db;
}
.love-wall-controls .dot.active {
  background: #111827;
}
.love-wall-controls .arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}
.love-wall-controls .arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,0.06);
  box-shadow: 0 10px 24px rgba(17,24,39,0.08);
  color: #111827;
}
.love-wall-controls .arrow:hover { transform: translateY(-1px); }

/* Decorative badge (bottom-right) */
.love-wall-badge {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-size: 30px;
}

.love-wall-badge-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: love-badge-float 2.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes love-badge-float {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(4px, -6px) rotate(2.5deg) scale(1.04); }
  50% { transform: translate(0px, -14px) rotate(0deg) scale(1.08); }
  75% { transform: translate(-4px, -6px) rotate(-2.5deg) scale(1.04); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .love-wall-controls { right: 16px; bottom: 16px; left: auto; }
  .love-wall-badge { right: 16px; bottom: 12px; }
}
@media (max-width: 768px) {
  .love-wall-photo-wrapper {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .love-wall-card {
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  }
  .love-wall-subheading { margin-bottom: 1.25rem; }
}
@media (max-width: 640px) {
  .love-wall-quote { font-size: 16px; }
  .love-wall-title { font-size: 28px; }
  .love-wall-badge-img { width: 84px; height: 84px; }
}
@media (max-width: 480px) {
  .love-wall-photo-wrapper { min-height: 180px; }
  .love-wall-controls { right: 12px; bottom: 12px; left: auto; }
  .love-wall-controls .dots { display: none; }
  .love-wall-controls .arrows { gap: 6px; }
  .love-wall-controls .arrow { width: 32px; height: 32px; box-shadow: 0 6px 16px rgba(17,24,39,0.08); }
  .love-wall-badge { display: none; }
  .love-wall-heading { font-size: clamp(1.6rem, 6vw, 2rem); }
  .love-wall-quote { font-size: 15px; }
  .love-wall-partners { gap: 8px; font-size: 14px; }
}