/* --- TEMEL AYARLAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: #000; 
    color: #fff; 
    font-family: 'Oswald', sans-serif; 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

/* --- NAVİGASYON --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 25px 50px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}
.logo { font-family: 'Orbitron'; font-size: 24px; letter-spacing: 5px; font-weight: 900; }
.logo span { color: #d4af37; }
.nav-links a { 
    color: #fff; text-decoration: none; margin-left: 30px; 
    font-weight: bold; font-size: 13px; letter-spacing: 2px; 
    transition: 0.3s; text-transform: uppercase;
}
.nav-links a:hover { color: #d4af37; }

/* --- BÖLÜM 1: GİRİŞ (DEV ELDİVENLER ARKA PLANDA) --- */
#home {
    height: 100vh; width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1500&q=80');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.hero-h1 { font-family: 'Orbitron'; font-size: clamp(45px, 10vw, 110px); letter-spacing: 12px; margin: 15px 0; font-weight: 900; }
.gold-tag { color: #d4af37; font-family: 'Orbitron'; letter-spacing: 6px; font-size: 18px; font-weight: 400; }
.hero-btn { 
    margin-top: 40px; padding: 20px 60px; border: 2px solid #d4af37; 
    color: #d4af37; text-decoration: none; font-weight: 900; transition: 0.5s;
    font-family: 'Orbitron'; font-size: 14px; letter-spacing: 2px;
}
.hero-btn:hover { background: #d4af37; color: #000; box-shadow: 0 0 40px rgba(212,175,55,0.6); }

/* --- BÖLÜM 2: İÇERİK (RİNG ARKA PLANDA SABİT) --- */
#main-content {
    display: flex; min-height: 100vh; width: 100%; background: #050505;
    border-top: 1px solid #111;
}

/* Sol Panel: Yazıların Akacağı Yer */
.content-panel {
    flex: 1.2; padding: 100px 80px; 
    background: #050505;
    border-right: 1px solid #222;
}

/* Sağ Panel: Uzaktan Ring Fotoğrafı (SABİT) */
.ring-panel {
    flex: 0.8; 
    background: linear-gradient(to left, rgba(0,0,0,0), #050505), 
                url('https://images.unsplash.com/photo-1509563268479-0f004cf3f58b?auto=format&fit=crop&w=1500&q=80');
    background-size: cover; 
    background-position: center; 
    position: sticky; top: 0; height: 100vh;
}

/* Menü Butonları */
.tab-nav { display: flex; gap: 35px; margin-bottom: 60px; border-bottom: 1px solid #111; padding-bottom: 15px; }
.tab-btn { 
    background: none; border: none; color: #444; font-family: 'Orbitron'; 
    cursor: pointer; font-size: 14px; letter-spacing: 3px; transition: 0.4s;
    text-transform: uppercase; font-weight: 900;
}
.tab-btn.active { color: #d4af37; }

/* Metin Alanları */
.tab-pane { display: none; animation: fadeInUp 0.7s ease-out forwards; }
.tab-pane.active { display: block; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 { font-family: 'Orbitron'; font-size: 55px; color: #d4af37; margin-bottom: 30px; line-height: 1; font-weight: 900; }
p { font-size: 21px; color: #bbb; line-height: 1.9; margin-bottom: 30px; font-weight: 300; text-align: justify; }

/* İstatistik Bölümü */
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 50px; }
.stat-item { background: #0a0a0a; padding: 35px; border: 1px solid #111; border-left: 5px solid #d4af37; transition: 0.3s; }
.stat-item:hover { background: #111; transform: scale(1.02); }
.stat-item strong { display: block; font-size: 45px; font-family: 'Orbitron'; color: #fff; margin-bottom: 5px; }
.stat-item span { color: #d4af37; font-size: 13px; letter-spacing: 3px; font-weight: bold; }

/* Alıntı Alanı */
.quote-box { margin-top: 60px; padding: 40px; background: rgba(212, 175, 55, 0.03); border-radius: 10px; border-right: 4px solid #d4af37; text-align: center; }
.quote-box h4 { font-family: 'Orbitron'; font-size: 24px; font-style: italic; color: #eee; }

/* Mobil Görünüm */
@media (max-width: 1024px) {
    #main-content { flex-direction: column; }
    .ring-panel { height: 40vh; position: relative; }
    .content-panel { padding: 50px 30px; }
    .hero-h1 { font-size: 60px; }
}