/* --- Değişkenler --- */
:root {
    --color-clay: #a0522d;      /* Kiremit / Sienna */
    --color-clay-dark: #8b4513;
    --color-beige: #f4e4bc;     /* Antik Kağıt Beji */
    --color-brown: #3e2723;     /* Koyu Kahve */
    --color-sand: #eecfa1;
    --color-text: #4e342e;
    
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Lora', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-beige);
    color: var(--color-text);
    line-height: 1.8;
}

a { text-decoration: none; color: inherit; transition: 0.4s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 2px; filter: sepia(20%); transition: 0.5s; }
img:hover { filter: sepia(0%); }

.container { width: 85%; max-width: 1200px; margin: 0 auto; }

/* --- Header --- */
.rustic-header {
    padding: 30px 0;
    position: sticky; top: 0; z-index: 100;
    background-color: rgba(244, 228, 188, 0.95);
    border-bottom: 1px solid rgba(160, 82, 45, 0.3);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; color: var(--color-brown); letter-spacing: 2px; font-weight: 700; }

.heritage-nav ul { display: flex; gap: 30px; align-items: center; }
.heritage-nav a { font-size: 1.1rem; color: var(--color-text); }
.heritage-nav a:hover, .heritage-nav a.active { color: var(--color-clay); font-style: italic; }

.btn-clay { border: 2px solid var(--color-clay); padding: 8px 25px; color: var(--color-clay) !important; border-radius: 50px; font-weight: bold; }
.btn-clay:hover { background-color: var(--color-clay); color: var(--color-beige) !important; }

.menu-open { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.clay-line { width: 30px; height: 3px; background-color: var(--color-clay); border-radius: 5px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-beige); z-index: 200;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.5s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: var(--color-clay); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; margin: 15px 0; color: var(--color-brown); }

/* --- Story Hero --- */
.story-hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(62, 39, 35, 0.4); z-index: 1; }

.hero-text { position: relative; z-index: 2; color: #fff; max-width: 800px; padding: 0 20px; }
.ornament { font-size: 3rem; color: var(--color-sand); display: block; margin-bottom: 20px; }
.hero-text h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-text p { font-size: 1.4rem; color: var(--color-sand); }

/* --- Narrative Blocks --- */
.section-padding { padding: 100px 0; }
.narrative-block { display: flex; gap: 60px; align-items: center; margin-bottom: 150px; }
.narrative-block.reverse { flex-direction: row-reverse; }

.text-content { flex: 1; }
.text-content h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-brown); margin-bottom: 20px; }
.divider-clay { width: 80px; height: 3px; background-color: var(--color-clay); margin-bottom: 30px; }
.text-content p { font-size: 1.2rem; margin-bottom: 20px; color: var(--color-text); }
.link-clay { color: var(--color-clay); font-weight: bold; border-bottom: 1px solid var(--color-clay); }

.image-content { flex: 1; position: relative; }
.image-content img { box-shadow: 15px 15px 0 var(--color-clay-dark); }

/* --- Visual Break --- */
.visual-break {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.visual-break::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); }
.break-text { position: relative; z-index: 2; text-align: center; padding: 40px; border: 2px solid var(--color-sand); }
.break-text h3 { font-family: var(--font-heading); color: var(--color-sand); font-size: 2.5rem; }

/* --- Craft Grid (About) --- */
.page-intro { margin-bottom: 60px; }
.text-center { text-align: center; }
.page-intro h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-brown); }
.ornament-line { color: var(--color-clay); font-size: 1.5rem; margin-top: 10px; }

.craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.craft-item { text-align: center; }
.craft-item img { border-radius: 50% 50% 0 0; margin-bottom: 20px; border-bottom: 5px solid var(--color-clay); }
.craft-item h3 { font-family: var(--font-heading); color: var(--color-brown); margin-bottom: 10px; }

/* --- Testimonials --- */
.reviews-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.review-note { background-color: #fff; padding: 40px; border: 1px solid #ddd; box-shadow: 5px 5px 15px rgba(0,0,0,0.05); }
.review-note p { font-style: italic; font-size: 1.2rem; color: #555; margin-bottom: 20px; }
.review-note cite { font-weight: bold; color: var(--color-clay); font-family: var(--font-heading); }

/* --- Contact --- */
.contact-card-rustic { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 1000px; margin: 0 auto; background: #fff; padding: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.info-part h2 { font-family: var(--font-heading); color: var(--color-brown); font-size: 2rem; }
.info-part address { font-style: normal; margin-top: 20px; font-size: 1.1rem; line-height: 2; }
.pattern-divider { height: 20px; background-image: repeating-linear-gradient(45deg, var(--color-clay) 0, var(--color-clay) 2px, transparent 2px, transparent 10px); margin-top: 30px; }

.clay-form .input-group { margin-bottom: 25px; }
.clay-form input, .clay-form select, .clay-form textarea { width: 100%; padding: 15px; border: none; border-bottom: 2px solid var(--color-sand); background: transparent; font-family: var(--font-body); font-size: 1.1rem; transition: 0.3s; }
.clay-form input:focus { border-color: var(--color-clay); outline: none; background: #fafafa; }
.btn-clay-solid { background-color: var(--color-clay); color: #fff; padding: 15px 40px; border: none; cursor: pointer; font-family: var(--font-heading); letter-spacing: 1px; width: 100%; transition: 0.3s; }
.btn-clay-solid:hover { background-color: var(--color-clay-dark); }

/* --- Legal --- */
.legal-scroll { max-width: 800px; margin: 0 auto; padding-left: 20px; border-left: 1px solid var(--color-clay); }
.legal-scroll h1 { font-family: var(--font-heading); color: var(--color-brown); }
.legal-scroll h3 { color: var(--color-clay); margin-top: 40px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.earth-footer { background-color: var(--color-brown); color: var(--color-sand); padding: 60px 0; margin-top: auto; text-align: center; }
.f-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.f-nav a { margin: 0 15px; color: #fff; }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.7; }

/* --- Animation Class --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .heritage-nav { display: none; }
    .menu-open { display: flex; }
    .hero-text h1 { font-size: 3rem; }
    .narrative-block, .craft-grid, .reviews-masonry, .contact-card-rustic { grid-template-columns: 1fr; gap: 40px; }
    .narrative-block.reverse { flex-direction: column; }
}