/* ==========================================================================
   Diyarbakır Kebapçısı — birebir renk/tasarım kopyası
   Kaynak: gerçek site ekran görüntülerinden çıkarılan renkler
   ========================================================================== */

:root{
  --cream:      #F8F8F5;   /* genel arka plan */
  --green:      #1F523C;   /* ana koyu yeşil (bantlar, butonlar) */
  --green-dark: #15231A;   /* en koyu yeşil/siyah (footer, koyu bant) */
  --orange:     #BF672C;   /* turuncu vurgu */
  --ink:        #16201A;   /* başlık metni */
  --ink-soft:   #4B554E;   /* paragraf metni */
  --card:       #EAEAE4;   /* yorum kartı arka planı */
  --line:       #D9D8D0;   /* ince ayraç çizgisi */

  --font: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container{
  width:100%;
  max-width: 1180px;
  margin:0 auto;
  padding: 0 24px;
}

/* ---- header --------------------------------------------------------------*/
header.site{ background: var(--cream); }
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 28px 0 8px;
  gap: 24px;
}
.brand img{
  width: 96px; height: 96px;
  border-radius: 14px;
  object-fit: cover;
}
nav.primary{
  display:flex;
  align-items:center;
  gap: 34px;
}
nav.primary a{
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.primary a[aria-current="page"]{
  border-color: var(--ink);
}
.nav-actions{ display:flex; align-items:center; gap:20px; }
.icon-link{
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1rem;
}
.nav-toggle{
  display:none;
  background:none;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  width: 42px; height: 42px;
  font-size: 1.2rem;
  cursor:pointer;
}

/* ---- buttons --------------------------------------------------------------*/
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  cursor:pointer;
  transition: transform .15s ease, opacity .2s ease;
}
.btn-green{ background: var(--green); color:#fff; }
.btn-orange{ background: var(--orange); color:#fff; }
.btn:hover{ transform: translateY(-1px); opacity: .93; }

/* ---- eyebrow / headings ----------------------------------------------------*/
.eyebrow{
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow.orange{ color: var(--orange); font-weight: 500; }

h1,h2,h3,h4{
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
  margin: 0 0 20px;
}
h1{ font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3{ font-size: 1.3rem; }

em{ color: var(--green); font-style: normal; }
em.orange{ color: var(--orange); }

p{ color: var(--ink-soft); margin: 0 0 16px; }
p.lede{ font-size: 1.06rem; max-width: 46ch; }

/* ---- hero (home) -----------------------------------------------------------*/
.hero{ padding: 56px 0 90px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items:center;
}
.hero-figure{ border-radius: 16px; overflow:hidden; aspect-ratio: 4/3.7; }
.hero-figure img{ width:100%; height:100%; object-fit:cover; }
.cta-row{ display:flex; gap:16px; margin-top: 30px; flex-wrap:wrap; }

/* ---- centered image hero (about/menu inner pages) ---------------------------*/
.page-hero{ padding: 20px 0 60px; text-align:center; }
.page-hero .container{ max-width: 720px; }
.page-hero .cta-row{ justify-content:center; }

.photo-hero{
  position:relative;
  min-height: 420px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-size: cover;
  background-position: center;
  padding: 60px 24px;
}
.photo-hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,20,15,0.35), rgba(10,15,10,0.55));
}
.photo-hero .inner{ position:relative; max-width: 760px; color:#fff; }
.photo-hero .eyebrow{ color: #f1f1ec; }
.photo-hero h1{ color:#fff; }
.photo-hero p{ color: #ece9e2; max-width: 60ch; margin-left:auto; margin-right:auto; }

/* ---- green feature band (pillars) -------------------------------------------*/
.band-green{ background: var(--green); padding: 84px 0; }
.band-green .eyebrow{ color: #cfe0d6; }
.band-green h2{ color:#fff; }
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 46px;
}
.pillar figure{ border-radius: 12px; overflow:hidden; aspect-ratio: 4/3.4; margin:0 0 20px; }
.pillar figure img{ width:100%; height:100%; object-fit:cover; }
.pillar h3{ color:#fff; margin-bottom: 10px; }
.pillar p{ color: #d9e4de; font-size: 0.95rem; margin:0; }

/* ---- testimonials -----------------------------------------------------------*/
section.tight{ padding: 78px 0; }
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.testimonial{
  background: var(--card);
  border-radius: 14px;
  padding: 28px 26px;
}
.testimonial p{ color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.testimonial .who{ color: var(--ink); font-weight: 600; font-size: 0.92rem; }

/* ---- CTA band (dark green, centered) -----------------------------------------*/
.cta-band{
  background: var(--green);
  padding: 76px 0;
  text-align:center;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:#d9e4de; max-width: 56ch; margin: 0 auto 30px; }

/* ---- darkest band (about page final CTA) -------------------------------------*/
.band-black{ background: var(--green-dark); padding: 76px 0; text-align:center; }
.band-black h2{ color:#fff; margin-bottom: 44px; }
.split-cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.split-cta > div{ display:flex; flex-direction:column; align-items:center; gap: 22px; }
.split-cta p{ color:#d9e4de; margin:0; }

/* ---- story (about page) -------------------------------------------------------*/
.story-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items:center;
}
.story-figure{ border-radius: 16px; overflow:hidden; }
.story-block{ margin-bottom: 34px; }
.story-block:last-child{ margin-bottom:0; }
.story-block h2{ margin-bottom: 14px; }

/* ---- black ticker banner (menu page) ------------------------------------------*/
.ticker-band{
  background: var(--green-dark);
  padding: 22px 0;
  text-align:center;
}
.ticker-band h2{ color:#fff; margin:0; font-size: 1.7rem; }

/* ---- menu categories -----------------------------------------------------------*/
.menu-category{ padding: 56px 0; border-bottom: 1px solid var(--line); }
.menu-category:last-of-type{ border-bottom:none; }
.menu-category h3{ margin-bottom: 30px; }
.menu-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 26px;
}
.menu-tile figure{ border-radius: 12px; overflow:hidden; aspect-ratio: 1/1; margin: 0 0 16px; }
.menu-tile figure img{ width:100%; height:100%; object-fit:cover; }
.menu-tile h4{
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.menu-tile .price{ color: var(--ink-soft); font-size: 0.95rem; }

/* ---- contact split (iletisim) ---------------------------------------------------*/
.contact-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 10px;
}
.contact-split p{ margin:0; }
.service-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding: 70px 0;
  flex-wrap:wrap;
}
.service-row h2{ margin-bottom: 10px; }
.service-row p{ margin:0; }

/* ---- footer ----------------------------------------------------------------------*/
footer.site{ background: var(--green-dark); padding: 64px 0 28px; }
.footer-rule{ width: 42px; height: 3px; background: var(--orange); margin-bottom: 22px; border-radius: 2px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4{ color:#fff; font-size: 1.15rem; margin-bottom: 12px; }
.footer-grid p{ color: #c7cfc9; margin:0; font-size: 0.94rem; }
.footer-grid .caption{
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid a{
  display:block;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-grid a:hover{ color: var(--orange); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size: 0.8rem;
  color: #93a099;
}

/* ---- responsive --------------------------------------------------------------------*/
@media (max-width: 880px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  nav.primary{
    display:none;
    position:absolute; left:0; right:0; top: 118px;
    background: var(--cream);
    flex-direction:column; align-items:flex-start;
    gap:0; padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    z-index: 40;
  }
  nav.primary.open{ display:flex; }
  nav.primary a{ padding: 12px 0; width:100%; border-bottom: 1px solid var(--line); }
  header.site{ position:relative; }

  .hero-grid, .story-grid, .contact-split, .split-cta{ grid-template-columns: 1fr; }
  .pillars, .testimonials{ grid-template-columns: 1fr; }
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
  .service-row{ flex-direction:column; align-items:flex-start; text-align:left; }
}
