/* Font Yükleme (Google Fonts ile) */
/* <link> etiketleri header'da olacak şekilde planlandı */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600&display=swap');
/* Global Stil */

body {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
    background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}
header {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  transition: background-color 0.3s ease;
}


h1, h2, h3, h4, h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}