/* =========================================================
   Pizza Rise – Tasarım 2
   Sıcak, samimi, her yaşa uygun: büyük yazı, büyük dokunma alanları.
   ========================================================= */
:root {
  --tomato: #C8201E;
  --tomato-dark: #9E1714;
  --tomato-soft: #FDE4DF;
  --cheese: #FFC53D;
  --cheese-soft: #FFF3D1;
  --basil: #23864D;
  --basil-soft: #DDF3E5;
  --dough: #FFF9F0;
  --crust: #F6E6CE;
  --ink: #2A1A12;
  --muted: #6E5D51;
  --line: #EEDFC9;
  --white: #fff;

  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px -12px rgba(122, 59, 18, .28);
  --shadow-sm: 0 4px 14px -6px rgba(122, 59, 18, .25);

  --head: "Baloo 2", "Nunito", system-ui, sans-serif; /* Tüm Türkçe harfleri ve ₺ işaretini içerir */
  --body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 70px); }
body {
  font-family: var(--body);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--dough);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--cheese); outline-offset: 3px; border-radius: 8px; }

.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.i { width: 22px; height: 22px; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--head); font-weight: 600; font-size: 1.08rem; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .2s, box-shadow .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--tomato); color: #fff; box-shadow: 0 8px 20px -8px rgba(200, 32, 30, .7); }
.btn-primary:hover { background: var(--tomato-dark); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--tomato); color: var(--tomato); }
.btn-cheese { background: var(--cheese); color: var(--ink); }
.btn-cheese:hover { background: #ffb800; }
.btn-sm { min-height: 42px; padding: 8px 18px; font-size: .98rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--dough); /* bulanıklık efekti kaydırmayı yavaşlattığı için düz zemin */
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }
.nav { margin-left: auto; }
.nav ul { list-style: none; padding: 0; display: flex; gap: 4px; }
.nav a {
  display: block; padding: 10px 14px; border-radius: 999px; text-decoration: none;
  font-weight: 700; color: var(--ink); transition: background .2s, color .2s;
}
.nav a:hover { background: var(--crust); }
.nav a[aria-current="page"] { background: var(--tomato-soft); color: var(--tomato); }
.header-call { flex: none; }
.nav-toggle { display: none; margin-left: auto; width: 52px; height: 52px; border-radius: 16px; border: 2px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle .i { width: 26px; height: 26px; pointer-events: none; }
.nav-toggle .close { display: none; }

@media (max-width: 1000px) {
  :root { --header-h: 68px; }
  .brand img { height: 44px; }
  .nav-toggle { display: inline-flex; }
  .header-call { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; margin: 0; background: var(--dough);
    padding: 20px 16px 120px; overflow-y: auto; display: none;
  }
  .nav.open { display: block; animation: drop .25s ease; }
  .nav ul { flex-direction: column; gap: 8px; }
  .nav a { font-family: var(--head); font-size: 1.5rem; font-weight: 600; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
  .nav-open .nav-toggle .open { display: none; }
  .nav-open .nav-toggle .close { display: block; }
  .nav-open { overflow: hidden; }
}
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Mobile bottom action bar ---------- */
.action-bar { display: none; }
@media (max-width: 1000px) {
  body { padding-bottom: 84px; }
  .action-bar {
    position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 70;
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 8px; padding: 8px;
    background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    min-height: 56px; border-radius: 16px; text-decoration: none; font-weight: 800; font-size: .9rem;
    background: var(--crust); color: var(--ink);
  }
  .action-bar a.call { background: var(--tomato); color: #fff; flex-direction: row; gap: 8px; font-size: 1.05rem; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: #fff; }
.section-head { max-width: 680px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: var(--cheese-soft); color: #8A5A00; font-weight: 800; font-size: .92rem; letter-spacing: .02em;
}
.section-head h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin: 12px 0 10px; }
.section-head p { color: var(--muted); font-size: 1.12rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(36px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 85% 30%, var(--cheese-soft), transparent 70%),
    radial-gradient(500px 360px at 5% 90%, var(--tomato-soft), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 700; margin: 16px 0 18px; }
.hero h1 .accent { color: var(--tomato); display: inline-block; position: relative; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .22em; z-index: -1;
  background: var(--cheese); border-radius: 999px; opacity: .8;
}
.hero .lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding: 0; list-style: none; color: var(--muted); font-weight: 700; }
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts .i { color: var(--basil); }
.hero-art { position: relative; max-width: 520px; margin-inline: auto; width: 100%; }
.hero-art .plate { position: absolute; inset: 6% 6% 0; border-radius: 50%; background: var(--crust); transform: translateY(6%); z-index: -1; }
.pizza-art { width: 100%; }
.hero-art .pizza-art { animation: bob 6s ease-in-out infinite; }
.pa-steam path { animation: steam 3s ease-in-out infinite; }
.pa-steam path:nth-child(2) { animation-delay: .6s; }
.pa-steam path:nth-child(3) { animation-delay: 1.2s; }
.sticker {
  position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 18px;
  background: #fff; box-shadow: var(--shadow); font-weight: 800; font-size: .98rem;
}
.sticker .i { color: var(--tomato); }
.sticker.s1 { top: 12%; left: -4%; transform: rotate(-4deg); }
.sticker.s2 { bottom: 10%; right: -2%; transform: rotate(3deg); }
@keyframes bob { 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes steam { 0%, 100% { opacity: 0; transform: translateY(8px); } 50% { opacity: .85; transform: translateY(-4px); } }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-art { max-width: 270px; order: -1; }
  .hero h1 { margin-top: 12px; }
  .sticker { font-size: .85rem; padding: 8px 12px; }
}

/* ---------- Choice cards (restoran / paket) ---------- */
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.choice {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  padding: 26px; border-radius: var(--radius); text-decoration: none; background: #fff; border: 2px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.choice:hover { transform: translateY(-4px); border-color: var(--tomato); box-shadow: var(--shadow); }
.choice .badge-ic { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; background: var(--tomato-soft); color: var(--tomato); }
.choice.paket .badge-ic { background: var(--basil-soft); color: var(--basil); }
.choice .badge-ic .i { width: 36px; height: 36px; }
.choice h3 { font-size: 1.6rem; }
.choice p { color: var(--muted); font-weight: 600; }
.choice .go { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--dough); }
@media (max-width: 760px) { .choices { grid-template-columns: 1fr; } .choice { padding: 20px; } .choice .badge-ic { width: 60px; height: 60px; } }

/* ---------- Product cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.card {
  display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.35rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card .price-from { font-family: var(--head); color: var(--tomato); font-weight: 600; white-space: nowrap; font-size: 1.05rem; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; list-style: none; }
.chips li { padding: 4px 11px; border-radius: 999px; background: var(--dough); border: 1px solid var(--line); font-size: .9rem; font-weight: 700; color: #5b4a3e; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.tag .i { width: 16px; height: 16px; }
.tag-veg { background: var(--basil-soft); color: var(--basil); }
.tag-hot { background: var(--tomato-soft); color: var(--tomato); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; padding: 0; list-style: none; }
.steps li { position: relative; padding: 30px 24px 26px; border-radius: var(--radius); background: var(--dough); border: 2px dashed var(--line); text-align: center; }
.steps li::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--cheese); font-family: var(--head); font-weight: 700; font-size: 1.6rem;
}
.steps h3 { font-size: 1.35rem; margin-bottom: 6px; }
.steps p { color: var(--muted); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 26px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.feature .ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 14px; }
.feature .ic .i { width: 30px; height: 30px; }
.feature:nth-child(4n+1) .ic { background: var(--basil-soft); color: var(--basil); }
.feature:nth-child(4n+2) .ic { background: var(--cheese-soft); color: #A06A00; }
.feature:nth-child(4n+3) .ic { background: var(--tomato-soft); color: var(--tomato); }
.feature:nth-child(4n+4) .ic { background: #E8E6FF; color: #4B45B8; }
.feature h3 { font-size: 1.28rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 1rem; }
@media (max-width: 1000px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: clamp(28px, 5vw, 48px); border-radius: 32px; background: var(--tomato); color: #fff;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 61, .5) 0 30%, transparent 31%) 0 0/48px 48px, rgba(255, 255, 255, .06);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { opacity: .92; font-size: 1.15rem; margin-top: 6px; }
.cta-band .btn { position: relative; z-index: 1; font-size: clamp(1.1rem, 2.4vw, 1.4rem); min-height: 60px; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; text-align: center; } }

/* ---------- Page header ---------- */
.page-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px); text-align: center; background: linear-gradient(var(--crust), var(--dough)); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; margin-top: 10px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 640px; margin: 12px auto 0; }
.crumbs ol { list-style: none; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; font-weight: 700; font-size: .95rem; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: 6px; opacity: .6; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--tomato); }

/* ---------- Menu page ---------- */
.menu-switch { display: inline-flex; padding: 6px; margin-top: 22px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.menu-switch a { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.menu-switch a[aria-current="page"] { background: var(--tomato); color: #fff; }
.menu-note { margin-top: 12px; font-size: .95rem; color: var(--muted); }

.menu-tools {
  position: sticky; top: var(--header-h); z-index: 40; padding: 12px 0;
  background: var(--dough); border-bottom: 1px solid var(--line); box-shadow: 0 6px 12px -10px rgba(122, 59, 18, .35);
}
.menu-tools .wrap { display: flex; gap: 12px; align-items: center; }
.cat-nav { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 2px; overscroll-behavior-x: contain; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); text-decoration: none; font-weight: 800; white-space: nowrap;
}
.cat-nav a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-nav .i { width: 18px; height: 18px; }
.search { position: relative; flex: 0 1 300px; }
.search input {
  width: 100%; min-height: 48px; padding: 10px 16px 10px 46px; border-radius: 999px; border: 2px solid var(--line); background: #fff;
}
.search input:focus { outline: none; border-color: var(--tomato); }
.search .i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
@media (max-width: 760px) {
  .menu-tools .wrap { flex-direction: column-reverse; align-items: stretch; gap: 10px; }
  .search { flex: none; }
  .cat-nav { width: 100%; }
}

.menu-section { padding: 44px 0 8px; }
.menu-section-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.menu-section-head h2 { display: flex; align-items: center; gap: 12px; font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.menu-section-head h2 .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--tomato-soft); color: var(--tomato); }
.menu-section-head h2 .ic .i { width: 28px; height: 28px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.sizes li { display: flex; align-items: baseline; gap: 8px; padding: 8px 16px; border-radius: 16px; background: #fff; border: 2px solid var(--line); font-weight: 700; }
.sizes li b { font-family: var(--head); font-size: 1.3rem; color: var(--tomato); font-weight: 600; }
.sizes .size-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cheese); align-self: center; }
.sizes li:nth-child(2) .size-dot { width: 15px; height: 15px; }
.sizes li:nth-child(3) .size-dot { width: 18px; height: 18px; }
.subgroup { font-size: 1.4rem; margin: 28px 0 14px; display: flex; align-items: center; gap: 10px; color: var(--basil); }
.opts { display: grid; gap: 8px; margin-top: 4px; }
.opt { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; border-radius: 12px; background: var(--dough); font-weight: 700; }
.opt b { font-family: var(--head); color: var(--tomato); font-size: 1.15rem; font-weight: 600; }
.drinks { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.drink { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-radius: 16px; background: #fff; border: 1px solid var(--line); font-weight: 700; }
.drink b { font-family: var(--head); color: var(--tomato); font-size: 1.2rem; font-weight: 600; white-space: nowrap; }
.no-result { display: none; text-align: center; padding: 50px 16px; color: var(--muted); font-size: 1.15rem; }
.no-result.show { display: block; }
.is-hidden { display: none !important; }

/* ---------- About ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.story .pizza-art { max-width: 420px; margin: auto; }
.story p { font-size: 1.15rem; color: var(--muted); margin-bottom: 14px; }
.story h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 12px 0 16px; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv > div { padding: 32px; border-radius: var(--radius); }
.mv > div:first-child { background: var(--tomato); color: #fff; }
.mv > div:last-child { background: var(--ink); color: #fff; }
.mv h3 { font-size: 1.8rem; margin-bottom: 10px; }
.mv p { opacity: .92; font-size: 1.1rem; }
.quote { max-width: 820px; margin: 0 auto; text-align: center; font-family: var(--head); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; line-height: 1.35; }
.quote::before { content: "“"; display: block; font-size: 4rem; line-height: .6; color: var(--tomato); }
@media (max-width: 860px) { .story, .mv { grid-template-columns: 1fr; } .story .pizza-art { max-width: 280px; } }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.post-card { display: flex; flex-direction: column; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--crust); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card h3 { font-size: 1.35rem; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card { position: relative; }
.post-card p { color: var(--muted); }
.post-card .more { margin-top: auto; color: var(--tomato); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.meta { font-size: .92rem; font-weight: 700; color: var(--muted); }
.article { max-width: 760px; margin: 0 auto; }
.article .cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; aspect-ratio: 16/8; background: var(--crust); }
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 700; margin: 8px 0 22px; }
.prose { font-size: 1.16rem; line-height: 1.8; }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-size: 1.9rem; margin-top: 1.6em; color: var(--tomato); }
.prose h3 { font-size: 1.5rem; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .4em; }
.prose a { color: var(--tomato); font-weight: 700; }
.prose img { border-radius: 18px; }
.prose blockquote { padding: 14px 20px; border-left: 5px solid var(--cheese); background: var(--cheese-soft); border-radius: 0 16px 16px 0; }
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.prose .ql-align-justify { text-align: justify; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: start; }
.info-list { display: grid; gap: 14px; }
.info { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); text-decoration: none; }
a.info:hover { border-color: var(--tomato); }
.info .ic { width: 56px; height: 56px; border-radius: 18px; flex: none; display: grid; place-items: center; background: var(--tomato-soft); color: var(--tomato); }
.info .ic .i { width: 28px; height: 28px; }
.info small { display: block; color: var(--muted); font-weight: 700; font-size: .9rem; }
.info strong { font-size: 1.15rem; word-break: break-word; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 440px; background: var(--crust); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 440px; border: 0; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } .map, .map iframe { min-height: 320px; } }

/* ---------- Footer ---------- */
.site-footer { margin-top: clamp(40px, 6vw, 72px); background: var(--ink); color: #EADBC8; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px; }
.footer-logo { display: inline-block; background: #fff; border-radius: 16px; padding: 8px 12px; margin-bottom: 14px; }
.footer-logo img { height: 50px; width: auto; }
.site-footer h2 { font-size: 1.25rem; color: #fff; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--cheese); }
.site-footer li { display: flex; gap: 10px; align-items: flex-start; }
.site-footer li .i { color: var(--cheese); margin-top: 3px; width: 20px; height: 20px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); }
.social a:hover { background: var(--tomato); color: #fff; }
.copy { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .95rem; text-align: center; opacity: .8; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 52px; height: 52px; border-radius: 16px; border: 0; cursor: pointer;
  display: grid; place-items: center; background: var(--ink); color: #fff; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
@media (max-width: 1000px) { .to-top { bottom: 100px; right: 14px; width: 46px; height: 46px; } }

.admin-strip { background: var(--cheese); color: var(--ink); text-align: center; font-weight: 800; font-size: .95rem; padding: 8px 12px; }
.empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 1.1rem; }

/* ---------- Maintenance & error ---------- */
.solo { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 32px 16px; background: radial-gradient(700px 500px at 50% 20%, var(--cheese-soft), var(--dough) 70%); }
.solo .box { max-width: 640px; }
.solo .logo { display: inline-block; background: #fff; border-radius: 18px; padding: 10px 16px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.solo .logo img { height: 64px; width: auto; }
.solo .pizza-art { width: 220px; margin: 0 auto 10px; }
.solo h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 700; margin-bottom: 12px; }
.solo p { font-size: 1.2rem; color: var(--muted); margin-bottom: 26px; }
.error-page { padding: clamp(50px, 9vw, 110px) 0; text-align: center; }
.error-page .code { font-family: var(--head); font-size: clamp(5rem, 16vw, 9rem); font-weight: 700; color: var(--tomato); line-height: 1; }
.error-page p { font-size: 1.2rem; color: var(--muted); margin: 12px 0 26px; }
.error-page .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Reveal on scroll ---------- */
/* İçerik yalnızca betik hazırsa (html.reveal-on) gizlenir; aksi hâlde her zaman görünür kalır. */
.reveal-on .reveal:not(.in) { opacity: 0; transform: translateY(18px); }
.reveal-on .reveal { transition: opacity .6s ease, transform .6s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

.base-note { display: flex; align-items: center; gap: 8px; margin: -6px 0 18px; color: var(--muted); font-weight: 600; }
.base-note .i { color: var(--basil); }
.base-note strong { color: var(--ink); }
