/* =========================
   GENEL AYARLAR
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #222;
    padding-top: 110px;
}

/* =========================
   HEADER
========================= */
header {
    background: white;
    color: darkslategray;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.lang-flag {
    width: 24px;
    height: auto;
    cursor: pointer;
    margin-left: 8px;
}

.lang-flag:hover {
    opacity: 0.7;
}


/* Tüm sayfalarda marka logoları sabit */
.brand-logo {
    max-width: 220px;
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Marka kutuları aynı yükseklikte */
.brand-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
}

header img {
    height: 55px;
}

/* =========================
   MENÜ
========================= */
nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    color: #001b2b !important;
    font-weight: 600;
    margin-left: 22px;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #004b75 !important;
    text-decoration: underline;
}

/* =========================
   HERO
========================= */
.hero {
    background: #f2f2f2;
    padding: 80px 15px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero .lead {
    font-size: 18px;
}

/* =========================
   MARKALAR
========================= */
.brand-box {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-height: 280px;
}

.brand-logo {
    max-height: 70px;
    margin-bottom: 15px;
}

/* =========================
   İHRACAT
========================= */
#uretim img {
    max-width: 480px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

#ihracat img {
    max-width: 480px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
========================= */
footer {
    /*background: #002940; */
    background: white;
    color: #002940;
    padding: 20px 15px;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

/* SOSYAL */
.social-icons i {
    font-size: 26px;
    color: #002940;
    margin: 0 12px;
    transition: opacity 0.2s;
}

.social-icons i:hover {
    opacity: 0.7;
}

/* =========================
   FOOTER INFO BOX (LOGO)
========================= */
.footer-info-box {
    margin: 16px auto 10px;
    text-align: center;
}

.info-box-icon img {
    width: 200px;     /* ⬅️ KESİN KONTROL */
    height: auto;
    display: block;
    margin: 0 auto 6px;
}

.info-box-content p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

.address-compact p {
    margin: 0;
    line-height: 1.3;
}

/* =========================
   MOBİL
========================= */
@media (max-width: 768px) {

    body {
        padding-top: 150px;
    }

    header .container {
        flex-direction: column;
        padding: 12px 10px;
    }

    header img {
        height: 45px;
        margin-bottom: 10px;
    }

    nav {
        justify-content: center;
    }

    .nav-link {
        margin: 6px 10px;
        font-size: 15px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero .lead {
        font-size: 16px;
    }

    .brand-box {
        min-height: auto;
        padding: 20px 15px;
    }

    .brand-logo {
        max-height: 55px;
    }

    /* Footer logo mobil */
    .info-box-icon img {
        width: 90px;
    }

    .info-box-content p {
        font-size: 12px;
    }

}
