/* ==========================================================================
   ALPSAN KEPENK & KAPI SİSTEMLERİ - ÖZEL MİMARİ STİL DOSYASI
   Yazı Tipleri: Outfit (Başlıklar) + Manrope (Gövde Metinleri)
   ========================================================================== */

:root {
  --brand-cyan: #00b4d8;
  --brand-cyan-hover: #0096c7;
  --brand-cyan-dark: #007791;
  --brand-cyan-light: #eaf7fa;
  --brand-cyan-border: #bce4ed;
  --brand-dark: #0a0f1d;
  --brand-dark-navy: #111827;
  --brand-dark-card: #162033;
  --brand-surface: #f4fafd;
  --brand-border: #dbeff5;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}

/* Teknik Çizim / Blueprint Arka Plan Deseni (Karanlık Alanlar) */
.dark-grid {
  background-size: 36px 36px;
  background-image: 
    linear-gradient(to right, rgba(0, 180, 216, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 180, 216, 0.07) 1px, transparent 1px);
}

/* İnce Kart & Hover Efektleri */
.craft-card {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.craft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 180, 216, 0.14), 0 8px 16px -6px rgba(10, 15, 29, 0.06);
  border-color: var(--brand-cyan);
}

/* Özel Turkuaz Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #f1f8fa;
}

::-webkit-scrollbar-thumb {
  background: #00b4d8;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0096c7;
}

/* Özel Form Odak Çerçeveleri */
input:focus, select:focus, textarea:focus {
  border-color: #00b4d8 !important;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.18) !important;
}
