/* dijitalnotes - Custom Styles
   Tailwind CDN ile birlikte kullanılır.
   Buradaki stiller Tailwind'in karşılayamadığı özel efektler içindir. */

/* Hero arkaplan grid deseni */
.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Body font fallback (Inter Tailwind config tarafından zaten ayarlandı) */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navbar scroll efekti */
#navbar.scrolled {
  background-color: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* FAQ açılma animasyonu */
.faq-content {
  animation: faqOpen 0.25s ease-out;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ icon dönüşü (açıkken) */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Kaydırma çubuğu (siyah tema) */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #3f3f46;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #52525b;
}
