/*
Theme Name: Noir & Flame
Theme URI: https://example.com/noir-flame
Author: Claude / Anthropic
Description: A bold dark restaurant theme built for full Elementor control. Blank canvas templates, custom cursor, animation utilities, and a complete design system — all usable inside Elementor's visual editor.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noir-flame
Tags: restaurant, dark, modern, elementor, full-site-editing, custom-menu, animation
*/

/* ══════════════════════════════════════════════
   DESIGN TOKENS  (available everywhere in Elementor)
══════════════════════════════════════════════ */
:root {
  /* Core palette */
  --nf-black:      #0A0A0A;
  --nf-dark:       #111111;
  --nf-dark2:      #181818;
  --nf-card:       #161616;
  --nf-red:        #E8192C;
  --nf-red-dk:     #C0101F;
  --nf-red-glow:   rgba(232,25,44,0.25);
  --nf-gold:       #D4A843;
  --nf-white:      #FFFFFF;
  --nf-muted:      #888888;
  --nf-border:     rgba(255,255,255,0.07);

  /* Typography */
  --nf-display: 'Playfair Display', Georgia, serif;
  --nf-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --nf-radius-sm: 8px;
  --nf-radius-md: 16px;
  --nf-radius-lg: 24px;
  --nf-radius-xl: 50px;

  /* Transitions */
  --nf-ease: 0.3s ease;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--nf-body);
  background: var(--nf-black);
  color: var(--nf-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { transition: color var(--nf-ease); }
ul  { list-style: none; }

/* ══════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════ */
.nf-cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--nf-red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
}
.nf-cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(232,25,44,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.nf-cursor.grow      { width: 22px; height: 22px; }
.nf-cursor-ring.grow { width: 54px; height: 54px; border-color: var(--nf-red); }

/* ══════════════════════════════════════════════
   ELEMENTOR — LAYOUT OVERRIDES
══════════════════════════════════════════════ */

/* Remove default margins that Elementor pages sometimes add */
.elementor-page .elementor-section-wrap > .elementor-section:first-child { margin-top: 0; }
.elementor-widget-wrap { width: 100%; }

/* Ensure Elementor sections go edge-to-edge */
.elementor-section.elementor-section-stretched { max-width: 100% !important; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.nf-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9990;
  padding: 1.3rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.nf-site-header.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nf-border);
  padding: .85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nf-nav-wrap {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(1.5rem,4vw,3rem);
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nf-logo {
  font-family: var(--nf-display); font-size: 1.65rem; font-weight: 900;
  color: var(--nf-white); letter-spacing: .02em; text-decoration: none;
  transition: opacity var(--nf-ease); z-index: 201; position: relative;
}
.nf-logo:hover { opacity: .8; color: var(--nf-white); }
.nf-logo .amp  { color: var(--nf-red); }

/* Desktop nav */
.nf-primary-nav { display: flex; align-items: center; gap: 2.4rem; }
.nf-primary-nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color var(--nf-ease);
}
.nf-primary-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--nf-red);
  border-radius: 2px; transition: width var(--nf-ease);
}
.nf-primary-nav a:hover,
.nf-primary-nav .current-menu-item > a { color: var(--nf-white); }
.nf-primary-nav a:hover::after,
.nf-primary-nav .current-menu-item > a::after { width: 100%; }
.nf-site-header.scrolled .nf-primary-nav a { color: rgba(255,255,255,.55); }
.nf-site-header.scrolled .nf-primary-nav a:hover { color: var(--nf-white); }

/* Nav right */
.nf-nav-right { display: flex; align-items: center; gap: 1rem; }
.nf-nav-cart {
  background: none; border: none; cursor: pointer;
  color: var(--nf-white); font-size: 1.25rem;
  opacity: .65; transition: opacity var(--nf-ease);
  position: relative;
}
.nf-nav-cart:hover { opacity: 1; }
.nf-cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--nf-red); font-size: .58rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.nf-nav-book {
  background: var(--nf-red); color: var(--nf-white);
  border: none; cursor: pointer;
  padding: .6rem 1.5rem; border-radius: var(--nf-radius-xl);
  font-family: var(--nf-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-decoration: none; display: inline-flex;
  transition: background var(--nf-ease), transform .2s, box-shadow var(--nf-ease);
}
.nf-nav-book:hover {
  background: var(--nf-red-dk); color: var(--nf-white);
  transform: translateY(-1px); box-shadow: 0 8px 24px var(--nf-red-glow);
}

/* Hamburger */
.nf-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  position: relative; z-index: 201;
}
.nf-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--nf-white); border-radius: 2px; transition: all .3s;
}
.nf-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nf-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nf-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.nf-mob-overlay {
  position: fixed; inset: 0; z-index: 9989;
  background: rgba(10,10,10,.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.2rem;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.nf-mob-overlay.open { opacity: 1; pointer-events: all; }
.nf-mob-overlay a {
  font-family: var(--nf-display);
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  color: rgba(255,255,255,.6); text-decoration: none;
  transition: color var(--nf-ease);
}
.nf-mob-overlay a:hover { color: var(--nf-red); }
.nf-mob-book { margin-top: .8rem; }

/* ══════════════════════════════════════════════
   ELEMENTOR UTILITY CLASSES
   (Use these inside Elementor → Advanced → CSS Classes)
══════════════════════════════════════════════ */

/* Backgrounds */
.nf-bg-black  { background-color: var(--nf-black) !important; }
.nf-bg-dark   { background-color: var(--nf-dark)  !important; }
.nf-bg-dark2  { background-color: var(--nf-dark2) !important; }
.nf-bg-card   { background-color: var(--nf-card)  !important; }
.nf-bg-red    { background-color: var(--nf-red)   !important; }

/* Text colors */
.nf-text-white  { color: var(--nf-white)  !important; }
.nf-text-red    { color: var(--nf-red)    !important; }
.nf-text-gold   { color: var(--nf-gold)   !important; }
.nf-text-muted  { color: var(--nf-muted)  !important; }

/* Typography */
.nf-font-display { font-family: var(--nf-display) !important; }
.nf-font-body    { font-family: var(--nf-body)    !important; }
.nf-italic       { font-style: italic !important; }

/* Borders */
.nf-border-subtle  { border: 1px solid var(--nf-border) !important; }
.nf-border-red     { border: 1px solid rgba(232,25,44,.35) !important; }
.nf-border-top     { border-top: 1px solid var(--nf-border) !important; }
.nf-border-bottom  { border-bottom: 1px solid var(--nf-border) !important; }

/* Radius */
.nf-rounded-sm { border-radius: var(--nf-radius-sm) !important; }
.nf-rounded-md { border-radius: var(--nf-radius-md) !important; }
.nf-rounded-lg { border-radius: var(--nf-radius-lg) !important; }
.nf-rounded-xl { border-radius: var(--nf-radius-xl) !important; }
.nf-rounded-full { border-radius: 50% !important; }

/* Glows */
.nf-glow-red { box-shadow: 0 12px 36px var(--nf-red-glow) !important; }
.nf-glow-red-hover:hover { box-shadow: 0 16px 48px var(--nf-red-glow) !important; }

/* Radial glow backgrounds */
.nf-radial-red {
  background: radial-gradient(ellipse at center, rgba(232,25,44,.12) 0%, transparent 65%) !important;
}
.nf-radial-red-top {
  position: relative;
}
.nf-radial-red-top::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 60% 30%, rgba(232,25,44,.12) 0%, transparent 65%);
  z-index: 0;
}
.nf-radial-red-top > * { position: relative; z-index: 1; }

/* Section label (eyebrow) */
.nf-label {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .72rem !important; font-weight: 600 !important;
  letter-spacing: .22em !important; text-transform: uppercase !important;
  color: var(--nf-red) !important;
}
.nf-label::before {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--nf-red); border-radius: 2px; flex-shrink: 0;
}

/* Divider line */
.nf-divider {
  width: 48px !important; height: 2px !important;
  background: var(--nf-red) !important; border: none !important;
  margin-block: 1.2rem !important;
}

/* ── BUTTONS ── */
.nf-btn {
  display: inline-flex !important; align-items: center !important; gap: .55rem !important;
  padding: .85rem 2rem !important; border-radius: var(--nf-radius-xl) !important;
  font-size: .82rem !important; font-weight: 600 !important; letter-spacing: .08em !important;
  cursor: pointer !important; transition: all var(--nf-ease) !important;
  text-decoration: none !important; border: none !important;
}
.nf-btn-red { background: var(--nf-red) !important; color: #fff !important; }
.nf-btn-red:hover { background: var(--nf-red-dk) !important; transform: translateY(-2px) !important; box-shadow: 0 12px 32px var(--nf-red-glow) !important; color: #fff !important; }
.nf-btn-outline { background: transparent !important; border: 1.5px solid rgba(255,255,255,.3) !important; color: var(--nf-white) !important; }
.nf-btn-outline:hover { border-color: var(--nf-red) !important; color: var(--nf-red) !important; transform: translateY(-2px) !important; }
.nf-btn-outline-red { background: transparent !important; border: 1.5px solid var(--nf-red) !important; color: var(--nf-red) !important; }
.nf-btn-outline-red:hover { background: var(--nf-red) !important; color: #fff !important; transform: translateY(-2px) !important; }
.nf-btn-ghost { background: transparent !important; border: 1.5px solid rgba(255,255,255,.25) !important; color: var(--nf-white) !important; }
.nf-btn-ghost:hover { background: var(--nf-white) !important; color: var(--nf-black) !important; }

/* ── CARDS ── */
.nf-card {
  background: var(--nf-card) !important;
  border: 1px solid var(--nf-border) !important;
  border-radius: var(--nf-radius-lg) !important;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease !important;
  overflow: hidden !important;
}
.nf-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.5) !important;
  border-color: rgba(232,25,44,.3) !important;
}

/* Info card */
.nf-info-card {
  display: flex !important; gap: 1.2rem !important; align-items: center !important;
  background: var(--nf-card) !important; border: 1px solid var(--nf-border) !important;
  border-radius: var(--nf-radius-md) !important; padding: 1.2rem 1.5rem !important;
  transition: border-color var(--nf-ease) !important;
}
.nf-info-card:hover { border-color: rgba(232,25,44,.4) !important; }
.nf-info-card-icon {
  width: 48px !important; height: 48px !important; border-radius: var(--nf-radius-sm) !important; flex-shrink: 0 !important;
  background: rgba(232,25,44,.1) !important; border: 1px solid rgba(232,25,44,.2) !important;
  display: flex !important; align-items: center !important; justify-content: center !important; font-size: 1.2rem !important;
}

/* ── BADGES ── */
.nf-badge {
  display: inline-flex !important; align-items: center !important; gap: .35rem !important;
  padding: .25rem .75rem !important; border-radius: var(--nf-radius-xl) !important;
  font-size: .68rem !important; font-weight: 600 !important; letter-spacing: .05em !important;
}
.nf-badge-red  { background: rgba(232,25,44,.15) !important; color: var(--nf-red)  !important; border: 1px solid rgba(232,25,44,.3) !important; }
.nf-badge-gold { background: rgba(212,168,67,.12) !important; color: var(--nf-gold) !important; border: 1px solid rgba(212,168,67,.3) !important; }

/* ── DISH ORBIT (hero spinner) ── */
.nf-dish-orbit { position: relative; width: 440px; height: 440px; }
.nf-dish-ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--nf-dark2);
  box-shadow: 0 0 0 1px var(--nf-border), 0 40px 100px rgba(0,0,0,.6);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  animation: nfDishSpin 20s linear infinite;
}
.nf-dish-ring img {
  width: 90%; height: 90%; object-fit: cover; border-radius: 50%;
  animation: nfCounterSpin 20s linear infinite;
}
.nf-orbit-sat { position: absolute; animation: nfOrbitFloat 8s ease-in-out infinite; }
.nf-orbit-sat:nth-child(2) { top: -20px; right: 30px; }
.nf-orbit-sat:nth-child(3) { bottom: 20px; right: -10px; animation-delay: -2.5s; }
.nf-orbit-sat:nth-child(4) { bottom: -20px; left: 30px; animation-delay: -5s; }
.nf-orbit-sat img {
  width: 85px; height: 85px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--nf-dark2); box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

/* ── TICKER ── */
.nf-ticker-wrap { overflow: hidden; }
.nf-ticker-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: nfTicker 22s linear infinite;
}
.nf-ticker-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.nf-ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ── REVIEW AVATARS ── */
.nf-avatar-row { display: flex; align-items: center; gap: 1.2rem; }
.nf-avatars    { display: flex; }
.nf-avatars img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--nf-black); margin-right: -10px; object-fit: cover;
}
.nf-avatars .nf-avatar-count {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--nf-red); font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--nf-black);
}

/* ── WHY FEATURE ── */
.nf-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.nf-feature-icon {
  width: 52px; height: 52px; border-radius: var(--nf-radius-sm); flex-shrink: 0;
  background: var(--nf-dark2); border: 1px solid var(--nf-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: background var(--nf-ease), border-color var(--nf-ease);
}
.nf-feature:hover .nf-feature-icon { background: rgba(232,25,44,.1); border-color: var(--nf-red); }

/* ── STAT BADGE ── */
.nf-stat-badge {
  background: var(--nf-red); border-radius: var(--nf-radius-md);
  padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 16px 40px var(--nf-red-glow);
}

/* ── FORM ELEMENTS ── */
.nf-form-group { display: flex; flex-direction: column; gap: .5rem; }
.nf-form-group label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.nf-input,
.nf-form-group input,
.nf-form-group select,
.nf-form-group textarea {
  background: var(--nf-dark2) !important; border: 1px solid var(--nf-border) !important;
  border-radius: var(--nf-radius-sm) !important;
  padding: .9rem 1.1rem !important; font-family: var(--nf-body) !important;
  font-size: .92rem !important; color: var(--nf-white) !important;
  outline: none !important; transition: border-color var(--nf-ease) !important;
  width: 100%;
}
.nf-input:focus,
.nf-form-group input:focus,
.nf-form-group select:focus,
.nf-form-group textarea:focus { border-color: var(--nf-red) !important; }
.nf-form-group textarea { resize: vertical; min-height: 130px; }
.nf-form-success {
  display: none; background: rgba(232,25,44,.1); border: 1px solid rgba(232,25,44,.3);
  border-radius: var(--nf-radius-sm); padding: 1.2rem 1.5rem; color: var(--nf-white);
  margin-bottom: 1.5rem;
}

/* ── MENU CATEGORY FILTER ── */
.nf-cats { display: flex; flex-wrap: wrap; gap: .8rem; }
.nf-cat-btn {
  padding: .6rem 1.5rem; border-radius: var(--nf-radius-xl);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  background: var(--nf-dark2); border: 1px solid var(--nf-border);
  color: var(--nf-muted); cursor: pointer; transition: all var(--nf-ease);
  font-family: var(--nf-body);
}
.nf-cat-btn:hover, .nf-cat-btn.active { background: var(--nf-red); border-color: var(--nf-red); color: #fff; }

/* ── MENU CARD (dish) ── */
.nf-dish-card {
  background: var(--nf-card); border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg); overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.nf-dish-card:hover {
  transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border-color: rgba(232,25,44,.3);
}
.nf-dish-card__img {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; background: var(--nf-dark2);
}
.nf-dish-card__img img {
  width: 155px; height: 155px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.5); transition: transform .5s;
}
.nf-dish-card:hover .nf-dish-card__img img { transform: scale(1.07) rotate(3deg); }
.nf-dish-card__body  { padding: 1.2rem 1.5rem 1.5rem; }
.nf-dish-card__name  { font-family: var(--nf-display); font-size: 1.15rem; margin-bottom: .3rem; }
.nf-dish-card__sub   { font-size: .82rem; color: var(--nf-muted); margin-bottom: 1rem; line-height: 1.6; }
.nf-dish-card__foot  { display: flex; align-items: center; justify-content: space-between; }
.nf-dish-card__price { font-size: 1.2rem; font-weight: 700; color: var(--nf-red); }
.nf-dish-card__add {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--nf-red); border: none; color: #fff;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, box-shadow .3s;
}
.nf-dish-card__add:hover { transform: scale(1.15); box-shadow: 0 8px 20px var(--nf-red-glow); }
.nf-dishes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }

/* ── TEAM CARD ── */
.nf-team-card {
  background: var(--nf-card); border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg); overflow: hidden; text-align: center;
  transition: transform .4s, border-color .4s;
}
.nf-team-card:hover { transform: translateY(-6px); border-color: rgba(232,25,44,.3); }
.nf-team-card img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.nf-team-card__body { padding: 1.5rem; }
.nf-team-card h3  { font-family: var(--nf-display); font-size: 1.2rem; margin-bottom: .3rem; }
.nf-team-role     { font-size: .75rem; color: var(--nf-red); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.nf-team-card p   { font-size: .85rem; color: var(--nf-muted); margin-top: .8rem; line-height: 1.7; }

/* ── TESTIMONIAL ── */
.nf-testi-card {
  background: var(--nf-card); border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg); padding: 2rem;
  transition: box-shadow .4s, border-color .4s; position: relative;
}
.nf-testi-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(232,25,44,.2); }
.nf-testi-card::before {
  content: '"'; font-family: var(--nf-display); font-size: 5rem; line-height: 1;
  color: var(--nf-red); opacity: .15; position: absolute; top: .5rem; left: 1.2rem;
}
.nf-testi-stars { color: var(--nf-gold); font-size: .9rem; margin-bottom: 1rem; }
.nf-testi-text  { color: var(--nf-muted); font-style: italic; font-size: .92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.nf-testi-author { display: flex; align-items: center; gap: .9rem; }
.nf-testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nf-testi-name  { font-weight: 600; font-size: .9rem; }
.nf-testi-role  { font-size: .75rem; color: var(--nf-muted); }

/* ── POST CARD ── */
.nf-post-card {
  background: var(--nf-card); border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg); overflow: hidden;
  transition: transform .4s, box-shadow .4s; display: flex; flex-direction: column;
}
.nf-post-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.nf-post-card__img { overflow: hidden; aspect-ratio: 16/9; }
.nf-post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nf-post-card:hover .nf-post-card__img img { transform: scale(1.06); }
.nf-post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.nf-post-meta  { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nf-red); margin-bottom: .7rem; }
.nf-post-card h3 { font-family: var(--nf-display); font-size: 1.2rem; margin-bottom: .7rem; }
.nf-post-card p  { font-size: .88rem; color: var(--nf-muted); line-height: 1.7; flex: 1; }

/* ── SCROLL REVEAL ── */
.nf-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.nf-reveal.nf-visible { opacity: 1; transform: none; }
.nf-reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.nf-reveal-left.nf-visible  { opacity: 1; transform: none; }
.nf-reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.nf-reveal-right.nf-visible { opacity: 1; transform: none; }
.nf-delay-1 { transition-delay: .1s; }
.nf-delay-2 { transition-delay: .2s; }
.nf-delay-3 { transition-delay: .3s; }
.nf-delay-4 { transition-delay: .4s; }
.nf-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════════════
   HERO DECO / FLOATERS
══════════════════════════════════════════════ */
.nf-float { animation: nfFloat 6s ease-in-out infinite; display: inline-block; }
.nf-float-slow { animation: nfFloat 9s ease-in-out infinite; }
.nf-float-delay { animation-delay: -3s; }

/* Scroll indicator */
.nf-scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--nf-muted); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
}
.nf-scroll-hint::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--nf-red), transparent);
  animation: nfScrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.nf-site-footer {
  background: var(--nf-dark); border-top: 1px solid var(--nf-border);
  padding: clamp(3.5rem,6vw,5.5rem) 0 2rem;
}
.nf-footer-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(1.5rem,4vw,3rem);
}
.nf-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem,4vw,3.5rem); margin-bottom: 3rem;
}
.nf-footer-logo { font-family: var(--nf-display); font-size: 1.6rem; font-weight: 900; color: var(--nf-white); text-decoration: none; display: block; margin-bottom: 1rem; }
.nf-footer-logo .amp { color: var(--nf-red); }
.nf-footer-brand p { font-size: .88rem; color: var(--nf-muted); max-width: 28ch; line-height: 1.8; }
.nf-footer-social { display: flex; gap: .8rem; margin-top: 1.5rem; }
.nf-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--nf-dark2); border: 1px solid var(--nf-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; text-decoration: none;
  transition: background var(--nf-ease), border-color var(--nf-ease);
}
.nf-footer-social a:hover { background: var(--nf-red); border-color: var(--nf-red); }

.nf-footer-col h4 {
  font-family: var(--nf-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.2rem;
}
.nf-footer-col ul li { margin-bottom: .7rem; }
.nf-footer-col ul a { font-size: .88rem; color: var(--nf-muted); text-decoration: none; transition: color var(--nf-ease); }
.nf-footer-col ul a:hover { color: var(--nf-red); }
.nf-footer-col address { font-style: normal; font-size: .88rem; color: var(--nf-muted); line-height: 1.8; }

.nf-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--nf-border);
  font-size: .8rem; color: var(--nf-muted); flex-wrap: wrap; gap: 1rem;
}

/* Elementor template canvas: no header/footer */
body.elementor-template-canvas .nf-site-header,
body.elementor-template-canvas .nf-site-footer { display: none; }

/* Push page down for fixed header */
body:not(.elementor-editor-active) .elementor-page { padding-top: 80px; }
body.nf-no-padding-top { padding-top: 0 !important; }
body.nf-no-padding-top .elementor-page { padding-top: 0 !important; }

/* Page banner (used for archive/single fallback) */
.nf-page-banner {
  padding-top: 8rem; padding-bottom: 4rem;
  background: var(--nf-dark); text-align: center;
  position: relative; overflow: hidden;
}
.nf-page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,25,44,.1) 0%, transparent 65%);
}
.nf-page-banner h1 { position: relative; font-family: var(--nf-display); }
.nf-page-banner h1 em { color: var(--nf-red); font-style: italic; }
.nf-page-banner p { color: var(--nf-muted); margin-inline: auto; margin-top: 1rem; position: relative; }

/* Entry content */
.nf-entry-content {
  max-width: 780px; margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
  color: rgba(255,255,255,.8);
}
.nf-entry-content h2, .nf-entry-content h3 { font-family: var(--nf-display); margin-block: 2rem 1rem; }
.nf-entry-content p  { margin-bottom: 1.2rem; line-height: 1.9; }
.nf-entry-content a  { color: var(--nf-red); }
.nf-entry-content ul, .nf-entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.nf-entry-content ul { list-style: disc; }
.nf-entry-content ol { list-style: decimal; }
.nf-entry-content blockquote {
  border-left: 3px solid var(--nf-red); padding-left: 1.5rem;
  margin-block: 2rem; font-family: var(--nf-display); font-size: 1.4rem;
  color: var(--nf-muted); font-style: italic;
}

/* 404 */
.nf-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 6rem; }
.nf-404 .big-num { font-family: var(--nf-display); font-size: clamp(6rem,15vw,12rem); font-weight: 900; color: var(--nf-red); line-height: 1; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes nfDishSpin     { to { transform: rotate(360deg); } }
@keyframes nfCounterSpin  { to { transform: rotate(-360deg); } }
@keyframes nfOrbitFloat   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes nfFloat        { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-16px) rotate(6deg)} }
@keyframes nfTicker       { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes nfScrollPulse  { 0%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1)} }
@keyframes nfFadeUp       { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes nfPulseRed     { 0%,100%{box-shadow:0 0 0 0 var(--nf-red-glow)} 50%{box-shadow:0 0 0 12px transparent} }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nf-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nf-primary-nav, .nf-nav-right { display: none; }
  .nf-hamburger { display: flex; }
  .nf-dish-orbit { width: 280px; height: 280px; }
  .nf-orbit-sat img { width: 60px; height: 60px; }
  .nf-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nf-footer-bottom { flex-direction: column; text-align: center; }
  .nf-cats { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .nf-cats::-webkit-scrollbar { display: none; }
  .nf-cat-btn { flex-shrink: 0; }
}
@media (max-width: 480px) {
  .nf-dishes-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   POST CARD — READ MORE LINK
══════════════════════════════════════════════ */
.nf-post-read-more {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nf-red);
  text-decoration: none;
  transition: opacity var(--nf-ease);
}
.nf-post-read-more:hover { opacity: .7; color: var(--nf-red); }

/* ══════════════════════════════════════════════
   HERO — FULL LAYOUT (needed for index.php)
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: clamp(7rem, 14vw, 9rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,44,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__left  { position: relative; z-index: 2; }
.hero__right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }

.hero__tagline {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
}
.hero__tagline::before { content: ''; width: 28px; height: 2px; background: var(--nf-red); }
.hero__tagline span { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--nf-red); }

.hero__title {
  font-family: var(--nf-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--nf-red); }
.hero__desc { color: var(--nf-muted); font-size: clamp(.95rem,2vw,1.05rem); max-width: 44ch; line-height: 1.9; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__reviews { display: flex; align-items: center; gap: 1.5rem; }
.review-meta   { font-size: .78rem; color: var(--nf-muted); }
.review-stars  { color: var(--nf-gold); font-size: .9rem; }
.review-score  { font-weight: 600; color: var(--nf-white); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--nf-muted); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; z-index: 2;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--nf-red), transparent);
  animation: nfScrollPulse 2s ease infinite;
}
.hero-deco { position: absolute; pointer-events: none; font-size: 2.5rem; animation: nfFloat 6s ease-in-out infinite; }
.hero-deco-1 { top: 12%; right: 6%; animation-delay: 0s; }
.hero-deco-2 { bottom: 20%; left: 4%; font-size: 2rem; animation-delay: -3s; }
.hero-deco-3 { top: 55%; right: 2%; font-size: 1.8rem; animation-delay: -1.5s; }

/* Why section */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-wrap  { position: relative; }
.why-img-main  { border-radius: var(--nf-radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
  position: absolute; bottom: 2rem; right: -2rem;
  background: var(--nf-red); border-radius: var(--nf-radius-md);
  padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 16px 40px var(--nf-red-glow);
}
.why-img-badge .num { font-family: var(--nf-display); font-size: 2.5rem; font-weight: 900; line-height: 1; display: block; }
.why-img-badge .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.why-features { display: flex; flex-direction: column; gap: 2rem; }
.why-feature  { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--nf-radius-sm); flex-shrink: 0;
  background: var(--nf-dark2); border: 1px solid var(--nf-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: background var(--nf-ease), border-color var(--nf-ease);
}
.why-feature:hover .why-icon { background: rgba(232,25,44,.1); border-color: var(--nf-red); }
.why-feature h4 { font-family: var(--nf-display); font-size: 1.05rem; margin-bottom: .3rem; }
.why-feature p  { font-size: .88rem; color: var(--nf-muted); line-height: 1.7; max-width: none; }

/* DISH CARD used in shortcode */
.nfe-dishes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.nfe-dish-card {
  background: var(--nf-card); border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg); overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.nfe-dish-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.5); border-color: rgba(232,25,44,.3); }
.nfe-dish-card__img { display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: var(--nf-dark2); }
.nfe-dish-card__img img { width: 155px; height: 155px; border-radius: 50%; object-fit: cover; box-shadow: 0 16px 40px rgba(0,0,0,.5); transition: transform .5s; }
.nfe-dish-card:hover .nfe-dish-card__img img { transform: scale(1.07) rotate(3deg); }
.nfe-dish-card__body  { padding: 1.2rem 1.5rem 1.5rem; }
.nfe-dish-card__name  { font-family: var(--nf-display); font-size: 1.15rem; margin-bottom: .3rem; display: block; }
.nfe-dish-card__sub   { font-size: .82rem; color: var(--nf-muted); margin-bottom: 1rem; line-height: 1.6; display: block; }
.nfe-dish-card__foot  { display: flex; align-items: center; justify-content: space-between; }
.nfe-dish-card__price { font-size: 1.2rem; font-weight: 700; color: var(--nf-red); }
.nfe-dish-card__add   {
  width: 38px; height: 38px; border-radius: 50%; background: var(--nf-red); border: none;
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, box-shadow .3s;
}
.nfe-dish-card__add:hover { transform: scale(1.15); box-shadow: 0 8px 20px var(--nf-red-glow); }

/* Skip link */
.nfe-skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--nf-red); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  font-size: .85rem; font-weight: 600; z-index: 99999;
  transition: top .2s; text-decoration: none;
}
.nfe-skip-link:focus { top: 0; }

/* Section dark/black helpers */
.section--dark  { background: var(--nf-dark);  padding-block: clamp(4rem,8vw,7rem); }
.section--black { background: var(--nf-black); padding-block: clamp(4rem,8vw,7rem); }

/* Responsive hero */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 3rem; padding-top: 8rem; }
  .hero__left { order: 2; }
  .hero__right { order: 1; }
  .hero__actions { justify-content: center; }
  .hero__reviews { justify-content: center; }
  .hero__desc { margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-img-wrap { max-width: 480px; margin-inline: auto; }
  .why-img-badge { right: -1rem; }
}
@media (max-width: 768px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .nf-btn { width: 100%; max-width: 300px; justify-content: center; }
  .nfe-dishes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nfe-dishes-grid { grid-template-columns: 1fr; }
}
