/* ==========================================================================
   Pizzeria La Nicola — Pascani, jud. Iasi
   style.css — design system "scandura / tabla neagra, scris alb-crem"
   Culori: lemn inchis + crem + verde/rosu (steag italian) + auriu accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABILE
   -------------------------------------------------------------------------- */
:root {
  /* Lemn / fundal */
  --wood:        #241813;
  --wood-2:      #2b1d16;
  --wood-3:      #3a2a20;
  --chalk:       #181410;

  /* Text */
  --cream:       #f4e9d2;
  --cream-light: #fbf3e2;
  --cream-muted: #c9b48f;

  /* Accente brand (steag italian) */
  --green:        #2e7d46;
  --green-dark:   #24632f;
  --green-bright: #37b25a;
  --red:          #c1272d;
  --red-dark:     #9e1e23;
  --red-bright:   #e0392b;
  --gold:         #d9a441;
  --gold-light:   #e7bc63;

  /* Linii / borduri */
  --line:      rgba(217, 164, 65, .25);
  --line-soft: rgba(244, 233, 210, .12);

  /* Fonturi */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-hero:    'Anton', 'Oswald', sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-body:    'Barlow', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    14px;
  --header-h:  76px;

  --shadow:      0 6px 18px rgba(0, 0, 0, .45);
  --shadow-lg:   0 18px 48px rgba(0, 0, 0, .55);
}

/* --------------------------------------------------------------------------
   2. RESET & BAZA
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--wood);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--gold-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cream-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--cream-light);
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.script { font-family: var(--font-script); text-transform: none; color: var(--gold); letter-spacing: 0; }

/* --------------------------------------------------------------------------
   3. TEXTURI LEMN / TABLA (CSS pur)
   -------------------------------------------------------------------------- */
.wood {
  background-color: var(--wood);
  background-image:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.015) 0 2px,
      rgba(0,0,0,.05) 2px 4px),
    repeating-linear-gradient(90deg,
      #241813 0,    #241813 78px,
      #2b1d16 78px, #2b1d16 80px,
      #3a2a20 80px, #3a2a20 82px,
      #241813 82px, #241813 160px),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 30%, rgba(0,0,0,.4));
}

.chalkboard {
  background-color: var(--chalk);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.04), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.028), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.008) 0 3px, rgba(0,0,0,.04) 3px 6px);
  box-shadow: inset 0 0 140px rgba(0,0,0,.6);
}

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITARE
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.section { padding: 72px 0; position: relative; }
.section--tight { padding: 48px 0; }

.tricolor { height: 4px; width: 100%; display: block;
  background: linear-gradient(90deg,
    var(--green-bright) 0 33.33%,
    var(--cream-light) 33.33% 66.66%,
    var(--red-bright) 66.66% 100%);
}

.text-center { text-align: center; }
.muted { color: var(--cream-muted); }
.lead { font-size: 1.18rem; color: var(--cream); }

/* Skip link (accesibilitate) */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--gold); color: var(--wood); padding: 10px 16px;
  border-radius: 8px; font-family: var(--font-display); text-transform: uppercase;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--wood); }

/* Focus vizibil pe tot site-ul */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-light); outline-offset: 3px; border-radius: 4px;
}

/* --------------------------------------------------------------------------
   5. BUTOANE
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 10px; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary   { background: var(--red); color: var(--cream-light); }
.btn-primary:hover   { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--cream); border-color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--wood); transform: translateY(-2px); }
.btn-call      { background: var(--green); color: var(--cream-light); }
.btn-call:hover      { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; min-height: 40px; font-size: .9rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(24, 20, 16, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.shrink { box-shadow: 0 6px 22px rgba(0,0,0,.5); background: rgba(20, 16, 12, .97); }

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-block: 10px;
}

/* Brand / wordmark */
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-top {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .28em; font-size: .72rem; color: var(--green-bright); padding-left: 3px;
}
.brand-name { font-family: var(--font-script); font-size: 1.85rem; line-height: 1; }
.brand-name .la { color: var(--red-bright); }
.brand-name .nicola { color: var(--green-bright); }
.site-header.shrink .brand-name { font-size: 1.6rem; }

/* Navigatie */
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav a {
  display: inline-block; padding: 10px 14px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .05em; font-size: .95rem; color: var(--cream);
}
.main-nav a:hover { color: var(--gold-light); background: rgba(217,164,65,.08); }
.main-nav a[aria-current="page"] { color: var(--gold-light); }
.main-nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--red-bright));
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn-call .full { display: inline; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; cursor: pointer; padding: 0;
  color: var(--cream);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--cream);
  margin-inline: auto; transition: transform .25s ease, opacity .2s ease; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after  { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding: 68px 0 60px;
}
.hero-eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .24em;
  color: var(--gold); font-size: .82rem; margin-bottom: 14px;
}
.hero h1 { font-family: var(--font-hero); font-size: clamp(2.4rem, 5.5vw, 4.3rem); line-height: .98; letter-spacing: .01em; }
.hero h1 .accent { color: var(--red-bright); }
.hero h1 .accent-2 { color: var(--green-bright); }
.hero-sub { font-size: 1.2rem; color: var(--cream); max-width: 40ch; margin: 18px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-info {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: .88rem; color: var(--cream-muted);
}
.hero-info span { display: inline-flex; align-items: center; gap: 8px; }
.hero-info svg { width: 18px; height: 18px; color: var(--gold); }
.badge-open { color: var(--green-bright); }
.badge-open .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); display: inline-block; box-shadow: 0 0 0 0 rgba(55,178,90,.6); animation: pulse-dot 2.4s infinite; }
.badge-closed { color: var(--cream-muted); }
.badge-closed .dot { background: var(--cream-muted); }

/* Card meniu inclinat (imaginea reala de coperta) */
.hero-visual { position: relative; display: flex; justify-content: center; }
.menu-card-visual {
  position: relative; border-radius: 12px; overflow: hidden; max-width: 360px;
  transform: rotate(2.5deg); box-shadow: var(--shadow-lg);
  border: 8px solid var(--wood-3); outline: 1px solid var(--line);
  transition: transform .3s ease;
}
.menu-card-visual:hover { transform: rotate(0deg) scale(1.02); }
.menu-card-visual img { width: 100%; }
.menu-card-visual .peek-label {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--red); color: var(--cream-light); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .05em; font-size: .8rem;
  padding: 8px 16px; border-radius: 30px; box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   8. TITLURI DE SECTIUNE (stil "—— PIZZA ——")
   -------------------------------------------------------------------------- */
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .kicker {
  font-family: var(--font-script); color: var(--gold); font-size: 1.5rem; display: block; margin-bottom: 2px;
}
.section-head h2 {
  font-family: var(--font-hero); font-size: clamp(1.9rem, 4vw, 3rem);
  display: inline-flex; align-items: center; gap: 20px; letter-spacing: .02em;
}
.section-head h2::before, .section-head h2::after {
  content: ""; width: clamp(28px, 8vw, 90px); height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold)); border-radius: 2px;
}
.section-head h2::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-head p { max-width: 60ch; margin-inline: auto; color: var(--cream-muted); }

/* Divider simplu */
.divider { display: flex; align-items: center; gap: 16px; color: var(--gold); margin: 40px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,164,65,.6), transparent); }

/* --------------------------------------------------------------------------
   9. GRID SPECIALITATI (carduri chalkboard)
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.spec-card {
  background: var(--wood-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .15s ease, border-color .2s ease;
}
.spec-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--red-bright)); opacity: .8; }
.spec-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.spec-card .ico { color: var(--gold); margin-bottom: 12px; }
.spec-card .ico svg { width: 44px; height: 44px; }
.spec-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 6px; }
.spec-card p { color: var(--cream-muted); font-size: .96rem; margin-bottom: 12px; }
.spec-card .from { font-family: var(--font-display); color: var(--gold); text-transform: uppercase; font-size: .9rem; }
.spec-card .from b { font-size: 1.3rem; color: var(--cream-light); }

/* --------------------------------------------------------------------------
   10. "DE CE NOI" (features)
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.feature { text-align: center; padding: 10px; }
.feature .ico {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: var(--wood-2); border: 1px solid var(--line);
}
.feature .ico svg { width: 34px; height: 34px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--cream-muted); font-size: .96rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. BANDA CTA
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    linear-gradient(rgba(158,30,35,.9), rgba(120,20,24,.94)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.06) 0 2px, transparent 2px 6px);
  border-block: 1px solid rgba(0,0,0,.4); text-align: center;
}
.cta-band h2 { color: #fff; font-family: var(--font-hero); font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-band p { color: #ffe9e0; max-width: 52ch; margin: 0 auto 26px; }
.cta-band .btn-primary { background: var(--gold); color: var(--wood); }
.cta-band .btn-primary:hover { background: var(--gold-light); }
.cta-band .btn-secondary { border-color: #fff; color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--red-dark); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --------------------------------------------------------------------------
   12. GALERIE
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.gallery a {
  display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: var(--wood-2); position: relative;
}
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.gallery a::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(24,20,16,.4); opacity: 0; transition: opacity .25s ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10,8,6,.94);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(43,29,22,.85); color: var(--cream-light);
  border: 1px solid var(--line); width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }

/* --------------------------------------------------------------------------
   13. PAGINA MENIU
   -------------------------------------------------------------------------- */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(20,16,12,.96); backdrop-filter: blur(6px);
  border-block: 1px solid var(--line); padding: 12px 0;
}
.menu-nav ul { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; }
.menu-nav a {
  display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 30px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
  font-size: .85rem; color: var(--cream);
}
.menu-nav a:hover { background: var(--gold); color: var(--wood); border-color: var(--gold); }

.menu-section { padding: 56px 0 8px; scroll-margin-top: 140px; }
.menu-note {
  background: var(--wood-2); border: 1px dashed var(--line); border-radius: 12px;
  padding: 16px 20px; color: var(--cream-muted); font-size: .95rem; margin-bottom: 8px;
}

/* Lista de preparate */
.dish-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 8px 44px; }
.dish {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px dotted var(--line-soft);
}
.dish-main { flex: 1; min-width: 0; }
.dish-main h3 { font-family: var(--font-display); font-size: 1.14rem; margin-bottom: 3px; color: var(--cream-light); }
.dish-desc { color: var(--cream-muted); font-size: .93rem; margin: 0; line-height: 1.45; }
.dish-tags { margin-top: 5px; font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .03em; opacity: .85; }
.dish-prices { display: flex; gap: 8px; flex-shrink: 0; }
.price-tag {
  font-family: var(--font-display); text-align: center; line-height: 1;
  background: var(--chalk); border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 11px; min-width: 62px; color: var(--gold-light);
}
.price-tag b { display: block; font-size: 1.2rem; color: var(--cream-light); }
.price-tag i { font-style: normal; font-size: .72rem; text-transform: uppercase; }
.price-tag small { display: block; margin-top: 3px; font-size: .68rem; color: var(--cream-muted); }

/* Lista simpla (bauturi, toppinguri) cu leader dots */
.line-list { list-style: none; }
.line-item {
  display: flex; align-items: baseline; gap: 8px; padding: 9px 0;
  border-bottom: 1px dotted var(--line-soft);
}
.line-item .name { color: var(--cream); font-weight: 500; }
.line-item .name small { color: var(--cream-muted); font-weight: 400; font-size: .82rem; }
.line-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.line-item .price { font-family: var(--font-display); color: var(--gold-light); font-size: 1.05rem; white-space: nowrap; }

.menu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px 48px; }
.sub-head {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); font-size: 1.05rem; margin: 26px 0 8px; padding-bottom: 6px;
  border-bottom: 2px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.sub-head::before { content: "//"; color: var(--red-bright); }

/* --------------------------------------------------------------------------
   14. PAGE HERO (pagini interioare)
   -------------------------------------------------------------------------- */
.page-hero { padding: 54px 0 40px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .breadcrumb { font-size: .85rem; color: var(--cream-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 { font-family: var(--font-hero); font-size: clamp(2rem, 5vw, 3.4rem); }
.page-hero p { max-width: 62ch; margin: 12px auto 0; color: var(--cream-muted); }

/* --------------------------------------------------------------------------
   15. DESPRE NOI
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
.prose h2 { font-size: 1.6rem; margin-top: 0; }
.prose h2 + p { margin-top: 0; }
.about-logo {
  background: var(--cream-light); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-lg);
  max-width: 380px; margin-inline: auto; border: 1px solid rgba(0,0,0,.1);
}
.quote {
  font-family: var(--font-script); color: var(--gold-light); font-size: 1.7rem; line-height: 1.4;
  text-align: center; padding: 28px 20px; margin: 8px 0;
}
.value-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; list-style: none; }
.value-list li {
  background: var(--wood-2); border: 1px solid var(--line); border-radius: 12px; padding: 20px;
}
.value-list li b { display: block; font-family: var(--font-display); text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; letter-spacing: .03em; }
.value-list li span { color: var(--cream-muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   16. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.info-list .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: var(--wood-2); border: 1px solid var(--line); color: var(--gold); }
.info-list .ico svg { width: 22px; height: 22px; }
.info-list .txt b { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--cream-light); font-size: .95rem; }
.info-list .txt a, .info-list .txt span { color: var(--cream-muted); font-size: 1.05rem; }
.info-list .txt a:hover { color: var(--gold-light); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--wood-2); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 9px 0; border-bottom: 1px dotted var(--line-soft); }
.hours-table th { font-family: var(--font-display); text-transform: uppercase; font-weight: 500; letter-spacing: .03em; color: var(--cream); }
.hours-table td { color: var(--gold-light); font-family: var(--font-display); text-align: right; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--green-bright); }

/* Formular */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; color: var(--cream-muted); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: var(--chalk); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; color: var(--cream-light); font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,65,.18); }
.field textarea { min-height: 130px; resize: vertical; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--wood-2); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 20px; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .02em; font-size: 1.02rem; color: var(--cream-light); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--cream-muted); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--green-bright), var(--cream-light), var(--red-bright)) 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; padding: 56px 0 30px; }
.footer-brand .brand-name { font-size: 2rem; }
.footer-brand p { color: var(--cream-muted); font-size: .95rem; max-width: 34ch; margin-top: 12px; }
.footer-col h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col address { color: var(--cream); font-style: normal; font-size: .98rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact div { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: var(--wood-2); border: 1px solid var(--line); color: var(--cream); }
.social a:hover { background: var(--gold); color: var(--wood); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 18px 0; text-align: center; color: var(--cream-muted); font-size: .87rem; }
.footer-bottom a { color: var(--cream-muted); }

/* --------------------------------------------------------------------------
   18. BUTON FLOTANT APEL (mobil)
   -------------------------------------------------------------------------- */
.fab-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--green);
  color: #fff; display: none; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.5); animation: pulse-fab 2.6s infinite;
}
.fab-call svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   19. ANIMATII
   -------------------------------------------------------------------------- */
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(55,178,90,.55); } 50% { box-shadow: 0 0 0 6px rgba(55,178,90,0); } }
@keyframes pulse-fab { 0%,100% { box-shadow: 0 6px 16px rgba(0,0,0,.5); } 50% { box-shadow: 0 6px 16px rgba(0,0,0,.5), 0 0 0 12px rgba(46,125,70,.22); } }

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .menu-card-visual { max-width: 300px; transform: rotate(1.5deg); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 90;
    background: rgba(16,12,9,.99); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 70vh; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .header-cta .btn-call .full { display: none; }
  .header-cta .btn-secondary { display: none; }
  .fab-call { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .hero-grid { padding: 40px 0; }
  .hero-actions .btn { flex: 1 1 auto; }
  .dish-list { grid-template-columns: 1fr; gap: 0 0; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .brand-name { font-size: 1.6rem; }
  .price-tag { min-width: 56px; padding: 7px 9px; }
}

/* --------------------------------------------------------------------------
   21. REDUCERE MISCARE
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
