/* Ana sayfanın arka planı: gün batımından denize geçen sahne, uçuşan kalpler, dalgalar. */

.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg,
    #2b1f3d 0%,
    #5a2f52 28%,
    #b1495f 52%,
    #e8825f 70%,
    #0e3a52 100%
  );
}

.hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.heart {
  position: absolute;
  bottom: -10%;
  color: rgba(255, 255, 255, 0.85);
  animation-name: float-up;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 0.8; }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 20px)) rotate(15deg);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30vh;
  min-height: 140px;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: wave-drift linear infinite;
}

.wave1 { fill: rgba(255, 255, 255, 0.12); animation-duration: 18s; }
.wave2 { fill: rgba(255, 255, 255, 0.18); animation-duration: 13s; animation-direction: reverse; }
.wave3 { fill: #0a2c40; animation-duration: 22s; }

@keyframes wave-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .heart { animation: none; opacity: 0; }
  .wave { animation: none; }
}

/* ---------- Ana sayfa (index.html) üstteki içerik uyarlamaları ---------- */

.romantic-bg .hero {
  background: transparent;
  border-bottom: none;
}

.romantic-bg .eyebrow {
  color: rgba(255, 214, 224, 0.9);
}

.romantic-bg h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(255, 150, 180, 0.45);
}

.romantic-bg .hero-heart {
  color: #fff;
  opacity: 0.85;
}

.romantic-bg .explore {
  position: relative;
  z-index: 1;
}

.romantic-bg .explore-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.romantic-bg .explore-card:hover,
.romantic-bg .explore-card:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.romantic-bg .explore-icon {
  color: #fff;
}

.romantic-bg .site-footer {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.25);
}
