/* ===========================================================
   Yörük Obası — premium, koyu/sinematik tema
   Palet: siyah + altın + kırmızı + krem (logo + menü kapağı ruhu)
   =========================================================== */
:root {
  --black: #0e0e0f;
  --panel: #161618;
  --panel-2: #1c1c1f;
  --red: #e11b22;
  --red-dark: #b5141a;
  --gold: #c9a24b;
  --gold-soft: #dcc187;
  --cream: #f4efe6;
  --text: #ece7dd;
  --muted: #a39d90;
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.narrow { max-width: 620px; margin-left: auto; margin-right: auto; }
.tiny { font-size: 12px; margin-top: 18px; }
.small { font-size: 14px; }
.gold { color: var(--gold); }
.script { font-family: 'Great Vibes', cursive; font-size: 30px; line-height: 1; color: #fff; }

/* ---- Reveal animasyonu ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  letter-spacing: .2px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(225,27,34,.32); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.on-dark .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Üst şerit ---- */
.topbar { background: #000; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; height: 38px; flex-wrap: wrap; }
.topbar a { color: var(--gold-soft); }
.topbar .sep { color: var(--line-2); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,14,15,0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(10,10,11,0.97); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo-img { display: none; height: 52px; width: auto; }
.wordmark { display: inline-flex; gap: 7px; font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 800; letter-spacing: .5px; }
.wordmark .wm-red { color: var(--red); }
.wordmark .wm-white { color: #fff; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: #e9e4da; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.lang-toggle button { border: 0; background: transparent; padding: 7px 12px; font-weight: 700; cursor: pointer; color: #cfcabf; font-size: 13px; }
.lang-toggle button.active { background: var(--gold); color: #1a1a1a; }
.nav-burger { display: none; border: 0; background: transparent; color: #fff; font-size: 24px; cursor: pointer; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-start; overflow: hidden; color: #fff; }
.hero-photo {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 70% 20%, #3a1410 0%, #1a0a0b 45%, #000 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay { position: absolute; inset: 0;
  background:
    radial-gradient(75% 65% at 50% 34%, rgba(0,0,0,.74) 0%, rgba(0,0,0,.34) 58%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.30) 45%, rgba(0,0,0,.58)); }
.hero-content { position: relative; z-index: 2; padding: 12vh 24px 80px; max-width: 720px; margin: 0 auto; text-align: center; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.eyebrow { text-transform: uppercase; letter-spacing: 4px; font-size: 12.5px; font-weight: 700; color: var(--gold); }
.hero-title { font-size: clamp(44px, 6.4vw, 80px); font-weight: 800; margin: 10px 0 4px; color: #fff; letter-spacing: -0.5px;
  text-shadow: 0 8px 34px rgba(0,0,0,.6), 0 3px 10px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.5); }
.hero-title .ht-red { color: var(--red); }
.hero .script { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.hero-sub { font-size: clamp(16.5px, 2vw, 20px); color: #e6e1d7; max-width: 460px; margin: 0 auto; }
.hero-rating { margin: 20px 0 28px; color: var(--gold-soft); font-weight: 600; letter-spacing: 1px; }
.hero-rating b { color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.scroll-down {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; font-size: 34px; color: rgba(255,255,255,.7); animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---- Alt sayfa başlığı (Speisekarte vb.) ---- */
.page-hero { background: radial-gradient(120% 160% at 70% 0%, #3a1410, #160a0b 55%, var(--black) 100%); padding: 116px 0 64px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { color: var(--gold); }
.page-title { font-size: clamp(36px, 6vw, 62px); color: #fff; margin: 8px 0 0; }
.page-sub { max-width: 640px; margin: 16px auto 0; }

/* ---- Bölüm ortak ---- */
.section { padding: 96px 0; }
.kicker { text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; color: #fff; }
.lead { font-size: 17.5px; color: var(--muted); max-width: 560px; }

/* ---- Über uns ---- */
.about { background: var(--panel); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.feature-list { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--cream); }
.feature-list .fi { color: var(--gold); font-size: 14px; }
.about-photo {
  aspect-ratio: 1 / 1; min-height: 300px; border-radius: var(--radius); box-shadow: var(--shadow);
  background: radial-gradient(120% 120% at 70% 30%, #3a1410, #120a0b 70%);
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: top center; border: 1px solid var(--line);
}

/* ---- Stats ---- */
.stats { background: linear-gradient(90deg, var(--red-dark), var(--red)); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: #fff; }
.stat span { color: rgba(255,255,255,.85); font-size: 14px; letter-spacing: .4px; }

/* ---- Spezialitäten / kartlar ---- */
.specials { background: var(--black); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-6px); border-color: var(--gold); }
.card-photo {
  aspect-ratio: 4/3; background: radial-gradient(120% 120% at 60% 30%, #3a1410, #120a0b 70%);
  display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center;
}
.card h3 { color: var(--gold); font-size: 21px; margin: 18px 20px 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0 20px 22px; }

/* ---- Speisekarte (gerçek menü, fiyatsız) ---- */
.menu { background: var(--panel-2); }
.menu-masonry { column-count: 3; column-gap: 44px; margin-top: 44px; }
.menu-block { break-inside: avoid; margin-bottom: 36px; }
.menu-block h3 { color: var(--gold); font-size: 21px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.m-item { padding: 8px 0; border-bottom: 1px dotted var(--line); }
.m-name { display: block; color: var(--cream); font-weight: 600; font-size: 15.5px; }
.m-de { display: block; color: var(--muted); font-size: 12.5px; margin-top: 1px; }
.m-hint { margin-top: 11px; color: var(--gold-soft); font-size: 12.5px; font-style: italic; }

/* ---- Party Service ---- */
.party { background: var(--panel); }
.party-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.party-inner > div:first-child { max-width: 640px; }

/* ---- Galerie ---- */
.gallery { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.gallery-cell {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 120% at 60% 30%, #341210, #100a0b 70%);
  display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center;
  transition: transform .35s var(--ease);
}
.gallery-cell:hover { transform: scale(1.03); }

/* ---- Bewertungen ---- */
.reviews { background: var(--panel); }
.reviews .cards { grid-template-columns: repeat(3, 1fr); }
.review { background: var(--black); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.review p { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-style: italic; color: var(--cream); }
.review cite { display: block; margin-top: 16px; color: var(--gold); font-style: normal; font-weight: 600; font-size: 14px; }

/* ---- Kontakt ---- */
.contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.info-card { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 38px; }
.info-row { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: 0; }
.info-ic { font-size: 20px; color: var(--gold); }
.info-row strong { color: #fff; }
.info-row a { color: var(--gold-soft); }
.info-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; border: 1px solid var(--line); filter: grayscale(.2) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---- Footer ---- */
.site-footer { background: #000; color: #d9d4c9; padding: 64px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.brand-footer { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 24px; }
.brand-footer .wm-red { color: var(--red); }
.site-footer strong { display: block; margin-bottom: 10px; color: #fff; }
.site-footer .muted { color: #9b958a; }
.flinks a, .social a { display: inline-block; margin: 0 14px 8px 0; color: #d9d4c9; }
.flinks a { display: block; margin-bottom: 8px; }
.flinks a:hover, .social a:hover, .site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px; font-size: 13.5px; }

/* ---- Mobil sabit CTA + yukarı çık ---- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  gap: 10px; padding: 10px 14px; background: rgba(10,10,11,.96); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
.mobile-bar .btn { flex: 1; }
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 65; width: 46px; height: 46px;
  border-radius: 50%; border: 0; background: var(--gold); color: #1a1a1a; font-size: 20px; font-weight: 700;
  cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s; box-shadow: var(--shadow); }
.to-top.show { opacity: 1; pointer-events: auto; }

/* ---- Mobil ---- */
@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    background: rgba(10,10,11,.98); border-bottom: 1px solid var(--line);
    padding: 18px 24px; gap: 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .about-grid, .contact-grid, .menu-cols { grid-template-columns: 1fr; gap: 30px; }
  .cards, .reviews .cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .topbar { display: none; }
  .cards, .reviews .cards, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-primary { display: none; }
  .section { padding: 66px 0; }
  .mobile-bar { display: flex; }
  .to-top { bottom: 76px; }
  body { padding-bottom: 0; }
}
