/* Serkan Kırtasiye — özel stiller ve animasyonlar */

html {
  scroll-behavior: smooth;
}

/* FadeIn animasyonu (framer-motion muadili) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* JavaScript devre dışıysa içerik gizli kalmasın */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

/* WhatsApp butonu giriş animasyonu (spring benzeri) */
.whatsapp-fab {
  animation: whatsapp-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@keyframes whatsapp-pop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
