/* style.css - V2 */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR (MENÜ) */
nav {
    background-color: #1e1e1e;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #4da6ff; /* Hover rengi */
}

/* İÇERİK ALANI */
.container {
    flex: 1; /* Footer'ı aşağı iter */
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

h1 { color: #4da6ff; }
h2 { border-bottom: 1px solid #333; padding-bottom: 10px; margin-top: 30px; }

/* FOOTER */
footer {
    background-color: #1e1e1e;
    color: #666;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}
/* --- INSTAGRAM UPDATE --- */

/* Sosyal Medya İkonları */
.social-links {
    margin-bottom: 10px;
}

.social-links a {
    color: #888;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #4da6ff;
    transform: scale(1.2); /* Üzerine gelince büyüsün */
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 600px) {
    /* Menüyü mobilde sıkıştır */
    nav a {
        display: inline-block;
        margin: 0 8px;
        font-size: 0.8rem;
    }
    
    .container {
        width: 95%; /* Kenar boşluklarını azalt */
        margin: 20px auto;
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem; /* Başlığı telefona sığdır */
    }
}
/* --- MODERN GÜNCELLEME (INSTAGRAM READY) --- */

/* 1. Hero Alanı (Giriş) */
.hero {
    margin-top: 50px;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in;
}

/* 2. İsim için Renk Geçişi (Gradient) */
.gradient-text {
    background: linear-gradient(90deg, #4da6ff, #00ffcc); /* Mavi-Yeşil geçiş */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem; /* İsmi büyüttük */
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

/* 3. Hareketli Alt Başlık */
.typing-container {
    font-size: 1.5rem;
    color: #b0b0b0;
    height: 30px; /* Zıplamayı önler */
    margin-bottom: 40px;
}

/* 4. Parlayan Butonlar */
.btn-glow {
    background: linear-gradient(45deg, #4da6ff, #0066cc);
    border: none;
    padding: 12px 35px;
    color: white;
    border-radius: 30px; /* Yuvarlak kenar */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.4); /* Parlama efekti */
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: scale(1.05); /* Büyüme efekti */
    box-shadow: 0 0 25px rgba(77, 166, 255, 0.7);
}

/* 5. Animasyon Tanımları */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- PROJE SAYFASI DÜZELTME (BOŞLUKLAR) --- */

.project-grid {
    display: grid;
    /* Kartların genişliğini mobilde ve masaüstünde otomatik ayarlar */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 50px; /* KARTLAR ARASI BOŞLUK (Burası önemli) */
    margin-top: 50px;
    padding-bottom: 50px;
}

.project-card {
    background-color: #161616; /* Kartın kendi rengi (Siyahın tonu) */
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px; /* Kartın içindeki yazılar kenarlara yapışmasın */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Kartların boyunu eşitle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mouse üzerine gelince kart havaya kalksın */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #555;
}

.card-header {
    margin-bottom: 25px; /* İkon ile başlık arasını aç */
    text-align: center;
}

.project-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}

.project-card p {
    color: #aaa;
    line-height: 1.6; /* Yazı satır aralarını aç */
    font-size: 0.95rem;
    margin-bottom: 20px;
}
/* --- İLETİŞİM SAYFASI (FORM STİLİ) --- */

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #161616;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: left;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #4da6ff;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #4da6ff;
    box-shadow: 0 0 10px rgba(77, 166, 255, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}
.alert-success { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.alert-error { background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }
/* --- KAYAN TEKNOLOJİ ŞERİDİ (SLIDER) --- */

.tech-slider {
    background: #161616; /* Şerit arka planı */
    padding: 20px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden; /* Taşanı gizle */
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
    white-space: nowrap;
}

/* Yanlardan hafif karartma efekti (Profesyonel Dokunuş) */
.tech-slider::before,
.tech-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.tech-slider::before {
    left: 0;
    background: linear-gradient(to right, #121212, transparent);
}

.tech-slider::after {
    right: 0;
    background: linear-gradient(to left, #121212, transparent);
}

.slide-track {
    display: inline-block;
    animation: scroll 20s linear infinite; /* 20 saniyede bir tur */
}

.tech-item {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #888;
    margin: 0 40px; /* Logolar arası boşluk */
    transition: color 0.3s;
}

.tech-item i {
    margin-right: 10px;
    font-size: 2rem;
}

/* Üzerine gelince renklensin */
.tech-item:hover {
    color: #4da6ff;
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}

/* Animasyon Tanımı */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Yarısına kadar kaydırıp başa sarar */
}u
/* --- TIMELINE (ZAMAN ÇİZELGESİ) --- */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

/* Ortadaki Çizgi */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 20px; /* Mobilde solda dursun */
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    margin-bottom: 30px;
}

/* Noktalar */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: auto;
    left: 11px; /* Çizginin üzerine oturt */
    background-color: #121212;
    border: 3px solid #4da6ff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item:hover::after {
    background-color: #4da6ff;
    box-shadow: 0 0 10px #4da6ff;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #1e1e1e;
    position: relative;
    border-radius: 6px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: #4da6ff;
}

.time-date {
    color: #4da6ff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h3 {
    margin-top: 0;
    color: white;
}
/* --- ROKET (SCROLL TO TOP) --- */

html {
    scroll-behavior: smooth; /* Sayfanın yağ gibi kaymasını sağlar */
}

#rocketBtn {
    display: none; /* Başlangıçta gizli */
    position: fixed; /* Ekrana sabitle */
    bottom: 30px;
    right: 30px;
    z-index: 99; /* Her şeyin üstünde dursun */
    border: none;
    outline: none;
    background: linear-gradient(45deg, #4da6ff, #0066cc); /* Senin tema rengin */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%; /* Yuvarlak yap */
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.6); /* Parlama */
    transition: all 0.3s ease;
}

#rocketBtn:hover {
    background: #3385d6;
    transform: translateY(-5px); /* Üzerine gelince havalanma hissi */
    box-shadow: 0 0 25px rgba(77, 166, 255, 0.9);
}

/* Tıklayınca roket fırlama animasyonu (Opsiyonel ama havalı) */
.liftoff {
    animation: flyUp 1s forwards;
}

@keyframes flyUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-1000px); opacity: 0; }
}