/* --- GLOBAL RESET & FONTS --- */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');



:root {
    --primary: #c5a059; /* Altın/Pirinç */
    --primary-hover: #e2be7d;
    --bg: #0a0a0b;
    --bg-light: #121215;
    --card-bg: #1a1a1e;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --border: #2a2a2e;
    --transition: 0.3s ease-in-out;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 90px;
    background: rgba(10, 10, 11, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 90px;
    background: rgba(10, 10, 11, 0.98); /* Saydamlığı biraz azalttık */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999; /* Çok yüksek bir değer vererek üstte tuttuk */
    border-bottom: 1px solid var(--border);
    pointer-events: auto; /* Tıklamaları aktif et */
}

.nav-links {
    display: flex;
    gap: 30px;
    z-index: 10000;
}

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 10px 5px;
        display: inline-block;
        transition: var(--transition);
    }

/* Linke tıklandığında bölümün Navbar'ın altında kalmaması için */
section {
    scroll-margin-top: 90px; /* Navbar yüksekliği kadar boşluk bırakır */
}

/* Hero alanının Navbar'ın üzerine çıkmasını engellemek için */
.hero {
    position: relative;
    z-index: 1; /* Navbar 9999 iken bu 1 olmalı */
    margin-top: 0;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 12px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    transition: var(--transition);
}

    .lang-btn:hover, .lang-btn.active {
        background: var(--primary);
        color: #000;
    }

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1580497851335-06a14304892c?q=80&w=1600') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 90px;
}

    .hero h1 {
        font-size: 3.5rem;
        color: var(--primary);
        margin-bottom: 20px;
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        color: var(--text-dim);
        margin-bottom: 30px;
    }

/* --- SECTIONS --- */
.container {
    padding: 100px 8%;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--primary);
        margin: 15px auto 0;
    }

/* --- ABOUT SECTION --- */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text p {
        margin-bottom: 20px;
        color: var(--text-dim);
    }

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 300px;
}

.stat-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-bottom: 3px solid var(--primary);
    text-align: center;
}

    .stat-item h3 {
        font-size: 2rem;
        color: var(--primary);
    }

/* --- CATEGORY & PRODUCT GRIDS --- */
.category-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card, .product-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

    .category-card:hover, .product-card:hover {
        border-color: var(--primary);
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .category-card img, .product-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        filter: brightness(0.7);
        transition: var(--transition);
    }

    .category-card:hover img {
        filter: brightness(1);
        scale: 1.05;
    }

    .category-card h3 {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        font-size: 1.1rem;
        z-index: 2;
    }

.product-info {
    padding: 20px;
}

    .product-info h3 {
        color: var(--primary);
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .product-info p {
        color: var(--text-dim);
        font-size: 0.85rem;
    }

/* --- CONTACT SECTION --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

    .contact-info p {
        margin-bottom: 15px;
        color: var(--text-dim);
    }

    .contact-info strong {
        color: var(--primary);
        display: block;
        margin-top: 20px;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form input, .contact-form textarea {
        background: var(--bg-light);
        border: 1px solid var(--border);
        padding: 15px;
        color: white;
        border-radius: 5px;
        font-family: inherit;
    }

        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }

/* --- BUTTONS --- */
.cta-btn {
    background: var(--primary);
    color: #000;
    padding: 15px 35px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    transition: var(--transition);
}

    .cta-btn:hover {
        background: var(--text);
        transform: scale(1.05);
    }

.back-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    margin-bottom: 30px;
    cursor: pointer;
}

/* --- DETAIL PAGE --- */
.detail-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.detail-img {
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
}

.detail-text {
    flex: 1.5;
    min-width: 300px;
}

    .detail-text h2 {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 25px;
    }

    .detail-text p {
        font-size: 1.1rem;
        color: var(--text-dim);
        margin-bottom: 30px;
    }

/* --- FOOTER --- */
footer {
    padding: 50px 8%;
    background: #000;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
    /* Mobil menü buraya eklenebilir */
    .detail-text h2 {
        font-size: 2rem;
    }
}
.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: flex;
        align-items: center;
        overflow: hidden; /* Dışarı taşan devasa yeşil kısımları keser */
        max-height: 80px; /* Navbar yüksekliğini geçmesin */
    }

.navbar-logo {
    height: 60px;
    width: 150px; /* Genişliği mutlaka sabitlemelisin, yoksa yaprak ve masa görünmeye devam eder */
    object-fit: cover; /* Resmi kutunun içine 'zoom' yaparak sığdırır */
    object-position: center; /* Resmin tam ortasındaki beyaz kartvizite odaklanır */
    display: block;
}

    /* Mouse ile üzerine gelince hafif bir parlama veya büyüme efekti (isteğe bağlı) */
    .navbar-logo:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

/* Mobil uyum: Küçük ekranlarda logo boyutunu biraz küçültelim */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
}

/* WhatsApp Sabit Buton Tasarımı */
.whatsapp-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important; /* Sol tarafı iptal et */
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    color: white !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 35px !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: transform 0.3s ease !important;
}

    .whatsapp-btn:hover {
        transform: scale(1.1) !important;
        background-color: #128c7e !important;
    }

    /* İkonun kendisi için ekstra ayar */
    .whatsapp-btn i {
        line-height: 60px !important;
    }