@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Playfair+Display:wght@600&display=swap');
/* Modern, responsive, warm-toned theme for Yemekçilik */

/* 1) Base & Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* 2) Theme Tokens */
:root {
  --bg: #0f0f10;
  --surface: #151516;
  --elev: #1a1b1c;
  --muted: #8b8f98;
  --text: #e9eaee;
  --heading: #f6f7fb;
  --border: #26282b;
  --accent: #ff7a3d; /* warm orange */
  --accent-2: #ffd4be;
  --accent-3: #ffb089;
  --ok: #1ec28b;
  --warn: #f2b516;
  --err: #ff5468;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1150px;
}

/* Optional light mode */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --surface: #ffffff;
    --elev: #f5f6f7;
    --muted: #606774;
    --text: #1c212b;
    --heading: #0c0f14;
    --border: #e8e9ec;
    --accent: #e0561c;
    --accent-2: #ffb697;
    --accent-3: #ff8751;
    --shadow: 0 10px 30px rgba(16,16,18,.08);
  }
}

/* 3) Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.stack { display: grid; gap: 16px; }
.cluster { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(12,1fr); }

/* 4) Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(15,15,16,.65); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .2px; color: var(--heading); }
.brand .dot { width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-3)); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent); }
.nav a { padding: 8px 12px; border-radius: 10px; color: var(--muted); transition: .2s ease; }
.nav a:hover { color: var(--heading); background: var(--elev); }

/* 5) Hero */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0; background: radial-gradient(1200px 400px at 10% -10%, color-mix(in oklab, var(--accent) 22%, transparent), transparent), radial-gradient(800px 300px at 90% 0%, color-mix(in oklab, var(--accent-3) 18%, transparent), transparent); }
.kicker { color: var(--accent-2); font-weight: 600; letter-spacing: .3px; }
.hero h1 { margin: 10px 0 14px; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; color: var(--heading); }
.hero p { max-width: 60ch; color: var(--muted); }

/* 6) Cards */
.card { background: linear-gradient(180deg, var(--surface), var(--elev)); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: clip; }
.card:hover { transform: translateY(-2px); transition: transform .15s ease; }
.card .card-body { padding: 18px; display: grid; gap: 10px; }
.card .eyebrow { color: var(--muted); font-size: .85rem; }
.card h3 { margin: 2px 0; font-size: clamp(18px, 2vw, 22px); color: var(--heading); }
.card p { color: var(--muted); }
.card .meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: .9rem; }

/* 7) Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 44px; padding: 0 16px; border-radius: 999px; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: .2s ease; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-3)); color: #101011; }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn-ghost:hover { background: var(--elev); }
.btn-block { width: 100%; }

/* 8) Forms */
.input, .select, .textarea { width: 100%; background: var(--elev); border: 1px solid var(--border); color: var(--text); border-radius: 14px; padding: 10px 12px; outline: none; transition: .2s ease; }
.input:focus, .select:focus, .textarea:focus { border-color: color-mix(in oklab, var(--accent) 60%, var(--border)); box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 18%, transparent); }
.label { display: block; font-size: .92rem; color: var(--muted); margin-bottom: 6px; }
.help { color: var(--muted); font-size: .86rem; }

/* Floating field */
.field { position: relative; }
.field .input { padding-top: 18px; }
.field .float { position: absolute; left: 12px; top: 10px; font-size: .9rem; color: var(--muted); transition: .15s ease; pointer-events: none; }
.field .input:focus + .float, .field .input:not(:placeholder-shown) + .float { top: 6px; font-size: .75rem; color: var(--accent-2); }

/* 9) Tables */
.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.table th, .table td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.table thead th { background: var(--elev); color: var(--muted); font-weight: 600; }
.table tbody tr:hover { background: color-mix(in oklab, var(--elev) 80%, transparent); }
.table .badge { display: inline-flex; align-items: center; height: 26px; padding: 0 10px; font-size: .82rem; border-radius: 999px; background: color-mix(in oklab, var(--accent) 18%, var(--elev)); color: var(--accent-2); border: 1px dashed color-mix(in oklab, var(--accent) 40%, var(--border)); }

/* 10) Badges & Pills */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); background: var(--elev); }
.badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }

/* 11) Sections */
.section { padding: 36px 0; }
.section .section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.section h2 { margin: 0; font-size: clamp(20px, 3vw, 30px); color: var(--heading); }
.section p { color: var(--muted); }

/* 12) Footer */
.footer { margin-top: 36px; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--surface), var(--bg)); }
.footer .columns { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; padding: 28px 0; }
.footer small { color: var(--muted); }

/* 13) Utilities */
.hide { display: none !important; }
.center { display: grid; place-items: center; }
.muted { color: var(--muted); }
.accent { color: var(--accent-2); }
.round { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.border { border: 1px solid var(--border); }
.pad { padding: 14px; }

/* 14) Responsive */
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(8,1fr); } }
@media (max-width: 768px) { .grid { grid-template-columns: repeat(4,1fr); } .nav { height: 60px; } .header { backdrop-filter: blur(6px); } }
@media (max-width: 520px) { .grid { grid-template-columns: repeat(2,1fr); } .hero { padding: 44px 0; } }

/* 15) Animations */
.fade-in { opacity: 0; animation: fade .5s ease .05s forwards; }
@keyframes fade { to { opacity: 1; } }

/* 16) Components: Toast, Modal */
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 80; background: var(--elev); border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: var(--radius-sm); box-shadow: var(--shadow); display: grid; gap: 6px; min-width: 260px; }
.toast.ok { border-color: color-mix(in oklab, var(--ok) 40%, var(--border)); }
.toast.warn { border-color: color-mix(in oklab, var(--warn) 40%, var(--border)); }
.toast.err { border-color: color-mix(in oklab, var(--err) 40%, var(--border)); }

.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); display: none; place-items: center; z-index: 90; }
.modal { width: min(600px, 92vw); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.modal.open ~ .modal-backdrop, .modal-backdrop.open { display: grid; }

/* 17) Grids for menu/listing */
.cards-3 { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-3 { grid-template-columns: 1fr; } }

/* 18) Chips & Filters */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 12px; border-radius: 999px; background: var(--elev); border: 1px solid var(--border); color: var(--muted); cursor: pointer; transition: .2s; }
.chip[aria-pressed="true"], .chip.active { background: color-mix(in oklab, var(--accent) 18%, var(--elev)); color: var(--heading); border-color: color-mix(in oklab, var(--accent) 35%, var(--border)); }

/* 19) Status dots */
.dot.ok { background: var(--ok); }
.dot.warn { background: var(--warn); }
.dot.err { background: var(--err); }

/* 20) Hero CTA band */
.cta { background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 22%, transparent), transparent); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* 21) Links */
.link { color: var(--accent-2); border-bottom: 1px dashed color-mix(in oklab, var(--accent) 45%, transparent); }
.link:hover { color: var(--heading); border-bottom-style: solid; }

/* 22) Page Examples */
.header + .hero { margin-top: 0; }
.main { padding: 24px 0 40px; }

/* 23) Accessibility helpers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid color-mix(in oklab, var(--accent) 50%, transparent); outline-offset: 2px; border-radius: 8px; }

/* 24) Loading skeleton */
.skeleton { position: relative; overflow: hidden; background: linear-gradient(90deg, var(--elev), color-mix(in oklab, var(--elev) 85%, #ffffff), var(--elev)); background-size: 300% 100%; animation: shimmer 1.2s ease-in-out infinite; }
@keyframes shimmer { 0%{ background-position: 200% 0; } 100%{ background-position: -200% 0; } }

/* 25) Tag list */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: color-mix(in oklab, var(--accent) 18%, var(--elev)); border: 1px solid color-mix(in oklab, var(--accent) 30%, var(--border)); color: var(--accent-2); padding: 6px 10px; border-radius: 999px; font-size: .84rem; }

/* 26) Callouts */
.callout { border-left: 4px solid var(--accent); background: color-mix(in oklab, var(--accent) 7%, var(--elev)); padding: 12px 14px; border-radius: 8px; }

/* 27) Header compact on scroll */
.header.shrink { height: 56px; }

/* 28) Simple switch */
.switch { --w: 46px; --h: 26px; position: relative; width: var(--w); height: var(--h); background: var(--elev); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; }
.switch i { position: absolute; top: 50%; left: 4px; width: 20px; height: 20px; transform: translateY(-50%); background: var(--accent); border-radius: 999px; transition: .2s; }
.switch[aria-checked="true"] i { left: calc(100% - 24px); }

/* 29) Alerts */
.alert { display: grid; grid-template-columns: 24px 1fr auto; align-items: start; gap: 10px; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--elev); }
.alert.ok { border-color: color-mix(in oklab, var(--ok) 35%, var(--border)); }
.alert.warn { border-color: color-mix(in oklab, var(--warn) 35%, var(--border)); }
.alert.err { border-color: color-mix(in oklab, var(--err) 35%, var(--border)); }

/* 30) Footer legal */
.legal { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; padding: 14px 0 22px; border-top: 1px dashed var(--border); color: var(--muted); }

/* ============================= */
/* THEME 2: Aurora Glass (alt)   */
/* ============================= */
/* Activate by putting class="theme-aurora" on <body> */
.theme-aurora { 
  --bg: #0b0e12; 
  --surface: rgba(20,22,27,.65);
  --elev: rgba(25,28,34,.55);
  --border: rgba(255,255,255,.08);
  --muted: #a2a9b5;
  --text: #ebeff6;
  --heading: #ffffff;
  --accent: #7af5ff;       /* cyan */
  --accent-2: #b6f8ff;
  --accent-3: #b58bff;     /* purple */
  --ok: #30e3a8; --warn:#ffd44d; --err:#ff6e84;
  --shadow: 0 20px 60px rgba(6,10,14,.35);
}
.theme-aurora .mesh-bg::before,
.theme-aurora .mesh-bg::after { filter: blur(40px) saturate(120%); opacity: .85; }

/* Gradient mesh background */
.mesh-bg { position: relative; isolation: isolate; }
.mesh-bg::before,
.mesh-bg::after { content: ""; position: absolute; inset: -25% -10% auto -10%; height: 70vh; z-index: -1; background:
  radial-gradient(60% 40% at 20% 30%, color-mix(in oklab, var(--accent) 30%, transparent), transparent),
  radial-gradient(50% 30% at 80% 20%, color-mix(in oklab, var(--accent-3) 30%, transparent), transparent),
  radial-gradient(50% 40% at 50% 80%, color-mix(in oklab, var(--accent-2) 22%, transparent), transparent);
  filter: blur(32px) saturate(110%);
  opacity: .6;
}
.mesh-bg::after { inset: auto -10% -25% -10%; height: 60vh; }

/* Glass surfaces */
.glass { background: color-mix(in oklab, var(--surface) 70%, transparent); border: 1px solid var(--border); backdrop-filter: blur(10px) saturate(130%); box-shadow: var(--shadow); }
.squircle { border-radius: 28px; }

/* Oversized editorial headings */
.h-display { font-family: "Playfair Display", ui-serif, Georgia, serif; font-weight: 600; letter-spacing: .2px; }
.hero h1.h-display { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; }

/* Pill navigation (vertical) */
.pillnav { display: flex; flex-direction: column; gap: 10px; padding: 10px; }
.pillnav a { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); background: color-mix(in oklab, var(--elev) 80%, transparent); }
.pillnav a[aria-current="page"], .pillnav a.active { color: var(--heading); background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent-3) 70%, var(--accent))); }

/* Card alt look */
.theme-aurora .card { background: color-mix(in oklab, var(--surface) 60%, transparent); border: 1px solid var(--border); backdrop-filter: blur(8px) saturate(125%); }
.theme-aurora .btn-primary { color: #0a0d11; }

/* Blobs for hero */
.blob { position: absolute; width: 340px; height: 340px; border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; filter: blur(18px); opacity: .4; z-index: -1; }
.blob.one { top: -60px; left: -40px; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%); }
.blob.two { right: -60px; bottom: -60px; background: radial-gradient(circle at 70% 60%, var(--accent-3), transparent 60%); }

/* Split hero variant */
.hero.split { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 28px; }
.hero.split .visual { aspect-ratio: 4/3; }
.hero.split .visual .frame { height: 100%; border-radius: 24px; overflow: hidden; }

/* Edge-outline buttons */
.btn-outline { background: transparent; border-color: color-mix(in oklab, var(--accent) 50%, var(--border)); color: var(--accent-2); }
.btn-outline:hover { background: color-mix(in oklab, var(--accent) 10%, var(--elev)); color: var(--heading); }

/* Soft separators */
.hr { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 18px 0; }

/* Compact list rows (menu/list) */
.list-row { display:flex; align-items:center; gap:12px; padding:12px 14px; border:1px solid var(--border); border-radius:16px; background: color-mix(in oklab, var(--elev) 85%, transparent); }
.list-row:hover { background: color-mix(in oklab, var(--accent) 6%, var(--elev)); }
.list-row .price { margin-left:auto; font-weight:700; color: var(--accent-2); }

/* Example quick starters */
/* Wrap your main with <div class="mesh-bg"> ... */
/* Add <body class="theme-aurora"> to enable this look */
