/* Genel Ayarlar */
:root {
    --dark: #1C1C1C;
    --gray: #999996;
    --sand: #C2A97A;
    --white: #F5F2EF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* --- OTOMATİK MOBİL UYUMLU RESİMLER --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: var(--dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Genel Tasarımı */
.logo {
    font-size: 24px; /* Boyutu buradan dilediğin gibi ayarlayabilirsin */
    font-weight: 400;
    letter-spacing: 5px;
    color: #F5F2EF; /* Kırık Beyaz */
    text-transform: uppercase;
}

/* ASTA Ticaret Vurgusu */
.logo .asta-vurgu {
    color: #C2A97A; /* Sıcak Kum Rengi */
    font-weight: 700; /* ASTA kısmını biraz daha kalın yaparak vurguyu artırdık */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 20px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.9rem; }

/* Hero Section */
.hero {
    height: 90vh; /* Ekranın %90'ını kaplar */
    /* Fotoğrafın üzerine %50 siyah bir katman ekliyoruz */
    background-image: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.6)), url('img/neocastarkaplan.png'); 
    background-size: cover; /* Fotoğrafı alanı dolduracak şekilde boyutlandırır */
    background-position: center; /* Fotoğrafı merkeze odaklar */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5F2EF; /* Kırık Beyaz rengi */
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 8px; /* Harf arasını açarak lüks bir hava katıyoruz */
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

/* "Ürünleri Keşfet" Butonunu Şıklaştıralım */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    border: 1px solid #C2A97A; /* Sıcak Kum rengi */
    color: #C2A97A;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.4s ease;
}

.btn:hover {
    background-color: #C2A97A;
    color: #1C1C1C; /* Kömür Siyahı */
}

/* Ürün Grid Yapısı */
.container { width: 90%; max-width: 1200px; margin: auto; padding: 50px 0; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover { transform: translateY(-5px); border-color: var(--sand); }

.buy-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Basitlik için mobilde menüyü gizledik */
    .hero h1 { font-size: 2rem; }
}


/* Sosyal Medya Bölümü */
.social-section {
    background-color: #1C1C1C; /* Kömür Siyahı */
    color: #F5F2EF; /* Kırık Beyaz */
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #333;
}

.social-section h2 {
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 300;
}

.social-section p {
    color: #999996; /* Beton Grisi */
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #C2A97A; /* Sıcak Kum */
    color: #C2A97A;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.instagram-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Üzerine gelince (Hover) efekt */
.instagram-btn:hover {
    background-color: #C2A97A;
    color: #1C1C1C;
}