/* Temel sıfırlamalar ve modern ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* YENİ: Sayfa içi linklere tıklandığında (ileride menü eklersek)
       yumuşak bir kaydırma efekti sağlar. */
    scroll-behavior: smooth;
}

body {
    /* YENİ: Font ailesi 'Inter' olarak güncellendi. */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* YENİ: Arka plan daha koyu, profesyonel bir tona çekildi. */
    background-color: #0A0A0A;
    color: #FAFAFA;
}

/* ANA KARŞILAMA (HERO) BÖLÜMÜ
*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative; 
    
    /* KALDIRILDI: 'filter' özelliği kaldırıldı. */
    
    /* YENİ: Arka planı body ile aynı yaptık. */
    background-color: #0A0A0A; 
    
    /* YENİ: Yazıların çok genişe yayılmasını engellemek */
    padding: 0 5%;
}

.hero-content {
    text-align: center;
    z-index: 10; 
    position: relative;
}

h1 {
    font-size: 5rem; /* 80px (Daha etkili bir başlık için büyüttük) */
    font-weight: 700;
    letter-spacing: -2px; /* Harf arasını biraz kapattık */
}

/* YENİ: BAŞLIK (H1) İÇİN ANİMASYONLU GRADIENT
   Bu, blob efektinin yerini alan ana görsel efektimiz.
*/
h1 span {
    /* Yazıyı gradient ile dolduruyoruz */
    background: linear-gradient(90deg, #4a90e2, #FF6B6B, #8E2DE2, #4a90e2);
    
    /* Gradient'in boyutunu yazının 4 katı yapıyoruz */
    background-size: 400% 100%;
    
    /* Yazının kendisini şeffaf yapıp arka planı gösteriyoruz */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* 'gradient-flow' animasyonunu uyguluyoruz */
    animation: gradient-flow 10s ease-in-out infinite;
}

/* YENİ: Gradient'i hareket ettiren animasyon */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Hero bölümündeki alt başlık (p) */
.hero-content p {
    font-size: 1.3rem; /* 20.8px */
    font-weight: 300;
    color: #a0a0a0;
    margin-top: 10px;
}

/* KALDIRILDI: .cursor-blob, .blob, @keyframes move stilleri kaldırıldı. */


/* İÇERİK BÖLÜMLERİ (Hakkımda, Yetenekler vb.)
*/
.content-section {
    padding: 100px 10%;
    max-width: 1000px; /* Okunabilirlik için genişliği güncelledik */
    margin: 0 auto; 
    background-color: #121212; /* Yeni arka plan tonu */
    border-top: 1px solid #222;
}

/* YENİ: Bölüm başlıkları (h2) daha modern hale getirildi */
.content-section h2 {
    font-size: 3rem; /* 48px */
    font-weight: 600;
    color: #FAFAFA; /* Daha parlak, dikkat çekici */
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.content-section p {
    font-size: 1.15rem; /* 18.4px */
    line-height: 1.8; /* Satır aralığı artırıldı (daha okunaklı) */
    color: #cccccc; 
    margin-bottom: 20px;
}

.content-section strong,
.contact-details strong {
    color: #4a90e2; /* Vurgu rengi */
    font-weight: 600;
}


/* İLETİŞİM BÖLÜMÜ
*/
.contact-details {
    margin: 40px 0;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4a90e2;
    text-decoration: underline;
}

/* SOSYAL MEDYA BUTONLARI (İyileştirildi)
*/
.social-links {
    display: flex;
    gap: 20px;
}

.social-button {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #222; /* Arka plan güncellendi */
    border-radius: 50%; 
    transition: transform 0.3s ease, 
                background-color 0.3s ease;
}

.social-button svg {
    width: 28px;
    height: 28px;
    fill: #FAFAFA; 
}

/* YENİ: Hover efekti sadeleştirildi, zıplama (translateY) kaldırıldı. */
.social-button:hover {
    transform: scale(1.1);
}

.social-button.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-button.twitter:hover {
    background-color: #1DA1F2;
}


/* YENİ: KAYDIRMA İLE BELİRME ANİMASYONU (Scroll Reveal)
   JavaScript tarafından tetiklenecek
*/
.reveal-on-scroll {
    opacity: 0;
    /* Öğeler 30px aşağıdan başlayacak */
    transform: translateY(30px); 
    
    /* Yumuşak bir geçiş ekliyoruz */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* JavaScript bu sınıfı eklediğinde... */
.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0); /* ...öğe normal pozisyonuna döner */
}