/*
===========================================
YAZILIRIM TİPİNİ DEĞİŞTİRME REHBERİ
===========================================

Bu dosyada sadece font-family değerini değiştirin.

ADIM 1: Aşağıdaki @import satırlarından birini aktif edin (yorum işaretlerini kaldırın)
ADIM 2: body { font-family: ... } kısmında aynı font adını yazın

===========================================
*/

/* FONT SEÇENEKLERİ - BİRİNİ AKTİF EDİN */

/* Seçenek 1: Poppins (Şu an aktif - Modern, temiz) */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Seçenek 2: Inter (Çok okunabilir, modern) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); */

/* Seçenek 3: Montserrat (Güçlü, dikkat çekici) */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap'); */

/* Seçenek 4: Roboto (Google'ın klasik fontu) */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); */

/* Seçenek 5: Open Sans (En popüler, çok net) */
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); */

/* Seçenek 6: Nunito (Yumuşak, arkadaşça) */
/* @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap'); */

/* Seçenek 7: Raleway (Zarif, şık) */
/* @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap'); */

/* Seçenek 8: Ubuntu (Linux'un fontu - modern) */
/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap'); */

/* ===========================================
   BURASI YAZILIRIM TİPİNİ BELİRLER
   =========================================== */

body, html {
    /* Buradaki font adını yukarıdaki aktif font ile aynı yapın */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tüm başlıklar için de geçerli */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Butonlar */
.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/*
===========================================
ÖRNEK KULLANIM: Montserrat'a geçmek için
===========================================

1. Yukarıda Montserrat satırının yorum işaretini kaldırın:
   @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

2. Poppins'i yorum yapın:
   /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); 

3. Tüm 'Poppins' yazan yerleri 'Montserrat' ile değiştirin:
   font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

===========================================
*/
