/* --- TEMEL AYARLAR ve DEĞİŞKENLER --- */
:root {
    --bg-dark: #293058;
    --bg-medium: #354d7a;
    --text-light: #E0E1DD;
    --text-dark: #333;
    --accent-color: #00BFFF; /* Deep Sky Blue - Vurgu Rengi */
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden; /* Yatay scroll barı engelle */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0; /* Padding'i başlangıçta biraz azalttık */
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background-color: var(--bg-dark);
    padding: 0.75rem 0; /* Kaydırınca padding'i biraz daha azalttık */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.navbar-brand { 
    text-decoration: none; 
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav ul { list-style: none; display: flex; }
.navbar-nav li { margin-left: 2.5rem; }
.navbar-nav a { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.3s; position: relative; padding-bottom: 5px; }
.navbar-nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--accent-color); transition: width 0.3s; }
.navbar-nav a:hover::after, .navbar-nav a.active::after { width: 100%; }

/* HAMBURGER MENÜYÜ MASAÜSTÜNDE GİZLEMEK */
.hamburger-menu {
    display: none;
}

/* --- HERO BÖLÜMÜ --- */
/* BU BÖLÜM KESİNLİKLE SİLİNMEMELİ, EĞER SİLDİYSENİZ GERİ EKLEYİN */
.hero { position: relative; height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.4); }
.hero-content { color: white; }
.hero-content h1 { font-family: var(--font-heading); font-size: 5rem; letter-spacing: 2px; }
.hero-content p { font-size: 1.5rem; }


/* --- GENEL BÖLÜM AYARLARI --- */
.content-section { padding: 8rem 0; }
.bg-dark { background-color: var(--bg-medium); }
.section-title { font-family: var(--font-heading); font-size: 3rem; text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; font-size: 1.2rem; margin-bottom: 4rem; color: #aaa; }
.section-content { display: flex; align-items: center; gap: 4rem; }
.section-content .text-content { flex: 1; }
.section-content .image-content { flex: 1; }
.section-content img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.text-content h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--accent-color); }

/* --- ABYSS V1 TEKNİK ÖZELLİKLER --- */
.specs-list { list-style: none; margin-top: 1.5rem; }
.specs-list li { padding: 0.5rem 0; border-bottom: 1px solid #333; }
.specs-list strong { color: var(--accent-color); }

/* --- SPONSORLAR --- */
.sponsor-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 300px)); /* Kutuların minimum genişliğini ayarladık */
    gap: 1.5rem; /* Kutular arası boşluğu ayarladık */
    justify-content: center; /* Kutuları merkeze hizala */
    align-items: stretch; /* Kutuların aynı yüksekliğe sahip olmasını sağlar */
    margin-top: 3rem;
}

.sponsor-logo {
    background-color: #2a3d52; /* Hafif daha koyu bir gri tonu */
    padding: 1.2rem; /* İç boşluğu ayarladık */
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Her kutunun minimum yüksekliği */
    max-height: 140px; /* Her kutunun maksimum yüksekliği */
    overflow: hidden; /* Taşmayı engelle */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Hover efekti için geçiş */
}

.sponsor-logo:hover {
    transform: translateY(-5px); /* Üzerine gelince hafifçe yukarı kaydır */
    box-shadow: 0 8px 15px rgba(0, 191, 255, 0.3); /* Parlak bir gölge ekle */
}

.sponsor-logo img {
    max-width: 120%; /* Resmin kutu içinde %120 genişlikte olmasını sağlar */
    max-height: 120%; /* Resmin kutu içinde %120 yükseklikte olmasını sağlar */
    height: auto; /* Oranı koru */
    object-fit: contain; /* Resmin kutu içinde oranları bozulmadan sığmasını sağlar */
    display: block;
    /* mix-blend-mode ve filter satırlarını kaldırdık, çünkü logonun kendi arkaplanı var */
}
/* --- İLETİŞİM --- */
#iletisim { text-align: center; }
.contact-email { display: inline-block; margin-top: 2rem; font-size: 1.5rem; color: var(--accent-color); text-decoration: none; border: 2px solid var(--accent-color); padding: 1rem 2rem; border-radius: 5px; transition: background-color 0.3s, color 0.3s; }
.contact-email:hover { background-color: var(--accent-color); color: var(--bg-dark); }

/* --- FOOTER --- */
footer { text-align: center; padding: 2rem 0; background-color: var(--bg-medium); }

/* --- ANİMASYONLAR --- */
.fade-in { animation: fadeIn 1.5s ease-in-out forwards; }
.hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.show { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Buton Stilleri --- */
.btn-secondary {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

/* --- MOBİL UYUMLULUK (RESPONSIVE DESIGN) --- */

/* Tablet ve telefonlar için geçerli olacak stiller (768px ve altı) */
@media (max-width: 768px) {

    /* --- Mobil Menü Ayarları --- */
    .hamburger-menu {
        display: block; /* Hamburger ikonu sadece mobilde görünsün */
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        z-index: 10;
    }

    .hamburger-menu .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--text-light);
    }
    
    .navbar-nav {
        position: fixed; /* Menü tüm ekranı kaplasın */
        left: -100%; /* Başlangıçta ekranın solunda gizli */
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100vh; /* Tam ekran yüksekliği */
        text-align: center;
        transition: 0.3s;
        padding-top: 5rem;
    }

    .navbar-nav.is-active {
        left: 0; /* Aktif olduğunda ekranın soluna sıfırlanarak görünsün */
    }

    .navbar-nav ul {
        flex-direction: column; /* Linkler alt alta gelsin */
    }

    .navbar-nav li {
        margin: 2rem 0;
    }

    .navbar-nav a {
        font-size: 1.5rem;
    }

    /* Hamburger ikonunu 'X' işaretine dönüştürme animasyonu */
    .hamburger-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* --- İçerik ve Yazı Boyutu Ayarları --- */

    .hero-content h1 {
        font-size: 3.5rem; /* Ana başlığı küçülttük */
    }
    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem; /* Bölüm başlıklarını küçülttük */
    }

    /* Yan yana duran içerikleri alt alta getirme */
    .section-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* İletişim e-postasını küçültme */
    .contact-email {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}
/* Takım üyesi kartlarının üzerine gelince hafifçe büyüsün */
.team-member:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Teknik özellik listesinin üzerine gelince satır belirginleşsin */
.specs-list li:hover {
    background-color: rgba(0, 191, 255, 0.1); /* Vurgu renginin şeffaf hali */
}