/* 1. DEĞİŞKENLER VE TEMEL AYARLAR */
:root {
    --primary-color: #0061f2;
    --secondary-color: #6900f2;
    --dark-bg: #0f172a;
    --light-bg: #f3f4f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --sidebar-width: 260px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; text-decoration: none; list-style: none; }
body { background-color: var(--light-bg); color: var(--text-dark); overflow-x: hidden; }

/* 2. SIDEBAR (YAN MENÜ) */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--dark-bg);
    height: 100vh;
    position: fixed;
    left: calc(var(--sidebar-width) * -1);
    top: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.4s ease;
    z-index: 1000;
}
.sidebar.open { left: 0; }

.sidebar-header { padding: 2rem; text-align: center; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-links { padding: 1rem; flex-grow: 1; }
.nav-links a { display: flex; align-items: center; padding: 12px 20px; color: #94a3b8; border-radius: 8px; transition: 0.3s; }
.nav-links a i { margin-right: 15px; width: 20px; text-align: center; }
.nav-links a:hover, .nav-links a.active { background: var(--primary-color); color: var(--white); transform: translateX(5px); }
.sidebar-footer { padding: 1rem; text-align: center; color: #475569; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* Hamburger Buton */
.hamburger { position: fixed; top: 20px; left: 20px; z-index: 1100; background: var(--white); border: none; padding: 10px 15px; border-radius: 8px; cursor: pointer; box-shadow: var(--shadow); transition: 0.4s; }
.hamburger.shift { left: calc(var(--sidebar-width) + 20px); }

/* İçerik Kaydırma */
.content { transition: margin-left 0.4s ease; min-height: 100vh; background: var(--light-bg); }
.content.shift { margin-left: var(--sidebar-width); }

/* 3. ANA SAYFAYA ÖZEL İÇERİKLER */
.hero {
    height: 50vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; 
    height: 70%;
    background-image: url('zeykaa_oto_logo.jpg'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05; 
    z-index: 0;
    pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: #cbd5e1; margin-bottom: 2rem; }

.features, .products { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }

.feature-box, .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item, .product-card {
    background: var(--white); padding: 2rem; border-radius: 16px;
    box-shadow: var(--shadow); text-align: center; transition: transform 0.3s;
}
.feature-item:hover, .product-card:hover { transform: translateY(-10px); }
.icon-box { width: 60px; height: 60px; background: #e0e7ff; color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.5rem auto; }

/* Responsive */
@media (max-width: 992px) {
    .content.shift { margin-left: 0; }
    .hamburger.shift { left: calc(var(--sidebar-width) + 10px); }
    .hero h1 { font-size: 2rem; }
}

/* --- GOOGLE TRANSLATE ÖZEL AYARLAR --- */

/* Sidebar Taşma Ayarı */
.sidebar, nav, ul { overflow: visible !important; }

/* Menü Butonu */
.language-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s;
    z-index: 50;
}
.language-item:hover { background-color: rgba(255, 255, 255, 0.1); }
.language-item .google-logo { width: 24px; height: 24px; margin-right: 12px; background-color: white; padding: 3px; border-radius: 50%; }
.language-item .nav-text { color: #fff; font-size: 15px; font-weight: 500; }

/* Translate Kutusunu Şeffaf Yapıp Üzerine Serme */
#google_translate_element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.01 !important; /* Görünmez ama tıklanabilir */
    z-index: 100;
    overflow: hidden;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Gereksiz Google İkonlarını Gizle */
.goog-te-gadget-icon { display: none !important; }
.goog-te-menu-value { display: none !important; }
.goog-te-combo {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0 !important;
    cursor: pointer !important;
}

/* --- EN ÖNEMLİ KISIM: Google Üst Barı GİZLEME --- */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
} 
body {
    top: 0px !important; 
}