/* --- Değişkenler ve Reset --- */
:root {
    --sidebar-width: 280px;
    --color-bg: #f8f5f2;        /* Kırık beyaz / Taş rengi */
    --color-sidebar: #d35400;   /* Terracotta / Kiremit Rengi */
    --color-text: #4a4a4a;      /* Yumuşak Siyah */
    --color-accent: #a04000;    /* Koyu Kil */
    --color-clay-light: #e67e22;
    
    --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Mulish', Helvetica, Arial, sans-serif;
}

* { 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.8;
}

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) --- */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- Sol Kenar Çubuğu (Sidebar) --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--color-sidebar);
    color: #fff;
    position: fixed;
    height: 100vh;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 1px;
    position: relative;
    color: #fff;
}
.brand .clay-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fcebd3;
    border-radius: 50%;
    margin-left: 5px;
}

.nav-menu li { margin-bottom: 20px; }
.nav-menu a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 5px 0;
    font-weight: 500;
}
.nav-menu a:hover, .nav-menu a.active {
    color: #fff;
    transform: translateX(10px);
    border-left: 3px solid #fcebd3;
    padding-left: 10px;
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.sidebar-footer a:hover { color: #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;
}
.page-header.compact { height: 40vh; }

.overlay {
    background: rgba(80, 40, 10, 0.3); /* Hafif kahve tonlu karartma */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-header h1, .page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 10px;
}

/* --- İçerik Konteyneri --- */
.content-container {
    max-width: 950px; 
    margin: 0 auto;
    padding: 60px 40px;
    width: 100%;
}

/* --- Tipografi ve Bölümler --- */
.text-section { margin-bottom: 60px; }
h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 25px; color: var(--color-accent); border-bottom: 1px solid #ddd; padding-bottom: 10px; display: inline-block; }
h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; color: var(--color-accent); margin-top: 10px; }
p { margin-bottom: 20px; text-align: justify; color: #555; font-size: 1.05rem; }

.bg-earth {
    background-color: #e8ded4; /* Toprak rengi açık */
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--color-sidebar);
}

/* --- Grid ve Split Düzenler --- */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.grid-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    filter: sepia(10%); /* Hafif nostaljik ton */
}

.split-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.split-layout img { width: 45%; border-radius: 4px; }
.split-layout .split-content { width: 55%; }

/* --- İletişim Formu --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: bold; font-size: 0.9rem; color: var(--color-accent); }
input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 2px;
}
input:focus, textarea:focus { border-color: var(--color-sidebar); outline: none; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-sidebar);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s;
}
.btn:hover { background-color: var(--color-accent); }
.full-width { width: 100%; }

/* --- Yorumlar --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
blockquote { font-style: italic; color: #666; margin-bottom: 20px; font-family: var(--font-heading); font-size: 1.1rem; }
cite { font-weight: bold; font-size: 0.9rem; display: block; text-align: right; color: var(--color-sidebar); }

/* --- Footer (Sayfa Altı) --- */
.page-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #ddd;
    color: #888;
    font-size: 0.9rem;
    margin-top: auto;
    background: #fff;
}

/* --- 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: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: var(--color-sidebar);
        border: 2px solid #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        margin: 5px auto;
    }

    .hero-header h1 { font-size: 2.5rem; }
    .grid-section, .split-layout, .contact-layout { display: block; }
    .split-layout img, .split-layout .split-content { width: 100%; }
    .split-layout img { margin-bottom: 30px; }
    .grid-card { margin-bottom: 40px; }
    .contact-info { margin-bottom: 40px; }
    .content-container { padding: 40px 20px; }
}