/* =============================================================
   DÜRÜMCÜ İSMAİL — Ortak Stiller
   Palet: kömür/füme zemin, biber kırmızısı ve kavrulmuş lavaş sarısı
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Karla:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root{
  /* Renkler */
  --ink:        #1C1512;   /* kömür - ana koyu zemin */
  --ink-soft:   #2E2420;   /* füme - kart/ikinci zemin */
  --ember:      #C6402D;   /* biber kırmızısı - birincil vurgu */
  --ember-dark: #9E3324;
  --flame:      #E8A33D;   /* kavrulmuş lavaş sarısı - ikincil vurgu */
  --cream:      #F3E9DC;   /* koyu zemin üstü metin */
  --paper:      #FAF6EF;   /* açık bölüm zemini */
  --olive:      #6B6350;   /* kısık metin/ayraç */
  --line:       rgba(243,233,220,0.16);

  /* Tipografi */
  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-body:    'Karla', 'Segoe UI', sans-serif;

  --radius: 3px;
}

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

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

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

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

h1, h2, h3, h4{
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.08;
}

p{ margin: 0 0 1em; max-width: 62ch; }

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

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 2px solid var(--flame);
  outline-offset: 3px;
}

/* ---------- Skewer / şiş ayraç motifi ---------- */
.skewer{
  border: 0;
  height: 10px;
  margin: 0;
  background:
    radial-gradient(circle at center, currentColor 2.5px, transparent 2.6px) 0 50% / 34px 10px repeat-x;
  color: var(--olive);
  opacity: 0.55;
}
.skewer::before{ content: none; }
.skewer.light{ color: var(--cream); opacity: 0.35; }

/* ---------- Butonlar ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-ember{
  background: var(--ember);
  color: var(--cream);
}
.btn-ember:hover{ background: var(--ember-dark); }

.btn-ghost{
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-ghost:hover{ background: rgba(243,233,220,0.1); }

.btn-outline-ink{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-ink:hover{ background: var(--ink); color: var(--cream); }

.btn-flame{
  background: var(--flame);
  color: var(--ink);
}
.btn-flame:hover{ background: #d6912f; }

/* ---------- Chili / acılık ikonu ---------- */
.chili{ width: 16px; height: 16px; display: inline-block; vertical-align: -3px; }
.chili.on{ color: var(--ember); }
.chili.off{ color: var(--olive); opacity: 0.35; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand img{ height: 40px; width: auto; }
.brand span{
  font-family: var(--f-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav ul{
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a{
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"]{
  border-color: var(--ember);
  color: var(--flame);
}

.nav-cta{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone{
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.nav-phone:hover{ color: var(--flame); }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 34px;
    gap: 26px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .main-nav.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav ul{ flex-direction: column; gap: 20px; }
  .nav-cta{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-toggle{ display: inline-flex; align-items: center; }
  .brand span{ font-size: 1.1rem; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
.footer-grid h4{
  font-size: 1rem;
  color: var(--flame);
  margin-bottom: 16px;
}
.footer-grid p, .footer-grid address{
  color: rgba(243,233,220,0.78);
  font-style: normal;
  margin: 0 0 6px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img{ height: 36px; }
.footer-brand span{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-links{ list-style: none; margin: 0; padding: 0; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ color: rgba(243,233,220,0.78); transition: color 0.15s ease; }
.footer-links a:hover{ color: var(--flame); }
.footer-bottom{
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(243,233,220,0.55);
}

@media (max-width: 780px){
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Genel bölüm yardımcıları ---------- */
.section{ padding: 88px 0; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-head p{ color: var(--olive); margin-top: 12px; }

.section.on-ink{ background: var(--ink); color: var(--cream); }
.section.on-ink .section-head p{ color: rgba(243,233,220,0.7); }
