/* ══════════════════════════════════════════
   MAMASTAFEL · style.css
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream:    #fdf6ee;
  --warm:     #f5e6cc;
  --rust:     #c0522a;
  --rust-d:   #9e3f1c;
  --rust-l:   #e07045;
  --olive:    #5a6b3a;
  --gold:     #c89b3c;
  --gold-l:   #e5b84d;
  --brown:    #3e2a1a;
  --brown-m:  #6b4226;
  --text:     #2c1a0e;
  --text-m:   #5a3d28;
  --text-l:   #8a6a52;
  --white:    #ffffff;
  --shadow:   rgba(62,42,26,.12);
  --shadow-d: rgba(62,42,26,.24);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --nav-h: 72px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
em   { font-style: italic; color: var(--rust); }

/* ── UTILS ── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section       { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag   {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); background: rgba(192,82,42,.1);
  padding: .3em .9em; border-radius: 99px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem,4vw,3rem); color: var(--brown); margin-bottom: 1.1rem; }
.section-sub   { font-size: 1.05rem; color: var(--text-m); max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rust); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: .75em 1.8em; border-radius: var(--r-lg); border: 2px solid var(--rust);
  cursor: pointer;
  transition: background .22s, transform .18s var(--spring), box-shadow .22s;
}
.btn-primary:hover {
  background: var(--rust-d); border-color: var(--rust-d);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,82,42,.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--cream);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: .75em 1.8em; border-radius: var(--r-lg); border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .18s var(--spring);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-sm { font-size: .85rem; padding: .55em 1.4em; }
.btn-lg { font-size: 1.05rem; padding: .9em 2.2em; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); transition: background .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(253,246,238,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--brown);
}
.logo-img  { height: 36px; width: auto; }
.logo-icon { font-size: 1.5rem; }
.nav-links { display: flex; gap: .25rem; margin-left: auto; }
.nav-link  {
  font-size: .9rem; font-weight: 600; color: var(--text-m);
  padding: .5em .9em; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--rust); background: rgba(192,82,42,.08); }
.nav-cta { margin-left: .5rem; font-size: .88rem; padding: .55em 1.4em; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: var(--nav-h) 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #c0522a 0%, #9e3f1c 45%, #3e2a1a 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image:
    repeating-linear-gradient(45deg,  #fff 0, #fff 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.hero-content   { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.hero-tag       {
  display: inline-block; color: rgba(255,255,255,.75);
  font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.25);
  padding: .35em 1.1em; border-radius: 99px;
}
.hero-title     { font-size: clamp(2.8rem,7vw,5.2rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 1.4rem; }
.hero-title em  { color: var(--gold-l); font-style: italic; }
.hero-sub       { color: rgba(255,255,255,.82); font-size: clamp(1rem,2vw,1.2rem); max-width: 500px; margin: 0 auto 2.5rem; }
.hero-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-primary       { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.hero-actions .btn-primary:hover { background: var(--gold-l); border-color: var(--gold-l); box-shadow: 0 8px 24px rgba(200,155,60,.4); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.6);opacity:.5} }
.hero-deco { position: absolute; z-index: 1; pointer-events: none; user-select: none; opacity: .07; font-family: var(--font-display); }
.deco-1    { font-size: 12rem; bottom: -2rem; right: -1rem; color: var(--white); }
.deco-2    { font-size: 8rem; top: 15%; left: 3%; color: var(--gold-l); animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── STRIP ── */
.strip       { background: var(--olive); color: var(--white); padding: .85rem 2rem; overflow: hidden; }
.strip-inner { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.sep         { opacity: .4; }

/* ── GERECHTEN ── */
.gerechten   { background: var(--cream); }
.dishes-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 2rem; }
.dish-card   {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .3s var(--spring), box-shadow .3s;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow-d); }
.dish-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  overflow: hidden; position: relative;
}
.dish-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.dish-card:hover .dish-img img { transform: scale(1.05); }
.dish-img--sarma     { background: linear-gradient(135deg,#3a5e2e,#5a8c46); }
.dish-img--dolma     { background: linear-gradient(135deg,#c0522a,#e07045); }
.dish-img--lahmacun  { background: linear-gradient(135deg,#9e3f1c,#c0522a); }
.dish-img--borek     { background: linear-gradient(135deg,#c89b3c,#e5b84d); }
.dish-img--iclikofte { background: linear-gradient(135deg,#5a3d28,#8a5a36); }
.dish-img--more      { background: linear-gradient(135deg,#3e2a1a,#6b4226); }
.dish-body     { padding: 1.5rem; }
.dish-body h3  { font-size: 1.35rem; color: var(--brown); margin-bottom: .5rem; }
.dish-body p   { font-size: .93rem; color: var(--text-m); line-height: 1.65; margin-bottom: .8rem; }
.dish-tag      { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rust); background: rgba(192,82,42,.1); padding: .25em .8em; border-radius: 99px; }
.dish-card--more .dish-body { display: flex; flex-direction: column; gap: .8rem; }
.dish-emoji    { font-size: 3.5rem; }

/* ── OVER MIJ ── */
.over        { position: relative; background: var(--warm); overflow: hidden; }
.over-bg     { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%,rgba(192,82,42,.08),transparent); pointer-events: none; }
.over-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.over-visual { position: relative; }
.over-img-frame {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg,var(--rust) 0%,var(--brown) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; box-shadow: 0 16px 60px var(--shadow-d);
}
.over-photo  { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.over-img-placeholder { text-align: center; color: rgba(255,255,255,.7); }
.over-emoji  { font-size: 5rem; display: block; margin-bottom: .5rem; }
.over-img-hint { font-size: .85rem; opacity: .7; max-width: 180px; }
.over-badge  {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--brown); font-weight: 700; font-size: .85rem;
  padding: 1rem 1.3rem; border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(200,155,60,.35);
  text-align: center; line-height: 1.35; z-index: 2;
}
.over-badge span { display: block; font-size: 1.6rem; font-family: var(--font-display); font-weight: 800; }
.over-pattern-deco { position: absolute; top: -1.5rem; left: -2rem; font-size: 6rem; color: var(--rust); opacity: .1; pointer-events: none; }
.over-text p  { color: var(--text-m); margin-bottom: 1.1rem; font-size: 1.02rem; }
.over-values  { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.over-value   { display: flex; align-items: center; gap: 1rem; background: var(--white); border-radius: var(--r-md); padding: .85rem 1.1rem; box-shadow: 0 2px 10px var(--shadow); }
.over-value-icon { font-size: 1.6rem; }
.over-value strong { display: block; color: var(--brown); font-size: .95rem; }
.over-value span   { color: var(--text-l); font-size: .85rem; }

/* ── BESTELLEN ── */
.howto       { background: var(--cream); }
.steps       { display: flex; align-items: flex-start; gap: 0; margin-bottom: 4rem; flex-wrap: wrap; }
.step        { flex: 1; min-width: 220px; background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.8rem; box-shadow: 0 4px 20px var(--shadow); }
.step-connector { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--rust-l); padding: 0 .5rem; padding-top: 2rem; flex-shrink: 0; }
.step-number { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--rust); opacity: .15; line-height: 1; margin-bottom: .5rem; }
.step-body h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: .5rem; }
.step-body p  { font-size: .9rem; color: var(--text-m); line-height: 1.65; }
.step-body a  { color: var(--rust); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.bestellen-info { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.info-card   { background: var(--white); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; box-shadow: 0 4px 20px var(--shadow); border-top: 3px solid var(--rust); transition: transform .25s var(--spring); }
.info-card:hover { transform: translateY(-4px); }
.info-icon   { font-size: 2rem; margin-bottom: .8rem; display: block; }
.info-card h4 { font-size: 1.05rem; color: var(--brown); margin-bottom: .4rem; }
.info-card p  { font-size: .9rem; color: var(--text-m); }
.cta-block   { text-align: center; background: linear-gradient(135deg,var(--rust),var(--brown)); border-radius: var(--r-xl); padding: 4rem 3rem; color: var(--white); }
.cta-block h3 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: .7rem; color: var(--white); }
.cta-block p  { opacity: .82; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-block .btn-primary       { background: var(--gold); border-color: var(--gold); color: var(--brown); font-size: 1rem; }
.cta-block .btn-primary:hover { background: var(--gold-l); border-color: var(--gold-l); }

/* ── FOOTER ── */
.footer      { background: var(--brown); color: rgba(255,255,255,.75); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding: 4rem 2rem 3rem; max-width: 1200px; margin: 0 auto;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 280px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-links h5, .footer-contact h5 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: .5rem; }
.footer-links a, .footer-contact a   { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-l); }
.footer-tagline    { margin-top: .5rem; font-size: .85rem; opacity: .55; }
.footer-tagline em { color: var(--gold-l); font-style: italic; }
.footer-bottom     { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 2rem; font-size: .8rem; opacity: .45; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease var(--rd,0s), transform .6s ease var(--rd,0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .over-inner { grid-template-columns: 1fr; gap: 3rem; }
  .over-img-frame { aspect-ratio: 16/9; }
  .over-badge { bottom: -1rem; right: -1rem; }
  .steps { flex-direction: column; }
  .step-connector { padding: 0; transform: rotate(90deg); align-self: flex-start; margin-left: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 1.5rem 2rem 2rem;
    box-shadow: 0 8px 24px var(--shadow); gap: .25rem;
  }
  .dishes-grid { grid-template-columns: 1fr; }
  .bestellen-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-block { padding: 2.5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .strip-inner { justify-content: flex-start; }
}

/* ── RESPONSIVE Only for the 6 items for Phones── */
@media (max-width: 600px) {
  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .strip-inner .sep {
    display: none;
  }
}
