/* --- Değişkenler ve Reset (Rustic Palette) --- */
:root {
    --sidebar-width: 260px;
    
    /* Renkler */
    --color-bg: #F5F1EA;        /* Ahşap/Kağıt Beji */
    --color-sidebar: #4A403A;   /* Koyu Toprak/Kahve */
    --color-text: #3E3E3E;      /* Kömür Grisi */
    --color-heading: #2C2C2C;   /* Siyahımsı */
    --color-rust: #A0522D;      /* Kiremit / Pas Rengi */
    --color-rust-hover: #8B4513;
    --color-steel: #778899;     /* Çelik Mavisi/Grisi */
    --color-white: #FFFFFF;
    --color-border: #D7CCC8;
    
    /* Fontlar */
    --font-heading: 'Oswald', sans-serif;   /* Güçlü, Dikey */
    --font-body: 'Lato', sans-serif;        /* Okunaklı, Modern */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; border-radius: 4px; }
ul { list-style: none; }

/* --- Ana Düzen --- */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- Sidebar (Rustic Shed) --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--color-sidebar);
    color: #D7CCC8;
    position: fixed;
    height: 100vh;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    border-right: 5px solid var(--color-rust);
    /* Ahşap dokusu efekti (hafif çizgiler) */
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #222;
}
.shovel-icon { font-size: 1.5rem; margin-left: 10px; filter: grayscale(100%); }

.nav-menu li { margin-bottom: 15px; }
.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #BCAAA4;
    display: block;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(0,0,0,0.2);
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-white);
    background: var(--color-rust);
    border-color: var(--color-rust);
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: #A1887F;
    padding-top: 30px;
    border-top: 2px solid rgba(160, 82, 45, 0.3);
    text-align: center;
}
.email-link { display: block; margin-top: 5px; color: var(--color-white); font-weight: bold; }
.seasonal-badge { 
    margin-top: 15px; 
    background: #2E8B57; 
    color: #fff; 
    padding: 5px; 
    font-family: var(--font-heading); 
    font-weight: bold; 
    letter-spacing: 1px;
    border: 1px dashed #fff;
}

/* --- Sağ Ana İçerik --- */
.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    display: flex;
    flex-direction: column;
}

/* --- Hero & Header --- */
.hero-header, .page-header {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 8px solid var(--color-sidebar);
}
.page-header.compact { height: 40vh; }

.overlay {
    background: linear-gradient(to top, rgba(74, 64, 58, 0.9), rgba(74, 64, 58, 0.2));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    color: #fff;
}

.hero-text { 
    max-width: 800px; 
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 4px;
    color: var(--color-heading);
    box-shadow: 10px 10px 0px var(--color-rust);
}

.hero-header h1, .page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.page-header .overlay { background: rgba(0,0,0,0.5); align-items: center; text-align: center; padding: 0; }
.page-header h1 { color: #fff; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }

.rust-text { color: var(--color-rust); }

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #555;
}

/* --- İçerik Konteyneri --- */
.content-container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 80px 60px;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #D7CCC8;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* --- Tipografi ve Bölümler --- */
.text-section { margin-bottom: 80px; }
h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    color: var(--color-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 4px solid var(--color-rust);
    display: inline-block;
    padding-bottom: 5px;
}
h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 10px; color: var(--color-heading); margin-top: 15px; text-transform: uppercase; }
p { margin-bottom: 20px; text-align: justify; font-size: 1.05rem; color: #555; }

.bg-wood {
    background-color: #EFEBE9;
    padding: 60px;
    border: 2px solid #8D6E63;
    color: #3E2723;
}

/* --- Grid ve Kartlar (Product Cards) --- */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.product-card {
    background: #FFF;
    border: 1px solid #DDD;
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 20px;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--color-rust); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.card-img { position: relative; height: 250px; overflow: hidden; margin-bottom: 20px; background: #f9f9f9; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; mix-blend-mode: multiply; }
.product-card:hover img { transform: scale(1.05); }

.tag {
    position: absolute; top: 10px; right: 10px;
    background: var(--color-rust); color: #fff;
    padding: 3px 10px; font-size: 0.8rem; font-weight: bold; font-family: var(--font-heading);
}

.product-card p { padding: 0 20px; font-size: 0.95rem; }

/* Split Layout */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.split-layout img { width: 45%; border: 10px solid #EFEBE9; }
.split-layout .split-content { width: 55%; }

.rust-list li { margin-bottom: 10px; padding-left: 20px; position: relative; font-weight: bold; color: var(--color-sidebar); }
.rust-list li::before { content: '✓'; color: var(--color-rust); position: absolute; left: 0; font-weight: 900; }

/* --- Formlar --- */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.contact-info { background: var(--color-sidebar); color: #fff; padding: 40px; border-bottom: 5px solid var(--color-rust); }
.contact-info h3 { color: var(--color-rust); border-bottom: 1px solid #6D4C41; padding-bottom: 10px; }
.contact-info p { color: #D7CCC8; }

.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--color-sidebar); font-family: var(--font-heading); font-size: 1rem; }
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #D7CCC8;
    background: #FFFEFA;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0; /* Köşeli */
    transition: 0.3s;
}
input:focus, textarea:focus { border-color: var(--color-rust); outline: none; background: #FFF; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
    letter-spacing: 1px;
}
.btn-rust { background-color: var(--color-rust); color: #FFF; }
.btn-rust:hover { background-color: var(--color-rust-hover); }
.btn-outline-dark { background: transparent; border: 2px solid var(--color-sidebar); color: var(--color-sidebar); }
.btn-outline-dark:hover { background: var(--color-sidebar); color: #fff; }
.full-width { width: 100%; }

/* --- Yorumlar --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: #FAFAFA;
    padding: 30px;
    border: 1px solid #E0E0E0;
    position: relative;
    border-left: 4px solid var(--color-rust);
}
.seed-icon { font-size: 2rem; margin-bottom: 10px; }
blockquote { font-style: italic; color: #555; margin-bottom: 20px; }
cite { font-weight: 700; font-size: 0.9rem; display: block; color: var(--color-heading); font-family: var(--font-heading); text-transform: uppercase; }

/* --- Footer --- */
.page-footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #D7CCC8;
    color: #8D6E63;
    font-size: 0.9rem;
    margin-top: auto;
    background: #EFEBE9;
}

.rust-line { border: 0; height: 4px; background: var(--color-rust); margin: 20px 0; width: 80px; }

/* --- Mobil Menü Butonu --- */
.menu-toggle { display: none; }

/* --- Duyarlı Tasarım (Mobil) --- */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        transition: transform 0.3s ease;
        padding-top: 80px;
    }
    .sidebar.active { transform: translateX(0); }
    
    .main-content { margin-left: 0; width: 100%; }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: var(--color-sidebar);
        border: 2px solid var(--color-rust);
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    .bar {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
    }

    .hero-header h1 { font-size: 3rem; }
    .hero-text { padding: 30px; }
    .content-container { padding: 60px 25px; margin-top: 0; }
    .grid-section, .split-layout, .contact-layout { display: block; }
    .split-layout img, .split-layout .split-content { width: 100%; }
    .split-layout img { margin-bottom: 30px; }
    .contact-info { margin-bottom: 40px; }
}