/* Temel Yazı Tipi Tanımlaması */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Tüm elementlere zorla uygula */
html, body, *, .title, .links {
    font-family: "Inter", sans-serif !important;
}
* {
      font-family: "Inter", sans-serif;
}


/* Dinamik Yazı Boyutu Değişkenleri (Root) */
:root {
    --title-font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    --links-font-size: clamp(1rem, 0.8rem + 0.6vw, 1.25rem);
}

/* Başlık Stilleri */
.title { 
    color: #2c3e50; 
    font-size: var(--title-font-size); 
    font-weight: bold; 
    line-height: 1.2; 
    text-transform: uppercase; 
}

/* Menü ve Link Yazı Stilleri */
.links {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--links-font-size);
}

/* Masaüstü Dropdown Yazı Boyutu */
@media screen and (min-width: 1401px) {
    .dropdown-menu li a { 
        font-size: 0.95rem; 
        text-decoration: none; 
        color: #2c3e50; 
    }
}

/* Tablet ve Mobil Hizalama/Dekorasyon */
.dropdown-menu li a { 
    text-align: left; 
    text-decoration: none; 
    color: #2c3e50; 
}