/* Custom Resets & Utilities */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth Transitions */
.smooth-transition {
  transition: all 0.3s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Global Reset for Focus Outlines (Tarayıcı varsayılanlarını öldür) */
select:focus, 
input:focus, 
textarea:focus, 
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Select Arrow Fix */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Modern Global Page Preloader Reset */
#site-loader {
    transition: opacity 0.5s ease, visibility 0.5s;
}

#site-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

