:root {
    --white: #ffffff;
    --off-white: #f8fafc;
    --forest-green: #15803d; /* Ana kurumsal yeşil */
    --leaf-green: #22c55e;   /* Canlı yeşil */
    --sun-yellow: #facc15;   /* Dikkat çekici sarı */
    --text-dark: #1e293b;
    --text-light: #64748b;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

/* Navbar */
.nature-nav {
    background: var(--white);
    padding: 20px 5%;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { font-size: 1.6rem; font-weight: 800; color: var(--forest-green); }
.logo span { color: var(--sun-yellow); }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 600; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest-green); }

/* Hero Section */
.hero-fresh {
    display: flex;
    padding: 80px 10%;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); /* Çok hafif yeşil geçiş */
    gap: 60px;
}

.tag-new { color: var(--forest-green); font-weight: bold; font-size: 14px; border: 2px solid var(--forest-green); padding: 4px 12px; border-radius: 50px; }

h1 { font-size: 3.5rem; margin-top: 20px; line-height: 1.2; }
.highlight-yellow { color: var(--sun-yellow); text-shadow: 1px 1px 0px #00000005; }

.btn-green { background: var(--forest-green); color: white; padding: 15px 35px; border-radius: 8px; text-decoration: none; font-weight: bold; box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3); transition: 0.3s; }
.btn-green:hover { background: var(--leaf-green); transform: translateY(-3px); }

.btn-white { border: 2px solid #e2e8f0; margin-left: 15px; padding: 15px 35px; border-radius: 8px; text-decoration: none; font-weight: bold; color: var(--text-dark); transition: 0.3s; }
.btn-white:hover { background: #f1f5f9; }

.hero-visual img { width: 100%; border-radius: 30px; box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff; }

/* Kartlar */
.info-cards { padding: 80px 10%; background: var(--off-white); }
.card-wrapper { display: flex; gap: 30px; justify-content: center; }

.eco-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.eco-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card-icon { font-size: 3rem; margin-bottom: 20px; display: block; }

.border-accent { height: 5px; width: 60px; margin: 20px auto 0; border-radius: 10px; }
.yellow { background: var(--sun-yellow); }
.green { background: var(--leaf-green); }

/* BÖLÜM AYARLARI */
.bolum { padding: 80px 0; border-bottom: 1px solid #eee; }
.gri-arka-plan { background-color: #f9fafb; }
.baslik { font-size: 36px; text-align: center; margin-bottom: 15px; }
.alt-metin { text-align: center; color: #666; margin-bottom: 50px; }
.yesil-yazi { color: #15803d; }

/* KART DÜZENİ */
.kart-izgara { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.kart-izgara-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

/* REHBER KARTLARI */
.rehber-kart, .lezzet-kart {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.rehber-kart:hover { border-color: #15803d; transform: translateY(-5px); }

.kart-ikon { font-size: 40px; margin-bottom: 15px; }
.tel-buton {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #15803d;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.sari-bg { background: #facc15; color: #000; }

/* KÜLTÜR KARTLARI */
.kultur-kart img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}
.kultur-kart h4 { margin-bottom: 10px; color: #15803d; }

/* LEZZET ETİKETLERİ */
.tel-etiket {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #15803d;
    background: #f0fdf4;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-fresh {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .nav-links {
        display: none; /* Mobil menü için gizle veya burger menü yap */
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-visual img {
        margin-top: 30px;
    }
}

.kultur-kart {
    overflow: hidden; /* Taşmaları önler */
    transition: 0.3s;
}

.kultur-kart:hover img {
    transform: scale(1.05); /* Resmi hafif büyütür */
}

.kultur-kart img {
    transition: transform 0.5s ease;
}

/* Tanıtım Sayfası Özel Stilleri */
.tanitim-hero {
    padding: 60px 0;
    animation: fadeIn 0.8s ease-in;
}

.tanitim-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.tanitim-metin h3 {
    color: var(--forest-green);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.tanitim-metin p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.ozellik-liste {
    list-style: none;
    padding: 0;
}

.ozellik-liste li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.ozellik-liste i {
    color: var(--leaf-green);
    margin-right: 10px;
}

/* Sayfa geçiş animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tanitim-icerik {
        grid-template-columns: 1fr;
    }
}

/* Footer Tasarımı */
.ana-footer {
    background-color: #1e293b; /* Koyu modern bir gri/lacivert */
    color: #ffffff;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 4px solid var(--forest-green); /* Üst kısma yeşil bir çizgi */
}

.footer-icerik p {
    margin: 5px 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-icerik .yazar {
    font-weight: 600;
    opacity: 1;
    margin-top: 10px;
}

.footer-icerik .isim {
    color: var(--sun-yellow); /* İsmin parlasın diye sarı yaptık */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-media-wrapper {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    border-top: 2px solid #2e7d32; /* Üst kısma ince yeşil bir çizgi */
}

.social-title {
    color: #2e7d32; /* Kaman Yeşili */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-desc {
    color: #555;
    margin-bottom: 30px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column; /* Resim üstte, yazı altta */
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100px;
}

.social-item img {
    width: 50px; /* İkon boyutu */
    height: 50px;
    margin-bottom: 10px; /* Yazıyla arasındaki mesafe */
    transition: transform 0.3s ease;
}

.social-item:hover img {
    transform: scale(1.1); /* Üzerine gelince hafif büyüme efekti */
}

.social-item span {
    font-weight: 600;
    font-size: 14px;
}


.lezzet-section {
    padding: 60px 0;
    text-align: center;
}

.baslik {
    font-size: 28px;
    margin-bottom: 40px;
}

.baslik span {
    color: #2e7d32; /* Yeşil */
}

/* Yan yana dizilimi sağlayan asıl kısım */
.lezzet-satir {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ekran küçülünce otomatik aşağı kayar (mobil uyum) */
    max-width: 1200px;
    margin: 0 auto;
}

.mekan-kart {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    width: 250px; /* Kartların genişliği sabit olsun */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.mekan-kart:hover {
    transform: translateY(-5px);
    border-color: #2e7d32;
}

.emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.mekan-kart h3 {
    margin: 10px 0;
    color: #333;
}

.mekan-kart p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.tel-link {
    display: block;
    color: #2e7d32;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    background: #f1f8e9;
    padding: 10px;
    border-radius: 8px;
}



/* --- KAMAN KONUM BÖLÜMÜ STİLLERİ --- */
.kaman-konum-section {
    padding: 60px 20px;
    background-color: #ffffff; /* Sitenin temiz beyaz arka planı ile uyumlu */
    text-align: center;
}

.konum-container {
    max-width: 1200px;
    margin: 0 auto;
}

.konum-baslik {
    font-size: 28px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
}

.konum-baslik span {
    color: #2e7d32; /* Kaman Yeşili */
}

.konum-alt-baslik {
    color: #666666;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 15px;
    line-height: 1.6;
}

/* Haritayı kutu içine alıp köşelerini yuvarlatan modern alan */
.harita-cerceve {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #eaeaea;
    transition: border-color 0.3s ease;
}

.harita-cerceve:hover {
    border-color: #2e7d32; /* Üzerine gelince Kaman Yeşili çizgi belirir */
}