﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #787a7c;
    color: #000000;
}

/* HEADER */






.header {
    background: linear-gradient(135deg, #2439a4, #192734);
    color: white;
    text-align: center;
    padding: 70px 20px 90px;
}

.header h1 {
    font-size: 42px;
    font-weight: 700;
}

.header p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}
.header{
    position: relative;
}

.header-dropdown{
    position: absolute;
    top: 96px;
    left: -580px;   /* 🔴 kırmızıyla işaretlediğin yer */
    z-index: 10;
}


/* ÜRÜN ALANI */
.product-section {
    display: flex;
    justify-content: center;
    margin-top: -60px;
    padding: 0 20px 80px;
}

/* KART ARTIK DAHA GENİŞ */
.product-card {
    background: #d8dce0;
    width: 100%;
    max-width: 1000px; /* YAZI YATAY AÇILIR */
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    text-align: center;
}


/* FOTOĞRAF */
.product-card img {
    width: 100%;
    max-width: 420px;
    height: 420px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}


/* METİN ALANI */
.product-description {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
    max-width: 900px; /* ASIL FARK BURADA */
    margin: 0 auto;
    text-align: left; /* Daha profesyonel okuma */
}


/* FOOTER */
<footer class="footer">
    <div class="footer-container">

        <!-- İLETİŞİM -->
        <div class="footer-info">
            <h3>İletişim</h3>

            <p>
                📧 Mail: 
                <a href="mailto:info@sirketadi.com">info@sirketadi.com</a>
            </p>

            <p>
                📞 Telefon: 
                <a href="tel:+905551112233">+90 555 111 22 33</a>
            </p>

            <p>
                📸 Instagram: 
                <a href="https://instagram.com/sirketadi" target="_blank">
                    @sirketadi
                </a>
            </p>
        </div>

        <!-- HARİTA -->
        <div class="footer-map">
            <iframe 
                src="https://www.google.com/maps?q=Adana&t=&z=13&ie=UTF8&iwloc=&output=embed"
                loading="lazy"
                referrerpolicy="no-referrer-when-downgrade">
            </iframe>
        </div>

    </div>

    <div class="footer-bottom">
        © 2026 Şirket Adı | Tüm Hakları Saklıdır
    </div>
</footer>


@media (max-width: 768px) {

    .product-card {
        max-width: 100%;
        min-height: 100vh;
        padding: 25px;
        border-radius: 0;
        box-shadow: none;
    }

    .product-card img {
        height: 55vh;
        max-width: 100%;
    }

    .product-description {
        max-width: 100%;
        font-size: 16px;
    }
}


/* FOOTER - İLETİŞİM */
.footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

/* İLETİŞİM BİLGİLERİ */
.footer-info h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-info a {
    color: #38bdf8;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* HARİTA */
.footer-map iframe {
    width: 380px;
    height: 200px;
    border: none;
    border-radius: 12px;
}

/* ALT SATIR */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

/* 📱 MOBİL */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .footer-map iframe {
        width: 100%;
        height: 220px;
    }

    .footer-info {
        text-align: left;
    }
}



.global-dropdown{
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
}

.header{
    background: linear-gradient(90deg, #1e3c72, #0f2027);
    padding: 60px 20px;
}

.header-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LOGO */
.header-logo img{
    width: 120px;
    height: auto;
}

/* YAZI */
.header-text h1{
    color: #fff;
    font-size: 42px;
    margin: 0;
}

.header-text p{
    color: #e0e0e0;
    margin-top: 8px;
    font-size: 16px;
}


/* =========================
   📱 MOBİL UYUMLULUK EKLERİ
   (Mevcut kodlara DOKUNMAZ)
   ========================= */

@media (max-width: 768px) {

    /* HEADER GENEL */
    .header {
        padding: 40px 15px 60px;
        text-align: center;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* LOGO */
    .header-logo img {
        max-width: 120px;
        height: auto;
    }

    /* BAŞLIK YAZISI */
    .header-text h1 {
        font-size: 28px;
    }

    .header-text p {
        font-size: 15px;
    }

    /* DROPDOWN (KADRO BUTONU) */
    .header-dropdown {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header-dropdown .btn {
        width: auto;
        font-size: 14px;
        padding: 8px 14px;
    }

    /* DROPDOWN MENÜ */
    .header-dropdown .dropdown-menu {
        width: 90vw;
        max-width: 320px;
        margin: 10px auto 0;
    }

    /* ÜRÜN ALANI */
    .product-section {
        padding: 20px 10px 50px;
    }

    .product-card {
        padding: 20px;
        border-radius: 14px;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .product-card h2 {
        font-size: 22px;
        text-align: center;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: left;
    }

    .footer-map iframe {
        width: 100%;
        height: 220px;
    }
}
