/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Scrollbar Özelleştirmesi */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #2563eb; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a; 
}

/* Menü Link Efektleri */
.nav-link {
    color: #475569;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #2563eb;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Sosyal Medya İkon Efektleri */
.social-icon {
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.3s ease;
    display: inline-block;
}
.social-icon:hover {
    color: #1e3a8a;
    transform: translateY(-5px) scale(1.1);
}

/* Ana Sayfa Arka Plan Deseni (Hafif bir doku) */
.hero-bg {
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}