/* ============================================================
   Mediterranean Kebab — medkebab.com
   Self-contained stylesheet. No CDNs; fonts are self-hosted.
   Palette: crimson #c8283c · owner-yellow #f6cf4a · cream #faf6ef
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Merienda';
  src: url('../fonts/Merienda-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --red: #c8283c;
  --red-dark: #a31f30;
  --yellow: #f6cf4a;
  --cream: #faf6ef;
  --cream-2: #f3ecdd;
  --ink: #241d18;
  --ink-soft: #5b5148;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', Arial, sans-serif;
  --script: 'Merienda', cursive;
  --shadow: 0 10px 40px rgba(36, 29, 24, .16);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Floating nav ---------- */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 14px;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: var(--shadow);
  max-width: 100%;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand .b1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .04em;
  color: var(--red);
}
.nav-brand .b2 {
  font-size: 10.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* --- Drone flyover: crossfading slides, each with its own slow camera move.
       4 slides × 7 s = 28 s loop. Motion interpolates 0% → 28.5%, then the
       slide is invisible until its next turn. --- */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  will-change: transform, opacity;
  animation-duration: 28s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.hero-slide.s1 { animation-name: kb-push;  animation-delay: 0s; }
.hero-slide.s2 { animation-name: kb-left;  animation-delay: 7s; }
.hero-slide.s3 { animation-name: kb-rise;  animation-delay: 14s; }
.hero-slide.s4 { animation-name: kb-sweep; animation-delay: 21s; }

/* slow push-in toward the plate */
@keyframes kb-push {
  0%    { opacity: 0; transform: scale(1.06) translate(0.5%, 0.5%); }
  3.5%  { opacity: 1; }
  25%   { opacity: 1; }
  28.5% { opacity: 0; transform: scale(1.24) translate(-1.5%, -1.5%); }
  100%  { opacity: 0; transform: scale(1.24) translate(-1.5%, -1.5%); }
}
/* glide right-to-left across the table */
@keyframes kb-left {
  0%    { opacity: 0; transform: scale(1.18) translate(3%, 0.5%); }
  3.5%  { opacity: 1; }
  25%   { opacity: 1; }
  28.5% { opacity: 0; transform: scale(1.22) translate(-3%, -0.5%); }
  100%  { opacity: 0; transform: scale(1.22) translate(-3%, -0.5%); }
}
/* pull up and away, like the drone climbing */
@keyframes kb-rise {
  0%    { opacity: 0; transform: scale(1.28) translate(1.5%, 2.5%); }
  3.5%  { opacity: 1; }
  25%   { opacity: 1; }
  28.5% { opacity: 0; transform: scale(1.08) translate(-0.5%, -1%); }
  100%  { opacity: 0; transform: scale(1.08) translate(-0.5%, -1%); }
}
/* sweep left-to-right with a gentle zoom */
@keyframes kb-sweep {
  0%    { opacity: 0; transform: scale(1.14) translate(-3%, -1%); }
  3.5%  { opacity: 1; }
  25%   { opacity: 1; }
  28.5% { opacity: 0; transform: scale(1.24) translate(3%, 1%); }
  100%  { opacity: 0; transform: scale(1.24) translate(3%, 1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide.s1 { opacity: 1; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 12, 8, .88) 0%, rgba(18, 12, 8, .45) 42%, rgba(18, 12, 8, .28) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 74px;
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.hero-kicker {
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.06;
  max-width: 14em;
  text-wrap: balance;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 34em;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 30px;
}
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--yellow);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: transform .15s, background .15s, color .15s;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #3a3029; transform: translateY(-2px); }

/* ---------- Yellow ticker strip (nod to the TV boards) ---------- */
.strip {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid rgba(36, 29, 24, .12);
  border-bottom: 3px solid rgba(36, 29, 24, .12);
}
.strip-track {
  display: inline-block;
  padding: 12px 0;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14.5px;
  animation: strip-move 38s linear infinite;
}
.strip-track span { margin: 0 26px; }
@keyframes strip-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.sec-kicker {
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: balance;
}
.sec-lead { color: var(--ink-soft); max-width: 46em; }

/* Dish cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
  margin-top: 44px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(36, 29, 24, .10);
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-name { font-family: var(--serif); font-weight: 700; font-size: 21px; }
.card-price { color: var(--red); font-weight: 700; font-size: 19px; white-space: nowrap; }
.card-desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

/* Menu preview tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 6px 26px rgba(36, 29, 24, .12);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 12, 8, .82), rgba(18, 12, 8, .05) 60%);
}
.tile-label {
  position: relative;
  z-index: 2;
  padding: 20px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 23px;
}
.tile-label small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 4px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.script-note {
  font-family: var(--script);
  font-size: 27px;
  color: var(--red);
  margin-top: 26px;
}
.about-points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.about-points li { padding-left: 30px; position: relative; color: var(--ink-soft); }
.about-points li::before {
  content: '✶';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* Catering */
.catering {
  background: var(--ink);
  color: var(--white);
}
.catering .sec-kicker { color: var(--yellow); }
.catering .sec-lead { color: rgba(255, 255, 255, .82); }
.catering-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.catering-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0, 0, 0, .45);
  max-height: 520px;
}
.catering-photo img { width: 100%; height: 100%; object-fit: cover; }
.catering .btn-red { margin-top: 30px; }
.phone-big {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--yellow);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 26px rgba(36, 29, 24, .10);
  padding: 36px 38px;
}
.visit-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 8px;
}
.visit-card .addr { color: var(--ink-soft); margin-bottom: 20px; }
.hours { width: 100%; border-collapse: collapse; margin: 6px 0 22px; }
.hours td { padding: 9px 0; border-bottom: 1px dashed #e2d9c8; font-size: 16.5px; }
.hours td:last-child { text-align: right; font-weight: 600; }
.contact-line { display: flex; gap: 10px; align-items: baseline; margin-bottom: 6px; }
.contact-line b { min-width: 64px; }
.contact-line a { color: var(--red); font-weight: 600; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: 0 6px 26px rgba(36, 29, 24, .10);
}

/* Footer */
.footer {
  background: #17120e;
  color: rgba(255, 255, 255, .78);
  padding: 54px 0 38px;
  font-size: 15.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}
.footer h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 19px;
  margin-bottom: 12px;
}
.footer a { color: var(--yellow); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}
.footer-script { font-family: var(--script); color: var(--yellow); font-size: 20px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

/* ---------- Menu page ---------- */
.menu-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 168px 0 64px;
  overflow: hidden;
}
.menu-hero .hero-bg {
  opacity: .38;
  animation: kb-menu 36s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kb-menu {
  from { transform: scale(1.02) translate(0.5%, 0); }
  to   { transform: scale(1.18) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .menu-hero .hero-bg { animation: none; }
}
.menu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 12, 8, .9), rgba(18, 12, 8, .35));
}
.menu-hero .container { position: relative; z-index: 2; }
.menu-hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
}
.menu-hero p { color: rgba(255, 255, 255, .85); margin-top: 10px; max-width: 40em; }

.menu-nav {
  position: sticky;
  top: 92px; /* stays visible below the floating pill nav */
  z-index: 40;
  background: rgba(250, 246, 239, .97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e6ddcb;
}
.menu-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.menu-nav a:hover, .menu-nav a.active { background: var(--red); color: var(--white); }

.menu-section { padding: 58px 0 8px; scroll-margin-top: 170px; }
.menu-section h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu-section h2::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--yellow), transparent);
  border-radius: 2px;
}
.menu-note {
  color: var(--ink-soft);
  font-size: 15.5px;
  font-style: italic;
  margin: 10px 0 6px;
  max-width: 56em;
}
.menu-note + .menu-note { margin-top: 2px; }
.menu-items { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 56px; }
.mi {
  padding: 13px 0;
  border-bottom: 1px dashed #e2d9c8;
  break-inside: avoid;
}
.mi-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mi-name { font-weight: 600; font-size: 17.5px; }
.mi-qual { color: var(--ink-soft); font-size: 14.5px; }
.mi-dots {
  flex: 1;
  border-bottom: 2px dotted #cfc4ae;
  transform: translateY(-4px);
  min-width: 24px;
}
.mi-leaf { font-size: 15px; }
.mi-price { color: var(--red); font-weight: 700; font-size: 17.5px; white-space: nowrap; }
.mi-desc { color: var(--ink-soft); font-size: 14.8px; line-height: 1.5; margin-top: 3px; max-width: 46em; }
.menu-footnote {
  color: var(--ink-soft);
  font-size: 14.5px;
  font-style: italic;
  margin: 20px 0 6px;
}
.legend {
  margin: 46px 0 10px;
  padding: 16px 22px;
  background: var(--cream-2);
  border-radius: 12px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.order-band {
  margin: 70px 0 0;
  background: var(--red);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.order-band h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.order-band p { color: rgba(255, 255, 255, .88); margin-bottom: 26px; }
.order-band .btn { background: var(--white); color: var(--red); }
.order-band .btn:hover { background: var(--yellow); color: var(--ink); }

/* ---------- Mobile bottom action bar (Call / Order) ---------- */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: flex;
    box-shadow: 0 -6px 24px rgba(36, 29, 24, .25);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
  }
  .mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--white);
  }
  .mobile-bar .mb-call { background: var(--ink); }
  .mobile-bar .mb-order { background: var(--red); }
  body { padding-bottom: 56px; }
  .order-band { margin-bottom: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .catering-grid, .visit-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-frame { min-height: 340px; }
}
@media (max-width: 900px) {
  .nav { gap: 14px; padding: 9px 12px 9px 18px; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    min-width: 220px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 12px; }
  .nav-links a:hover { background: var(--cream-2); }
  .nav { position: relative; }
  .nav-toggle { display: block; }
  .nav-cta { padding: 9px 16px; font-size: 15px; }
  .hero-inner { padding: 130px 0 56px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn { padding: 13px 26px; font-size: 16px; }
  .card img { height: 190px; }
  .visit-card { padding: 28px 24px; }
  .section { padding: 64px 0; }
  .menu-section { padding: 44px 0 8px; }
  .hero-inner { padding: 118px 0 48px; }
}
@media (max-width: 540px) {
  .nav-wrap { padding: 0 8px; }
  .nav { gap: 8px; padding: 8px 8px 8px 13px; width: 100%; justify-content: space-between; }
  .nav-brand .b1 { font-size: 13px; }
  .nav-brand .b2 { font-size: 8px; letter-spacing: .18em; }
  .nav-cta { padding: 7px 11px; font-size: 12.5px; }
  .nav-toggle { font-size: 20px; padding: 2px 3px; }
}
