/* --- Değişkenler ve Reset (Timeless Antique Palette) --- */
:root {
    --sidebar-width: 270px;
    
    /* Renkler */
    --color-bg: #FCFBF8;        /* Parşömen / Krem */
    --color-sidebar: #3E2723;   /* Venge / Koyu Kahve */
    --color-text: #4E342E;      /* Toprak Kahve */
    --color-heading: #261815;   /* Siyah Kahve */
    --color-gold: #C5A059;      /* Antik Altın */
    --color-gold-hover: #A38243;
    --color-parchment: #F5F5DC;
    --color-border: #D7CCC8;
    
    /* Fontlar */
    --font-heading: 'Cinzel', serif; /* Tarihi, Romalı */
    --font-body: 'Lato', sans-serif; /* Modern, Okunaklı */
}

* { 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;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; border-radius: 2px; }
ul { list-style: none; }

/* --- Ana Düzen --- */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- Sidebar (Museum Style) --- */
.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: 4px solid var(--color-gold);
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 20px;
}
.art-icon { font-size: 1.5rem; margin-left: 5px; }

.nav-menu li { margin-bottom: 20px; text-align: center; }
.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #BCAAA4;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    background: rgba(255,255,255,0.02);
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: #8D6E63;
    padding-top: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    text-align: center;
}
.email-link { display: block; margin-top: 5px; color: var(--color-gold); font-family: var(--font-heading); font-size: 0.85rem; }
.since { margin-top: 10px; font-style: italic; font-family: var(--font-heading); color: #A1887F; font-size: 0.8rem; }

/* --- 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: 75vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 8px solid var(--color-sidebar);
}
.page-header.compact { height: 45vh; }

.overlay {
    background: linear-gradient(to right, rgba(29, 14, 10, 0.8), rgba(29, 14, 10, 0.4));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    color: #fff;
}

.hero-text { 
    max-width: 800px; 
    border-left: 3px solid var(--color-gold); 
    padding-left: 30px; 
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 2px;
}

.hero-header h1, .page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-gold);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.page-header .overlay { align-items: center; text-align: center; padding: 0; }

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #EFEBE9;
}

/* --- İçerik Konteyneri --- */
.content-container {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 80px 60px;
    width: 100%;
    background-color: #FFF;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border);
}

/* --- Tipografi ve Bölümler --- */
.text-section { margin-bottom: 70px; }
h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    color: var(--color-heading);
    font-weight: 600;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 5px;
}
h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; color: var(--color-sidebar); margin-top: 15px; }
p { margin-bottom: 20px; text-align: justify; font-size: 1.1rem; color: #5D4037; }

.bg-parchment {
    background-color: var(--color-parchment);
    padding: 60px;
    border: 1px solid #E6DABf;
    border-radius: 2px;
}

/* --- Grid ve Kartlar (Frame Style) --- */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.art-card {
    background: #FFF;
    padding: 20px;
    border: 1px solid #D7CCC8;
    text-align: center;
    transition: transform 0.3s;
}
.art-card:hover { transform: translateY(-5px); border-color: var(--color-gold); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.card-img { 
    height: 250px; 
    overflow: hidden; 
    margin-bottom: 20px; 
    border: 5px solid #F5F5F5;
}
.art-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: sepia(15%); }
.art-card:hover img { transform: scale(1.05); filter: sepia(0%); }

/* Split Layout */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}
.split-layout img { width: 45%; border: 10px solid #EFEBE9; box-shadow: 5px 5px 15px rgba(0,0,0,0.1); }
.split-layout .split-content { width: 55%; }

/* --- Formlar --- */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.contact-info { background: var(--color-sidebar); color: #fff; padding: 40px; border: 2px solid var(--color-gold); }
.contact-info h3 { color: var(--color-gold); border-bottom: 1px solid rgba(255,255,255,0.1); 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-heading); font-family: var(--font-heading); font-size: 1rem; }
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #BCAAA4;
    background: #FDFBF7;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-heading);
    border-radius: 0; /* Köşeli */
    transition: 0.3s;
}
input:focus, textarea:focus { border-color: var(--color-gold); outline: none; background: #FFF; }

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
    border-radius: 2px;
}
.btn-gold { background-color: var(--color-gold); color: #FFF; }
.btn-gold:hover { background-color: var(--color-gold-hover); }
.btn-dark { background-color: var(--color-sidebar); color: #FFF; }
.btn-dark:hover { background-color: #261815; }
.full-width { width: 100%; }

/* --- Yorumlar --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: #FFFEFD;
    padding: 30px;
    border: 1px solid #EFEBE9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    text-align: center;
}
.ornament { font-size: 2rem; color: var(--color-gold); margin-bottom: 10px; }
blockquote { font-style: italic; color: #5D4037; margin-bottom: 20px; font-family: var(--font-heading); font-size: 1.1rem; }
cite { font-weight: 700; font-size: 0.9rem; display: block; color: var(--color-heading); text-transform: uppercase; letter-spacing: 1px; }

/* --- Footer --- */
.page-footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #D7CCC8;
    color: #8D6E63;
    font-size: 0.9rem;
    margin-top: auto;
    background: #F9F7F2;
    font-family: var(--font-heading);
}

.gold-line { border: 0; height: 2px; background: var(--color-gold); 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.4s 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: 1px solid var(--color-gold);
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    .line {
        display: block;
        width: 25px;
        height: 1px;
        background: var(--color-gold);
    }

    .hero-header h1 { font-size: 2.5rem; }
    .content-container { padding: 60px 25px; margin-top: 0; }
    .split-layout, .contact-layout { display: block; }
    .split-layout img, .split-layout .split-content { width: 100%; }
    .split-layout img { margin-bottom: 20px; }
    .contact-info { margin-bottom: 30px; }
}