/* --- Değişkenler ve Reset (Boho Palette) --- */
:root {
    --sidebar-width: 270px;
    
    /* Renkler */
    --color-bg: #F9F7F2;        /* Sıcak Krem / Kağıt */
    --color-sidebar: #E6DED6;   /* Taupe / Bej */
    --color-text: #4A4A4A;      /* Koyu Gri */
    --color-heading: #3D405B;   /* Koyu Mavi-Gri */
    --color-clay: #D48C70;      /* Terracotta / Kiremit */
    --color-clay-hover: #B56D52;
    --color-white: #FFFFFF;
    --color-border: #D1C7BD;
    
    /* Fontlar */
    --font-heading: 'Cormorant Garamond', serif; /* Zarif, Sanatsal */
    --font-body: 'Raleway', sans-serif;          /* Modern, Temiz */
}

* { 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: 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 (Moodboard Style) --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--color-sidebar);
    color: var(--color-heading);
    position: fixed;
    height: 100vh;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    border-right: 1px solid #D1C7BD;
    box-shadow: 2px 0 15px rgba(0,0,0,0.03);
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--color-heading);
    letter-spacing: 3px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
}
.decor-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.2rem;
    color: #777;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-style: italic;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-clay);
    transform: scale(1.05);
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: #888;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}
.email-link { display: block; margin-top: 5px; color: var(--color-clay); font-weight: 500; font-family: var(--font-body); }
.aesthetic-dot { margin-top: 15px; font-family: var(--font-heading); font-size: 0.9rem; color: #555; letter-spacing: 1px; }

/* --- 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;
    /* Soft border radius on bottom left */
    border-bottom-left-radius: 0; 
}
.page-header.compact { height: 45vh; }

.overlay {
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #FFF;
}

.hero-header h1, .page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-heading);
}
.clay-text { color: var(--color-clay); font-style: italic; }

.page-header .overlay { background: rgba(61, 64, 91, 0.6); color: #fff; }
.page-header h1 { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
}

/* --- İçerik Konteyneri --- */
.content-container {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 80px 60px;
    width: 100%;
    background-color: #FFF;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #EEE;
}

/* --- Tipografi ve Bölümler --- */
.text-section { margin-bottom: 80px; }
h2 { 
    font-family: var(--font-heading); 
    font-size: 2.8rem; 
    margin-bottom: 25px; 
    color: var(--color-heading);
    font-weight: 400;
    text-align: center;
}
h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: var(--color-clay); margin-top: 20px; }
p { margin-bottom: 20px; text-align: justify; font-size: 1.05rem; color: #555; }

.bg-beige {
    background-color: #F2EBE5;
    padding: 60px;
    text-align: center;
    border: 1px solid #E6DED6;
}

/* --- Grid ve Kartlar (Gallery Style) --- */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.deco-card {
    text-align: center;
    transition: transform 0.3s;
}
.deco-card:hover { transform: translateY(-10px); }

.card-img { 
    height: 350px; 
    overflow: hidden; 
    margin-bottom: 20px; 
    border-radius: 200px 200px 0 0; /* Kemerli (Arch) */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.deco-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; border-radius: 0; }
.deco-card:hover img { transform: scale(1.05); }

/* Split Layout */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.split-layout img { width: 45%; border-radius: 4px; border: 10px solid #F9F7F2; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.split-layout .split-content { width: 55%; }

.clay-list li { margin-bottom: 15px; padding-left: 20px; position: relative; }
.clay-list li::before { content: '•'; color: var(--color-clay); position: absolute; left: 0; font-size: 1.5rem; line-height: 1; top: -3px; }

/* --- Formlar --- */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.contact-info { background: #FDFBF7; padding: 40px; border: 1px solid #E0E0E0; text-align: center; }
.contact-info h3 { color: var(--color-heading); border-bottom: 1px solid #CCC; padding-bottom: 10px; margin-bottom: 20px; }
.small-text { font-size: 0.85rem; color: #999; margin-top: 10px; }

.form-group { margin-bottom: 25px; }
label { display: block; margin-bottom: 8px; font-family: var(--font-heading); color: var(--color-heading); font-size: 1.1rem; }
input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #DDD;
    background: #FFF;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}
input:focus, textarea:focus { border-color: var(--color-clay); outline: none; background: #FFFAF8; }

.btn {
    display: inline-block;
    padding: 15px 45px;
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}
.btn-clay { background-color: var(--color-clay); color: #FFF; }
.btn-clay:hover { background-color: var(--color-clay-hover); }
.btn-outline-clay { background: transparent; border: 1px solid var(--color-clay); color: var(--color-clay); }
.btn-outline-clay:hover { background: var(--color-clay); color: #FFF; }
.full-width { width: 100%; }

/* --- Yorumlar --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.review-card {
    background: #FAFAFA;
    padding: 40px;
    border: 1px solid #EEE;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.style-icon { font-size: 1.5rem; color: var(--color-clay); margin-bottom: 15px; }
blockquote { font-style: italic; color: #666; margin-bottom: 20px; font-family: var(--font-heading); font-size: 1.15rem; }
cite { font-weight: 500; font-size: 0.85rem; display: block; color: var(--color-heading); text-transform: uppercase; letter-spacing: 1px; }

/* --- Footer --- */
.page-footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #E6DED6;
    color: #999;
    font-size: 0.85rem;
    margin-top: auto;
    background: #F2EBE5;
}

.clay-line { border: 0; height: 1px; background: var(--color-clay); 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.5s ease;
        padding-top: 100px;
    }
    .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: 25px;
        left: 25px;
        z-index: 1001;
        background: #FFF;
        border: 1px solid #D48C70;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .line {
        display: block;
        width: 20px;
        height: 1px;
        background: #D48C70;
    }

    .hero-header h1 { font-size: 3rem; }
    .hero-card { padding: 30px; margin: 0 20px; }
    .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; border-radius: 4px; }
    .contact-info { margin-bottom: 40px; }
}