/* --- 1. Global Ayarlar ve Renk Paleti --- */
:root {
    --bg-color: #F7F3E9;        /* 🌾 Krem Bej */
    --text-color: #333;
    --primary-color: #4B6043;   /* 🌿 Zeytin Yeşili (Ana Marka Rengi) */
    --accent-color: #7A5230;    /* 🍞 Toprak Kahverengi (Vurgu/Başlık Rengi) */
    --white-color: #FFFFFF;     /* ⚪ Beyaz */
    --title-font: 'Merriweather', serif;
    --body-font: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto; 
    font-size: 1.1rem;
    color: #555;
}

/* --- 2. Yardımcı Sınıflar (Button vb.) --- */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #3a4a34; /* Hover için koyu yeşil */
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 18px; /* Navigasyonda buton daha küçük */
}

/* --- 3. Header / Navigasyon Çubuğu --- */
.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000; /* Her zaman üstte kalsın */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--title-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* --- 4. Hero (Ana Giriş) Bölümü --- */
.hero {
    padding: 80px 0; /* Header yüksekliğine göre ayarlandı */
    background-color: #F7F3E9; 
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- 5. Hakkımızda Bölümü --- */
.about-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-image-placeholder {
    flex: 1;
    min-width: 300px;
}

.about-image-placeholder img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- 6. Ürünler Bölümü --- (Aynı kaldı) */
.products {
    padding: 60px 0;
    background-color: var(--bg-color); /* Zemin rengine geri dön */
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.product-card {
    background-color: var(--white-color); /* Kart arkaplanı Beyaz */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding-bottom: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
    padding: 0 20px;
    color: var(--accent-color); 
}

.product-card p {
    font-size: 0.95rem;
    padding: 0 20px;
    margin-bottom: 20px;
    color: #555;
    min-height: 45px;
}

.product-card .btn {
    margin-left: 20px;
}


/* --- 7. Sipariş Formu Bölümü --- (Aynı kaldı) */
.order-form-section {
    padding: 60px 0;
    background-color: var(--white-color); /* Temiz form arkaplanı */
}

.order-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px; 
    color: var(--accent-color);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.order-form input[type="text"],
.order-form input[type="tel"],
.order-form input[type="email"],
.order-form select, 
.order-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    background-color: var(--bg-color);
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.order-form select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234B6043%22%20d%3D%22M287%2069.9a17.7%2017.7%200%200%200-24.7%200L146.2%20185.7%2030.1%2069.9a17.7%2017.7%200%200%200-24.7%2024.7l131%20131c6.6%206.6%2017.7%206.6%2024.3%200l131-131a17.7%2017.7%200%200%200%200-24.7z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(75, 96, 67, 0.3);
}

.order-form textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 20px;
}

.order-form .btn {
    width: 100%;
    font-size: 1.1rem;
}

/* --- 8. İletişim Bölümü --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-section h2 {
    color: var(--accent-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-info-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-info-card a {
    display: block;
    margin-top: 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}


/* --- 9. Footer (Alt Bilgi) --- */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.site-footer p {
    margin: 5px 0;
    opacity: 0.8;
}

/* --- 10. Mobil Uyum (Responsive Tasarım) --- */
@media (max-width: 992px) {
    /* Tablet */
    .hero-container, .about-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 25px auto;
    }
    .product-grid, .contact-grid {
        grid-template-columns: 1fr 1fr; 
    }
    .about-content, .about-image-placeholder {
        text-align: center;
    }
    .about-image-placeholder img {
        margin: 0 auto;
    }
    .main-nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Büyük Telefon */
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .form-grid, .form-select-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr; /* Ürünleri tek sütuna düşür */
    }
    .contact-grid {
        grid-template-columns: 1fr; /* İletişim kartlarını tek sütuna düşür */
    }
    .product-card {
        text-align: center; 
    }
    .product-card .btn {
        margin-left: 0;
    }
} css dosyası kodları da bu yeni eklenmiş kodu verirmisin