:root {
  --ember: #d9481c;
  --ember-dark: #b3360f;
  --gold: #f2a93b;
  --char: #1b1614;
  --char-2: #2a2320;
  --cream: #fbf5ec;
  --sand: #f3e6d3;
  --text: #2b2320;
  --muted: #7c6f68;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(27, 22, 20, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 600; }

.container { width: min(1140px, 100% - 40px); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ember);
  margin: 0 0 0.75rem;
}
.muted { color: var(--muted); }

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--ember);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--ember);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.btn:hover { background: var(--ember-dark); border-color: var(--ember-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: #fff; color: var(--char); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ember); }
.btn--outline:hover { color: #fff; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* Fotoğraf alanları: images/ klasörüne dosya eklenmezse sıcak bir gradyan görünür */
.img-slot {
  background:
    var(--img) center / cover no-repeat,
    radial-gradient(circle at 30% 20%, rgba(242,169,59,0.55), transparent 55%),
    linear-gradient(135deg, #8a2f12, #2a1a14);
}

/* Navigasyon */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled { background: rgba(27, 22, 20, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--gold); margin-left: 0.25rem; }
.nav__links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav__links a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; }
.nav__links a:hover { color: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    url('images/hero.jpg') center 78% / cover no-repeat,
    radial-gradient(circle at 75% 60%, rgba(217,72,28,0.8), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(242,169,59,0.35), transparent 45%),
    var(--char);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,14,12,0.92) 0%, rgba(20,14,12,0.7) 55%, rgba(20,14,12,0.45) 100%),
    linear-gradient(180deg, rgba(20,14,12,0.75) 0%, rgba(20,14,12,0.25) 45%, rgba(20,14,12,0.6) 100%);
}
.hero__content { position: relative; padding-block: 120px 80px; }
.hero__text { font-size: 1.2rem; max-width: 480px; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.hero__status.is-open .dot { background: #3ecf6e; box-shadow: 0 0 0 4px rgba(62,207,110,0.25); }
.hero__status.is-closed .dot { background: #e5484d; }

/* Bölümler */
.section { padding-block: clamp(4rem, 10vw, 7rem); }
.section--dark { background: var(--char); color: #fff; }
.section--dark .muted { color: rgba(255,255,255,0.65); }
.section--dark .muted a { color: var(--gold); }
.section--warm { background: var(--sand); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }

/* Hakkımızda */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__figure { margin: 0; }
.about__img { aspect-ratio: 3 / 2; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 100%; transform: rotate(-1.5deg); border: 8px solid #fff; }
.about__figure figcaption { margin-top: 1rem; text-align: center; font-size: 0.9rem; color: var(--muted); font-style: italic; }
.about__text p { color: var(--muted); font-size: 1.05rem; }
.features { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.features li { background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.features strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.4rem; color: var(--ember); }
.features span { font-size: 0.85rem; color: var(--muted); }

/* Menü — fiyat listesi */
.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 6vw, 4.5rem);
  max-width: 940px;
  margin-inline: auto;
}
.menu-group h3 {
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(242,169,59,0.35);
  margin-bottom: 1rem;
}
.menu-group ul { list-style: none; margin: 0; padding: 0; }
.menu-group li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.42rem 0;
  font-size: 1.02rem;
}
.menu-group li + li { border-top: 1px dashed rgba(255,255,255,0.12); }
.urun { color: rgba(255,255,255,0.92); }
.fiyat {
  margin-left: auto;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin-inline: auto; }
.menu-card {
  background: var(--char-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.menu-card__img { aspect-ratio: 16 / 10; max-width: 100%; position: relative; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--char);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

.credits { margin-top: 2rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.menu-card__body { padding: 1.4rem; position: relative; }
.menu-card__body p { color: rgba(255,255,255,0.65); margin: 0 0 1rem; font-size: 0.95rem; }
.price { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.menu-note {
  margin: 2.5rem auto 0;
  max-width: 620px;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* Galeri */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__item { border-radius: 12px; transition: transform 0.3s; }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }

/* İletişim */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.info-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-row__icon {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; background: #fff; font-size: 1.3rem;
}
.info-row p { margin: 0.15rem 0 0; color: var(--muted); }
.info-row a { color: var(--ember); font-weight: 600; text-decoration: none; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* Footer */
.footer { background: var(--char); color: rgba(255,255,255,0.8); padding-block: 2.5rem 6rem; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer p { margin: 0; }
.footer a:not(.logo) { color: var(--gold); text-decoration: none; }
.footer .muted { color: rgba(255,255,255,0.5); }

/* Mobil arama butonu */
.call-fab {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  padding: 1rem; border-radius: 999px;
  background: var(--ember); color: #fff; text-align: center;
  font-weight: 600; text-decoration: none;
  box-shadow: 0 10px 30px rgba(217,72,28,0.45);
}

/* Duyarlı tasarım */
@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(27, 22, 20, 0.98);
    max-height: 0; overflow: hidden; transition: max-height 0.3s;
  }
  .nav__links a { padding: 1rem 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav.is-open { background: rgba(27, 22, 20, 0.98); }
  .nav.is-open .nav__links { max-height: 300px; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .menu-board { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; max-width: 420px; }
  .about, .contact { grid-template-columns: 1fr; }
  .about__img { aspect-ratio: 16 / 11; transform: none; border-width: 6px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .call-fab { display: block; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}
