* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #f0f0f0;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

/* Şık Başlık Fontları */
h1, h2, h3, .logo-text {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* WhatsApp Minimalist Tasarım */
.whatsapp-minimal {
    position: fixed; bottom: 30px; right: 30px;
    background: rgba(37, 211, 102, 0.05); color: #25d366;
    width: 50px; height: 50px; border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 24px; z-index: 10000; text-decoration: none; transition: 0.4s ease;
}
.whatsapp-minimal:hover { background: #25d366; color: #fff; transform: scale(1.1) rotate(5deg); }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%; background: #000; border-bottom: 1px solid #d4af37;
    position: sticky; top: 0; z-index: 9000;
}
.nav-logo { height: 55px; margin-right: 15px; }
.logo-box { display: flex; align-items: center; }
.logo-text { font-size: 20px; font-weight: bold; color: #d4af37; }
.logo-text span { color: #fff; font-weight: 200; }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; }

/* Hero */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('arkaplan.jpg') center/cover no-repeat;
    display: flex; justify-content: center; align-items: center; text-align: center;
}
.sub-title { color: #d4af37; text-transform: uppercase; letter-spacing: 6px; font-size: 10px; margin-bottom: 10px; display: block; }
.hero h1 { font-size: 3rem; color: #fff; font-weight: 400; margin-bottom: 10px; }
.hero p { font-weight: 200; font-size: 1rem; color: #aaa; }

/* Ürün Galerisi */
.products { padding: 100px 8%; text-align: center; }
.section-title h2 { font-size: 30px; color: #d4af37; margin-bottom: 10px; }
.divider { width: 40px; height: 1px; background: #d4af37; margin: 0 auto 20px; }
.section-title p { font-size: 14px; font-weight: 200; color: #888; max-width: 600px; margin: 0 auto 50px; font-style: italic; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.product-card {
    background: #0f0f0f; padding: 12px; border-radius: 2px; border: 1px solid #1a1a1a;
    text-decoration: none; color: inherit; transition: 0.5s ease; display: block;
}
.product-card:hover { border-color: #d4af37; transform: translateY(-8px); }
.product-card img { width: 100%; height: 380px; object-fit: cover; transition: 0.6s ease; filter: brightness(0.9); }
.product-card:hover img { filter: brightness(1.1); }
.product-card h3 { color: #d4af37; margin-top: 20px; font-size: 16px; font-weight: 400; }
.product-card span { font-size: 9px; color: #555; letter-spacing: 3px; margin-top: 8px; display: block; }

/* İletişim */
.contact { padding: 100px 8%; background: #030303; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info h2 { color: #d4af37; margin-bottom: 40px; font-size: 26px; }
.contact-item { display: flex; align-items: center; margin-bottom: 30px; }
.contact-item i { font-size: 20px; color: #d4af37; margin-right: 25px; }
.contact-item a { color: #fff; text-decoration: none; transition: 0.3s; font-weight: 200; }
.contact-item a:hover { color: #d4af37; }
.slogan-footer { margin-top: 50px; font-style: italic; color: #333; font-size: 13px; font-weight: 200; }

/* Footer */
footer { padding: 50px; text-align: center; background: #000; border-top: 1px solid #111; }
footer p { font-size: 12px; font-weight: 200; color: #444; }
.won-signature { margin-top: 20px; font-size: 9px; color: #1a1a1a; letter-spacing: 8px; text-transform: uppercase; font-weight: bold; }