/* ============================================
   Napoliano — Stil dosyası
   Renkler logodan ve mekan fotoğrafından alındı:
   krem, domates kırmızısı, bordo/terracotta, İtalyan yeşili
   ============================================ */

:root {
  --cream:        #F4EAD7;
  --cream-soft:   #FBF5E9;
  --cream-dark:   #EADCC1;
  --tomato:       #C8432B;
  --tomato-dark:  #A5361F;
  --oxblood:      #7C3327;   /* mekan panellerinin bordosu */
  --green:        #2E7D4F;
  --ink:          #2B211A;
  --muted:        #6E5E4E;
  --line:         rgba(43, 33, 26, 0.12);
  --shadow:       0 18px 40px rgba(43, 33, 26, 0.12);
  --radius:       16px;
  --font-head:    "Fraunces", Georgia, serif;
  --font-body:    "DM Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--tomato); color: #fff;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(200, 67, 43, 0.28);
}
.btn:hover { background: var(--tomato-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--tomato);
  border: 2px solid var(--tomato); box-shadow: none;
}
.btn-outline:hover { background: var(--tomato); color: #fff; }
.btn-green { background: var(--green); box-shadow: 0 8px 20px rgba(46, 125, 79, 0.28); }
.btn-green:hover { background: #256b42; }
.btn-small { padding: .55rem 1.1rem; font-size: .9rem; box-shadow: none; }

/* ---------- Üst menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(43,33,26,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .5rem; }
.brand-mark { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--tomato); letter-spacing: .5px; }
.brand-flag { width: 34px; height: 5px; border-radius: 3px;
  background: linear-gradient(to right, var(--tomato) 0 33%, #fff 33% 66%, var(--green) 66% 100%); }

.header-right { display: flex; align-items: center; gap: 1.4rem; }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { font-weight: 500; color: var(--ink); transition: color .2s ease; }
.nav a:not(.btn):hover { color: var(--tomato); }

/* Dil değiştirici (TR / EN) */
.lang-toggle { display: inline-flex; border: 1.5px solid var(--tomato); border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.lang-toggle button {
  border: 0; background: transparent; color: var(--tomato);
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .5px; padding: .38rem .7rem; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle button.active { background: var(--tomato); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(3rem, 8vw, 5.5rem); overflow: visible; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(200,67,43,.10), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(124,51,39,.10), transparent 55%),
    var(--cream);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; align-self: stretch; }
/* Logo bloğu: açıklamanın üstünde kalan boşlukta dikey ortalanır.
   Alttaki otomatik boşluk sayesinde .hero-info de videonun altıyla hizalı kalır. */
.hero-brand { display: flex; flex-direction: column; align-items: flex-start; margin: auto 0; }
.hero-info { display: flex; flex-direction: column; align-items: flex-start; }
.hero-logo { width: min(410px, 94%); margin: 1.25rem 0 1.3rem -0.5rem; }
.hero-title { font-size: clamp(3rem, 9vw, 5rem); color: var(--tomato); }
.hero-kicker { text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--oxblood); margin-top: .25rem; }
.hero-lead { max-width: 560px; font-size: clamp(1.05rem, 2.4vw, 1.22rem); color: var(--muted); margin: 1rem 0 1.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.4rem; font-size: .9rem; color: var(--muted); }
.hero-photo img, .hero-photo video {
  display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center;
  border-radius: 24px; box-shadow: var(--shadow); background: var(--cream-dark);
}

/* ---------- Özellik şeridi ---------- */
.strip { background: var(--oxblood); color: var(--cream-soft); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.strip-item { display: flex; align-items: center; justify-content: center; gap: .6rem; }
.strip-item span { font-size: 1.5rem; }
.strip-item p { font-weight: 500; font-size: .98rem; }

/* ---------- Bölüm genel ---------- */
.section { padding: clamp(3.5rem, 9vw, 6rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700; color: var(--tomato); margin-bottom: .6rem; }
.section h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
.section-sub { color: var(--muted); margin-top: .8rem; }

/* ---------- Hikâye ---------- */
.about { background: var(--cream-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media.no-img {
  min-height: 360px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--oxblood), var(--tomato));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.about-media.no-img::after { content: "🍕"; font-size: 5rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.link-arrow { color: var(--tomato); font-weight: 700; }
.link-arrow:hover { color: var(--tomato-dark); }

/* Seçkin malzemeler listesi (Hikâyemiz) */
.about-ingredients { list-style: none; margin: 1.4rem 0 1.6rem; display: grid; gap: .55rem; }
.about-ingredients li { position: relative; padding-left: 1.1rem; color: var(--muted); font-size: .96rem; }
.about-ingredients li::before { content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--tomato); }
.about-ingredients .ing-label { font-weight: 700; color: var(--ink); margin-right: .35rem; }

/* ---------- Menü ---------- */
.menu-category {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--tomato);
  letter-spacing: .5px; margin: 3.2rem 0 1.6rem;
  padding-bottom: .7rem; border-bottom: 2px solid var(--tomato);
}
.menu-category:first-of-type { margin-top: .5rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .15s ease, box-shadow .2s ease; }
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card-img { aspect-ratio: 4/3; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.menu-card-img--soon { display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--oxblood)); }
.menu-card-img--soon span { font-size: 3.2rem; opacity: .8; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.2rem 1.4rem 1.5rem; }
.menu-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.menu-card-head h3 { font-size: 1.35rem; color: var(--ink); }
.price { font-family: var(--font-head); font-weight: 600; color: var(--tomato); white-space: nowrap; }
.menu-card p { color: var(--muted); font-size: .96rem; }
.menu-cta { text-align: center; margin-top: 2.5rem; color: var(--muted); }
.menu-cta a { color: var(--tomato); font-weight: 700; }

/* ---------- Galeri ---------- */
.gallery { background: var(--cream-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.placeholder { background: linear-gradient(135deg, var(--cream-dark), var(--oxblood)); display: flex; align-items: center; justify-content: center; }
.gallery-item.placeholder::after { content: "📷"; font-size: 2.5rem; opacity: .6; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.contact-list li { display: flex; flex-direction: column; gap: .2rem; }
.ci-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .74rem; font-weight: 700; color: var(--tomato); }
.contact-list a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-list a:hover { color: var(--tomato); }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-map { position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.map-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center; padding: 2rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,67,43,.12), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(46,125,79,.12), transparent 45%),
    var(--cream-dark);
  color: var(--ink);
}
.map-fallback .map-pin { font-size: 2.4rem; }
.map-fallback strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--tomato); }
.map-fallback span:last-child { font-size: .92rem; color: var(--muted); max-width: 320px; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 2.5rem 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.footer-brand { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--cream); }
.site-footer p { color: rgba(244, 234, 215, .8); font-size: .92rem; }
.footer-copy { font-size: .82rem !important; color: rgba(244, 234, 215, .5) !important; }

/* ============================================
   MOBİL UYUM
   ============================================ */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; z-index: 40;
    flex-direction: column; gap: 0;
    background: var(--cream-soft);
    padding: 1rem 0; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 2rem; width: 100%; }
  .nav .btn { margin: .6rem 2rem; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-text { display: contents; }
  .hero-brand { order: 1; margin: 0; align-items: center; }
  .hero-logo { order: 1; margin: 0 auto .2rem; }
  .hero-kicker { order: 2; }
  .hero-photo { order: 3; max-width: 400px; margin: 1.6rem auto; }
  .hero-photo img { transform: none; }
  .hero-info { order: 4; margin-top: 0; align-items: center; width: 100%; }
  .hero-actions { justify-content: center; }

  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
}

/* Menüyü orta boy ekranlarda 2 sütun yap */
@media (min-width: 861px) and (max-width: 1040px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
