html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: #fff;
}

.apple-fade {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(12px);
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform, filter;
}

.apple-fade.appear {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Yavaş, sakin hover animasyonu sadece menüde */
header nav a, .main-menu a {
  transition: color 0.4s ease, transform 0.4s ease;
}
header nav a:hover, .main-menu a:hover {
  transform: translateY(-2px);
  color: #007aff; /* Apple mavi tonu */
}