/* Palette: Ochre (#D2691E), Sand (#F4A460), Deep Brown (#3D2B1F), Cream (#FFF9F0) */
:root {
    --ochre: #D2691E;
    --sand: #F4A460;
    --brown: #3D2B1F;
    --cream: #FFF9F0;
    --white: #ffffff;
    --text: #4a3a3a;
    
    --font-head: 'Poppins', sans-serif;
    --font-serif: 'Libre Baskerville', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-head);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 8px; }

/* Navbar */
.anatolian-nav { background: var(--white); padding: 25px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-box { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; color: var(--brown); letter-spacing: 1px; }
.logo span { color: var(--ochre); }

.links a { margin-left: 30px; font-weight: 600; font-size: 0.9rem; color: var(--text); text-transform: uppercase; }
.links a:hover, .links a.active { color: var(--ochre); }

.mobile-toggler { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ochre); }

/* Mobile Menu */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--brown); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-drawer.active { right: 0; }
.close-drawer { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.mobile-drawer a { color: var(--white); font-size: 2rem; font-weight: 700; margin: 15px 0; }

@media (max-width: 900px) {
    .links { display: none; }
    .mobile-toggler { display: block; }
}

/* Hero */
.hero-anatolian { background-color: var(--cream); padding: 80px 0; overflow: hidden; }
.hero-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.top-tag { color: var(--ochre); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; }
.hero-info h1 { font-family: var(--font-serif); font-size: 4.5rem; line-height: 1; color: var(--brown); margin: 15px 0 30px; }
.italic { font-style: italic; font-weight: 400; color: var(--ochre); }
.hero-info p { font-size: 1.1rem; color: #665; margin-bottom: 40px; }

.btn-ochre { background: var(--ochre); color: white; padding: 18px 45px; border-radius: 4px; font-weight: 700; display: inline-block; box-shadow: 0 10px 20px rgba(210, 105, 30, 0.2); }
.btn-ochre:hover { background: var(--brown); transform: translateY(-3px); }

.hero-visual img { border-radius: 50% 50% 0 0; border: 15px solid var(--white); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Booking */
.booking-section { margin-top: -50px; position: relative; z-index: 100; }
.booking-form-wrap { background: var(--white); display: flex; gap: 20px; padding: 30px; border-radius: 12px; box-shadow: 0 15px 50px rgba(0,0,0,0.15); border: 1px solid #eee; }
.form-item { flex: 1; }
.form-item label { display: block; font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; color: var(--brown); text-transform: uppercase; }
.form-item select, .form-item input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; background: #fafafa; font-family: var(--font-head); }

.btn-submit { background: var(--brown); color: white; border: none; padding: 0 40px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--ochre); }

/* Features */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.f-card { text-align: center; padding: 40px; background: var(--cream); border-radius: 8px; }
.icon { font-size: 3rem; margin-bottom: 20px; }
.f-card h3 { color: var(--brown); margin-bottom: 10px; }

/* About */
.about-anatolian { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-media img { border-radius: 200px 200px 0 200px; }
.about-info h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--brown); line-height: 1.1; margin-bottom: 30px; }
.stats { display: flex; gap: 40px; margin-top: 40px; }
.s-box strong { display: block; font-size: 2rem; color: var(--ochre); line-height: 1; }
.s-box span { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

/* Testimonials */
.testimonials-anatolian { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.t-item { background: var(--white); padding: 40px; border-radius: 8px; border: 1px solid #eee; position: relative; }
.t-item::before { content: '“'; position: absolute; top: 10px; left: 20px; font-size: 5rem; color: var(--ochre); opacity: 0.1; font-family: var(--font-serif); }
.t-user { margin-top: 30px; font-weight: 700; color: var(--ochre); text-transform: uppercase; font-size: 0.8rem; }

/* Contact */
.contact-grid-anatolian { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.c-info p { margin-bottom: 15px; font-weight: 600; color: var(--brown); }
.working-hours { margin-top: 30px; padding: 20px; border: 1px dashed var(--ochre); border-radius: 4px; }

.anatolian-form input, .anatolian-form select, .anatolian-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; background: var(--cream); margin-bottom: 20px; font-family: var(--font-head); }
.full { width: 100%; }

/* Legal */
.legal-anatolian { max-width: 800px; }
.legal-anatolian h1 { font-family: var(--font-serif); margin-bottom: 30px; }
.legal-anatolian h3 { color: var(--ochre); margin: 30px 0 15px; }

/* Footer */
.anatolian-footer { background: var(--brown); color: #9a8a8a; padding: 80px 0 40px; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px; margin-bottom: 40px; }
.f-brand h3 { color: var(--white); font-family: var(--font-serif); margin-bottom: 10px; }
.f-nav a { margin-left: 20px; font-size: 0.85rem; font-weight: 600; }
.f-nav a:hover { color: var(--ochre); }
.copyright { text-align: center; font-size: 0.8rem; }

@media (max-width: 900px) {
    .hero-split, .booking-form-wrap, .grid-3, .about-anatolian, .testimonials-anatolian, .contact-grid-anatolian { grid-template-columns: 1fr; flex-direction: column; }
    .hero-info h1 { font-size: 2.8rem; }
    .hero-split { text-align: center; }
    .booking-section { margin-top: 30px; }
    .footer-wrap { flex-direction: column; text-align: center; gap: 30px; }
}