/* --- GENEL AYARLAR --- */
:root {
    --primary-color: #2F5233; /* Orman Yeşili - Marka Rengi */
    --primary-hover: #1e3621; /* Hover Rengi */
    --accent-color: #D4AF37; /* Mat Altın */
    --text-color: #333;
    --bg-light: #fdfbf7;
    --white: #ffffff;
    --border-radius: 4px;
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar { height: 90px; display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--accent-color); }

.cta-button-small {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}
.cta-button-small:hover { background-color: var(--primary-hover); }

/* --- HERO --- */
.hero {
    background-image: url('https://images.unsplash.com/photo-1507290439931-a861b5a38200?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: 1px; }
.hero p { font-size: 1.3rem; margin-bottom: 35px; font-weight: 300; opacity: 0.9; }

.cta-button-large {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}
.cta-button-large:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

.trust-badge { margin-top: 15px; font-size: 0.9rem; opacity: 0.8; }

/* --- ÜRÜNLER --- */
.products { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 10px; color: var(--primary-color); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-5px); }

.image-wrapper { height: 300px; overflow: hidden; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .image-wrapper img { transform: scale(1.05); }

.card-content { padding: 25px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-color); }
.description { font-size: 0.95rem; color: #666; margin-bottom: 25px; flex-grow: 1; }

.btn-order {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    display: block;
    width: 100%;
    margin-top: auto;
    transition: 0.3s;
}

.btn-order:hover {
    background-color: var(--primary-hover);
    color: white;
}

/* --- ÖZELLİKLER --- */
.features { background-color: white; padding: 70px 0; border-top: 1px solid #eaeaea; }
.feature-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; text-align: center; }
.feature-box { max-width: 300px; }
.feature-box .icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.feature-box h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-color); }
.feature-box p { color: #666; font-size: 0.95rem; }

/* --- FOOTER --- */
footer { background: #222; color: #ccc; padding: 70px 0 20px; font-size: 0.95rem; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h5 { color: white; font-size: 1.3rem; margin-bottom: 25px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid #333; font-size: 0.85rem; opacity: 0.6; }

/* --- MOBİL --- */
@media (max-width: 768px) {
    .navbar { flex-direction: column; height: auto; padding: 20px 0; gap: 15px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero { height: 500px; }
    .footer-columns { text-align: center; }
}