/* ============================================================
   VÅLA PIZZA — style.css
   Warm Dark Premium Theme
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg:        #120d06;
  --surface:   #1e1509;
  --surface2:  #2a1e0e;
  --surface3:  #33250f;
  --accent:    #e85d04;
  --accent2:   #f48c06;
  --accent-glow: rgba(232,93,4,0.25);
  --text:      #f5f0e8;
  --muted:     #a89880;
  --border:    rgba(232,93,4,0.18);
  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.4);
  --ease:      cubic-bezier(0.25,0.46,0.45,0.94);
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --marquee-speed: 30s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   MARQUEE TOP BAR
   ============================================================ */
.marquee-bar {
  background: var(--accent);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-speed) linear infinite;
}
.marquee-track span {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 100;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), top 0.4s var(--ease), padding 0.4s var(--ease);
}
.navbar.scrolled {
  top: 0;
  background: rgba(18,13,6,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 5%;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.2s, height 0.4s var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.navbar.scrolled .nav-logo-img { height: 52px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-fb { color: var(--accent) !important; font-size: 1rem; }
.nav-fb:hover { color: var(--accent2) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.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;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.05s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,13,6,0.98) 0%,
    rgba(18,13,6,0.7) 40%,
    rgba(18,13,6,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating food icons */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float-icon {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.float-icon.cloche {
  width: 90px;
  top: 18%; left: 8%;
  animation: floatA 6s ease-in-out infinite;
}
.float-icon.pizza-ic {
  width: 70px;
  top: 22%; right: 9%;
  animation: floatB 7s ease-in-out infinite 1s;
}
.float-icon.cutter {
  width: 80px;
  bottom: 28%; right: 6%;
  animation: floatA 8s ease-in-out infinite 2s;
}
.float-icon.thyme {
  width: 130px;
  bottom: 12%; left: 5%;
  animation: floatB 9s ease-in-out infinite 0.5s;
  opacity: 0.7;
}
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-18px) rotate(4deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(-22px) rotate(-6deg); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-outline {
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; }
.section-padding { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.divider-line {
  width: 48px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ============================================================
   CHEESE DIVIDER
   ============================================================ */
.cheese-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--bg);
}
.cheese-divider img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  min-width: 1200px;
  animation: cheeseDrip 3s ease-in-out infinite alternate;
}
@keyframes cheeseDrip {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   OM OSS
   ============================================================ */
.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  filter: brightness(0.92) saturate(1.1);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 900;
  line-height: 1.1;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,93,4,0.45);
}
.about-img-badge strong { font-size: 1.6rem; }
.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   MENY TEASER
   ============================================================ */
.meny-teaser { background: var(--bg); }
.meny-teaser .section-inner { text-align: center; }
.meny-teaser .section-title { margin-bottom: 0.5rem; }
.meny-teaser > .section-inner > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}
.meny-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.meny-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.meny-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(232,93,4,0.2);
  background: var(--surface2);
}
.meny-card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.meny-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.meny-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.meny-card-price {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.meny-cta { text-align: center; }

/* ============================================================
   ÖPPETTIDER
   ============================================================ */
.hours-section { background: var(--surface); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.hours-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.hours-card-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hours-card-title i { color: var(--accent); font-size: 1.1rem; }
.hours-card-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); font-weight: 400; }
.hours-row .time { color: var(--text); font-weight: 600; font-size: 0.85rem; }
.hours-row.today .day { color: var(--accent); font-weight: 600; }
.hours-row.today .time { color: var(--accent2); }
.hours-today-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-text .label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.contact-item-text .value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item-text .value a:hover { color: var(--accent); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) brightness(0.8) saturate(1.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal        { transform: translateY(30px); }
.reveal-up     { transform: translateY(50px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ============================================================
   MENY PAGE — MINI HERO
   ============================================================ */
.meny-hero {
  height: 42vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 36px;
}
.meny-hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}
.meny-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,13,6,1) 0%, rgba(18,13,6,0.65) 60%, rgba(18,13,6,0.4) 100%);
}
.meny-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.meny-hero-content .hero-tag { animation: none; opacity: 1; transform: none; }
.meny-hero-content h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}
.meny-hero-content h1 em { color: var(--accent); font-style: italic; }

/* ============================================================
   STICKY CATEGORY TABS
   ============================================================ */
.category-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18,13,6,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.category-tabs {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.25s var(--ease);
  background: none;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   MENY PAGE — TABLE SECTIONS
   ============================================================ */
.meny-page { background: var(--bg); padding: 0 5% 80px; }
.meny-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 70px;
}
.meny-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.meny-section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
}
.meny-section-header h2 em { color: var(--accent); font-style: italic; }
.meny-section-header .item-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,93,4,0.12);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Pizza tables */
.pizza-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pizza-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pizza-table-header {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0;
  background: var(--surface2);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.pizza-table-header span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.pizza-table-header span:not(:first-child) {
  width: 55px;
  text-align: center;
}
.pizza-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.2s;
  cursor: default;
}
.pizza-row:last-child { border-bottom: none; }
.pizza-row:hover { background: var(--surface2); }
.pizza-row-info { display: flex; align-items: baseline; gap: 8px; }
.pizza-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(232,93,4,0.15);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 0;
}
.pizza-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pizza-ing {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.pizza-price {
  width: 55px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.pizza-price.barn { color: var(--muted); font-weight: 400; font-size: 0.75rem; }
.pizza-price.familj { color: var(--accent2); }
.pizza-price.na { color: var(--surface3); }

/* Other menu tables */
.menu-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
  transition: background 0.2s;
}
.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: var(--surface2); }
.menu-row-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-row-ing {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}
.menu-row-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent2);
  white-space: nowrap;
}

/* Sallad columns */
.sallad-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Extra pålägg */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.extra-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.extra-item:hover {
  border-color: var(--accent);
  background: var(--surface2);
}
.extra-item span { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.extra-item strong { color: var(--accent2); font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-badge { bottom: -15px; right: 15px; }
  .meny-cards { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pizza-columns { grid-template-columns: 1fr; }
  .sallad-columns { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section-padding { padding: 70px 5%; }
  .navbar { padding: 16px 5%; }
  .navbar.scrolled { padding: 12px 5%; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--border);
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .hero-floats .cloche  { width: 55px; left: 3%; }
  .hero-floats .pizza-ic { width: 45px; right: 3%; }
  .hero-floats .cutter  { width: 50px; right: 2%; }
  .hero-floats .thyme   { width: 80px; }
  .meny-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pizza-table-header,
  .pizza-row { grid-template-columns: 1fr auto auto; }
  .pizza-price.barn { display: none; }
  .pizza-table-header span:nth-child(2) { display: none; }
  .cat-tab { padding: 1rem 1rem; font-size: 0.68rem; }
  .map-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
