/* --- Modern Flora Değişkenleri --- */
:root {
    /* Renk Paleti */
    --primary-green: #2d5a27;   /* Orman Yeşili */
    --secondary-green: #8fbc8f; /* Adaçayı Yeşili */
    --bg-cream: #f9f9f7;        /* Organik Krem */
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --accent-gold: #d4af37;
    
    /* Tipografi */
    --font-heading: 'Playfair Display', serif; /* Zarif Başlıklar */
    --font-body: 'Lato', sans-serif;           /* Okunaklı Metin */
    
    /* Düzen */
    --max-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
}

/* --- Fontları İçe Aktar --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Sıfırlama ve Temel Ayarlar --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; border-radius: var(--border-radius); }

/* --- Tipografi --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; position: relative; }

/* Başlık altı yaprak detayı (CSS ile) */
h2::after {
    content: '🌿';
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.7;
}

p { margin-bottom: 1.5rem; color: var(--text-light); }

/* --- Header & Navigasyon --- */
header {
    background-color: var(--bg-white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-green); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
    background-color: var(--secondary-green); transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background-color: var(--primary-green); margin: 6px; }

/* --- Hero Bölümü --- */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Pexels: Organic Fashion */
    background: linear-gradient(rgba(45, 90, 39, 0.4), rgba(45, 90, 39, 0.4)), url('https://images.pexels.com/photos/8386654/pexels-photo-8386654.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
}

.hero-content h1 { color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { color: #f0f0f0; font-size: 1.3rem; max-width: 700px; margin: 0 auto 30px; }

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--bg-white);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--bg-white);
}

.btn:hover {
    background-color: transparent;
    color: white;
}

/* --- Düzen ve Gridler --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 80px 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* --- Kartlar --- */
.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
    border: 1px solid rgba(143, 188, 143, 0.2);
}
.card:hover { transform: translateY(-10px); }
.card img { height: 300px; object-fit: cover; margin-bottom: 20px; }

.icon-box svg {
    width: 50px; height: 50px; fill: var(--secondary-green); margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-green);
    color: var(--bg-cream);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; color: var(--secondary-green); }
.footer-col a { display: block; margin-bottom: 10px; color: #e0e0e0; }
.footer-col a:hover { color: white; }

.german-phone {
    font-weight: bold;
    color: var(--bg-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright { text-align: center; margin-top: 40px; font-size: 0.9rem; opacity: 0.7; }

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 70px; right: 0;
        height: 100vh; width: 70%;
        background-color: var(--bg-white);
        flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-links.active { transform: translateX(0); }
    .burger { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
}