﻿/* Önenoğlu Yemekçilik · Design System v3 (Premium Kurumsal)
   Brand: Forest Green (#3D2914) + Warm Gold (#C8A961)
   Helm Labs · 2026 */

:root {
  /* Warm Coffee Palette — Önenoğlu logosuyla tam uyum (bordo metin + altın amblem dünyası) */
  /* Tüm tonlar SICAK ailede — gri yok, hepsi kahve-cream-altın ekseninde */
  --forest: #3D2914;          /* primary espresso */
  --forest-deep: #26180A;     /* deep coffee — hero/footer */
  --forest-soft: #523B23;     /* hover/soft accent */

  --gold: #C8A961;            /* warm gold */
  --gold-soft: #DBC18A;       /* light gold */
  --gold-hot: #A88634;        /* deep gold — hover */

  --cream: #FAF6EE;           /* warm cream paper (slightly sarımsı) */
  --cream-2: #F2EAD7;         /* secondary warm cream */

  /* Warm ink — gri yerine kahveli sıcak text tonları */
  --ink: #2D1A0D;             /* warm black-brown body text */
  --ink-soft: #5C4434;        /* warm secondary text */
  --ink-mid: #806652;         /* warm muted/meta text */

  /* Warm line/border — cream-gold ailesinde */
  --line: #E5D7BE;            /* default border */
  --line-strong: #C8B392;     /* stronger border */
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.font-display { font-family: 'Playfair Display', serif; }
.text-forest { color: var(--forest); }
.text-forest-deep { color: var(--forest-deep); }
.text-gold { color: var(--gold); }
.text-gold-hot { color: var(--gold-hot); }
.text-ink-soft { color: var(--ink-soft); }
.text-ink-mid { color: var(--ink-mid); }
.bg-forest { background: var(--forest); }
.bg-forest-deep { background: var(--forest-deep); }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-gold { background: var(--gold); }
.border-line { border-color: var(--line); }

/* ============= EM ACCENT (kontrast düzeltme) ============= */
/* Eski: em.text-gold (kontrast düşük). Yeni: forest-deep metin + gold underline */
em.accent {
  font-style: italic;
  font-weight: 500;
  position: relative;
  color: inherit;
}
em.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 6%;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--gold);
  border-radius: 999px;
  z-index: -1;
  opacity: 0.5;
}
/* Dark bg variant — gold accent text directly (yeterince büyük başlıklarda) */
.dark-section em.accent {
  color: var(--gold-soft);
}
.dark-section em.accent::after { display: none; }

/* ============= ANIMATIONS ============= */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track {
  animation: scroll-x 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes float-soft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-soft { animation: float-soft 4s ease-in-out infinite; }

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.pulse-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--gold);
  animation: pulse-ring 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
}

/* ============= BUTTONS ============= */
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(38, 24, 10, 0.15);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(38, 24, 10, 0.25);
}
.btn-ghost {
  color: var(--forest);
  border: 1.5px solid var(--forest);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(168, 134, 52, 0.25);
}
.btn-gold:hover {
  background: var(--gold-hot);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 134, 52, 0.4);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ============= NAV ============= */
.nav-blur {
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.nav-dark {
  background: rgba(26, 15, 5, 0.55);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

/* ============= IMAGE CARDS ============= */
.img-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-hot);
  box-shadow: 0 30px 60px -25px rgba(61, 41, 20, 0.35);
}
.img-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-card:hover img { transform: scale(1.08); }
.img-card .img-icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(38, 24, 10, 0.4);
  border: 4px solid white;
  z-index: 2;
}
.img-card .img-content { padding: 38px 24px 28px; }

/* ============= MENU IMG CARD ============= */
.menu-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background: var(--forest-deep);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.menu-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-img-card:hover { transform: scale(1.02); }
.menu-img-card:hover img { opacity: 1; transform: scale(1.1); }
.menu-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 5,0.96) 0%, rgba(26, 15, 5,0.55) 45%, rgba(26, 15, 5,0.1) 100%);
  pointer-events: none;
}
.menu-img-card .menu-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
  z-index: 2;
  color: white;
}
.menu-img-card .menu-overlay .cat-num {
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.menu-img-card .menu-overlay .cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.15;
  color: #FFFFFF;
  font-weight: 500;
}

/* ============= GLASS ============= */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.glass-cream {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ============= HERO BLEED ============= */
.hero-bleed {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}
.hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 15, 5, 0.96) 0%, rgba(26, 15, 5, 0.72) 45%, rgba(26, 15, 5, 0.90) 100%),
    radial-gradient(circle at 20% 80%, rgba(168, 134, 52, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.hero-bleed > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bleed > .hero-content { position: relative; z-index: 2; }

/* ============= STAT PILL (kontrast iyileştirme) ============= */
.stat-pill {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(200, 169, 97, 0.32);
  border-radius: 1.5rem;
  padding: 30px 24px;
  transition: all 0.3s ease;
}
.stat-pill:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(200,169,97,0.10), rgba(200,169,97,0.03));
  box-shadow: 0 16px 40px -20px rgba(200, 169, 97, 0.4);
}
.stat-num {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 0;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  line-height: 0.95;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variant-numeric: lining-nums tabular-nums;
}
.stat-num em { color: var(--gold); font-style: normal; font-weight: 500; }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  font-weight: 500;
}

/* ============= MARQUEE LOGO ============= */
.logo-chip {
  flex-shrink: 0;
  height: 80px;
  min-width: 220px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--forest-deep);
  font-size: 1.08rem;
  margin: 0 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.logo-chip:hover {
  border-color: var(--gold);
  color: var(--gold-hot);
  background: rgba(200, 169, 97, 0.04);
  transform: translateY(-3px);
}

/* ============= PROCESS STEP ============= */
.step-card {
  position: relative;
  padding: 36px 26px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(61, 41, 20, 0.2);
}
.step-num {
  position: absolute;
  top: -22px;
  left: 26px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 12px rgba(168, 134, 52, 0.35);
}

/* ============= ACCENT LINE ============= */
.accent-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-deep);
  font-weight: 600;
}
.eyebrow-light {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

/* ============= INDEX NUMBER ============= */
.index-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-hot);
}

/* ============= TESTIMONIAL ============= */
.quote-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 34px 28px 28px;
  position: relative;
  transition: all 0.4s ease;
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(61, 41, 20, 0.25);
  border-color: var(--gold);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  line-height: 0.7;
  color: var(--gold);
  position: absolute;
  top: 18px;
  right: 26px;
  opacity: 0.4;
  pointer-events: none;
  font-weight: 700;
}

/* ============= REF LOGO (fallback grid) ============= */
.ref-logo {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: white;
  color: var(--forest-deep);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  transition: all 0.3s ease;
  font-weight: 500;
}
.ref-logo:hover {
  border-color: var(--gold);
  color: var(--gold-hot);
  transform: translateY(-2px);
}

/* ============= FORM ============= */
.form-input, .form-textarea {
  background: white;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(61, 41, 20, 0.1);
}

/* ============= SERTİFİKA ROZETLERİ ============= */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.cert-badge:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 97, 0.03);
  transform: translateY(-2px);
}
.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-icon.gold-bg { background: var(--gold); color: var(--forest-deep); }
.cert-text-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 600;
}
.cert-text-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--forest-deep);
  margin-top: 2px;
  font-weight: 500;
}

/* ============= FAQ ACCORDION ============= */
.faq-item {
  border-top: 1px solid var(--line);
  transition: all 0.3s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--forest-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold-hot);
  font-weight: 300;
  transition: transform 0.3s ease;
  font-family: 'Manrope', sans-serif;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-hot); }
.faq-item p {
  padding: 0 0 26px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
  max-width: 720px;
}

/* ============= WHATSAPP FLOATING ============= */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: pulse-ring 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
}
.wa-float:hover {
  transform: scale(1.08);
  background: #20BD5A;
}
@media (max-width: 640px) {
  .wa-float { width: 56px; height: 56px; right: 18px; bottom: 18px; }
}

/* ============= TIMELINE ============= */
.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 32px;
  border-left: 2px solid var(--line);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--forest-deep);
  margin-bottom: 6px;
  font-weight: 600;
}

/* ============= SVC CARD (legacy) ============= */
.svc-card {
  background: white;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: 0 20px 50px -20px rgba(61, 41, 20, 0.25);
}

/* ============= UTILITIES ============= */
.text-cream-85 { color: rgba(250, 247, 242, 0.92); }
.text-cream-70 { color: rgba(250, 247, 242, 0.78); }
.dark-section { color: var(--cream); }
.dark-section .text-muted { color: rgba(250, 247, 242, 0.78); }

/* ============= DATA/CORPORATE NUMERIC ============= */
/* Telefon, e-posta, adres gibi data text için kurumsal sans-serif + tabular-nums.
   Playfair'in old-style figures'ı (proportional 0689) sayılarda karışık görünüyor;
   Manrope lining + tabular = aynı yükseklik + sabit genişlik = data için doğru. */
.data-text {
  font-family: 'Manrope', system-ui, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}

/* ============= MENU MAGAZINE LAYOUT ============= */
.menu-section {
  scroll-margin-top: 140px;
}
.menu-magazine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .menu-magazine {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
  }
}
.menu-magazine .photo-col {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--forest-deep);
}
.menu-magazine .photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-magazine:hover .photo-col img { transform: scale(1.04); }
.menu-magazine .photo-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 24, 10, 0.55) 0%, transparent 50%);
  pointer-events: none;
}
.menu-magazine .photo-col .cat-num-overlay {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
}
.menu-magazine .content-col {
  padding: 8px 4px;
}
.menu-magazine .cat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.menu-magazine .cat-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dish-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.3s ease;
}
.dish-row:last-child { border-bottom: 1px solid var(--line); }
.dish-row .dish-num {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 0.82rem;
  color: var(--gold-hot);
  font-weight: 600;
  min-width: 28px;
  flex-shrink: 0;
}
.dish-row .dish-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  color: var(--forest-deep);
  font-weight: 500;
  flex: 1;
  letter-spacing: -0.005em;
}
.dish-tags {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}
.dietary-tag {
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--cream-2);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.dietary-tag.vegan {
  background: rgba(122, 169, 99, 0.12);
  color: #4D7A33;
  border-color: rgba(122, 169, 99, 0.3);
}
.dietary-tag.vejetaryen {
  background: rgba(168, 134, 52, 0.12);
  color: var(--gold-hot);
  border-color: rgba(168, 134, 52, 0.3);
}
.dietary-tag.etli {
  background: rgba(61, 41, 20, 0.08);
  color: var(--forest-deep);
  border-color: rgba(61, 41, 20, 0.18);
}
.dietary-tag.sutlu {
  background: rgba(219, 193, 138, 0.18);
  color: var(--gold-hot);
  border-color: rgba(219, 193, 138, 0.45);
}

/* ============= FILTER BAR ============= */
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 0;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: white;
  color: var(--forest-deep);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: inherit;
}
.filter-chip:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.filter-chip.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  box-shadow: 0 4px 12px -3px rgba(61, 41, 20, 0.35);
}
.filter-chip .chip-count {
  background: rgba(0,0,0,0.08);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}
.filter-chip.active .chip-count {
  background: rgba(255,255,255,0.18);
}

/* ============= LOGO ============= */
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo-img:hover { opacity: 0.85; }
/* logo-img.on-dark rule kaldırıldı — logo her yerde orijinal kahve renkte */
@media (max-width: 640px) {
  .logo-img { height: 46px; }
}

/* ============= SCROLL TO TOP ============= */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(38, 24, 10, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  border: 1px solid rgba(200, 169, 97, 0.25);
  cursor: pointer;
}
.scroll-top:hover {
  background: var(--forest-deep);
  transform: translateY(-2px) scale(1.05);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============= KVKK COOKIE BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  z-index: 101;
  box-shadow: 0 16px 40px -8px rgba(38, 24, 10, 0.18), 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(160%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============= GALERI LIGHTBOX ============= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--cream-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(38, 24, 10,0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-icon { opacity: 1; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.visible { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============= BLOG CARD ============= */
.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -20px rgba(61, 41, 20, 0.25);
}
.blog-card .blog-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 22px 24px 26px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-hot);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============= RESPONSIVE TWEAKS ============= */
@media (max-width: 768px) {
  .hero-bleed { min-height: 84vh; }
  .quote-mark { font-size: 4rem; top: 12px; right: 20px; }
  .step-card { padding-top: 32px; }
  .scroll-top { right: 18px; bottom: 84px; width: 40px; height: 40px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
  .cookie-content { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .wa-float::before { animation: none !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .no-print, .wa-float { display: none !important; }
  body { background: white; color: black; }
}
