/* =============================
   SCROLL İLE GÖRÜNÜRLÜK ANİMASYONU
============================= */
.content-wrapper {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.content-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero overlay scroll ile gizleme */
.hero.scrolled .hero-overlay {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
