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

:root {
  --navy: #1e2d4a;
  --navy-dark: #162036;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --sand: #d9c87a;
  --sand-bg: #d4be6e;
  --white: #f5f0e8;
  --text-light: rgba(245,240,232,0.8);
  --charcoal: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: transparent;
  transition: background .4s;
}
nav.scrolled { background: var(--navy-dark); box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-logo img {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); text-decoration: none; font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── HERO ── */
#hem {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: url('interior.jpg') no-repeat;
  background-size: cover;
}
#hem::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.3));
  animation: fadeUp .9s ease both;
}

.btn-order {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Raleway', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 36px;
  text-decoration: none;
  margin-bottom: 48px;
  transition: background .2s, transform .2s;
  animation: fadeUp .9s .1s ease both;
}
.btn-order:hover { background: var(--gold-light); transform: translateY(-2px); }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp .9s .2s ease both;
}

.hero-text {
  max-width: 540px; font-size: .92rem; line-height: 1.85;
  color: var(--text-light); font-weight: 300;
  animation: fadeUp .9s .3s ease both;
}

/* ── WOOD FIRE BANNER ── */
.woodfire-section {
  position: relative; height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.woodfire-section .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,32,54,.55), rgba(22,32,54,.72));
}
.woodfire-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  /* fallback gradient simulating dark restaurant interior */
  background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 100%);
}
.woodfire-inner {
  position: relative; z-index: 2; text-align: center;
}
.woodfire-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.woodfire-sub {
  font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-top: 10px; font-weight: 600;
}

/* Faux restaurant interior */
.restaurant-img-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,160,50,.07) 0%, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(50,120,80,.06) 0%, transparent 50%),
    linear-gradient(160deg, #0e1a2a 0%, #162036 50%, #0e1a12 100%);
}

/* ── JOBS SECTION ── */
#jobb {
  background: var(--sand-bg);
  padding: 80px 24px;
  text-align: center;
}
#jobb h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy-dark); margin-bottom: 12px;
}
#jobb .sub { font-size: .85rem; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
#jobb .desc { font-size: .82rem; color: var(--navy); margin-bottom: 32px; opacity: .85; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy-dark);
  color: var(--navy-dark);
  font-family: 'Raleway', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 12px 32px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy-dark); color: var(--white); }

/* ── EVENTS SECTION ── */
#events {
  background: var(--charcoal);
  padding: 80px 60px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.events-text { flex: 1; min-width: 240px; }
.events-text p { font-size: .88rem; color: rgba(245,240,232,.6); margin-bottom: 8px; }
.events-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
}
.event-card {
  display: flex; flex: 1; min-width: 300px; max-width: 500px;
}
.event-img-placeholder {
  width: 160px; height: 110px;
  background: var(--sand-bg);
  flex-shrink: 0;
}
.event-label {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex: 1; padding: 20px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); font-weight: 700;
}

/* ── OVEN PIZZA SECTION ── */
.oven-section {
  position: relative; min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 60px;
}
.oven-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(22,32,54,.85) 40%, rgba(22,32,54,.3) 100%),
    radial-gradient(circle at 70% 50%, rgba(80,140,40,.12) 0%, transparent 60%),
    linear-gradient(160deg, #0e1a0e 0%, #1a2a1a 100%);
}
.oven-content { position: relative; z-index: 2; max-width: 480px; }
.oven-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold); margin-bottom: 8px;
}
.oven-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--white); margin-bottom: 20px; font-style: italic;
}
.oven-content p {
  font-size: .85rem; line-height: 1.85; color: var(--text-light); font-weight: 300;
}

/* ── MENU PAGE ── */
#meny {
  background: var(--navy);
}

.menu-hero {
  position: relative; height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(22,32,54,.6), rgba(22,32,54,.85)),
    radial-gradient(circle at 60% 40%, rgba(80,140,40,.1) 0%, transparent 60%),
    linear-gradient(135deg, #0e1a0e, #1a2a1a);
}
.menu-hero-inner { position: relative; z-index: 2; text-align: center; }
.menu-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: .15em; text-transform: uppercase;
}
.menu-hero-inner p {
  font-size: .7rem; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-top: 8px;
}

.menu-container {
  max-width: 920px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px 80px;
}

.menu-section { break-inside: avoid; }
.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 10px; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: .1em;
}

.menu-item { margin-bottom: 22px; }
.menu-item-header {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.menu-item-name {
  font-size: .88rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .07em;
}
.menu-item-price {
  font-size: .82rem; font-weight: 600; color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: .75rem; color: var(--text-light); line-height: 1.6;
  margin-top: 4px; font-weight: 300; font-style: italic;
}

.menu-section.full-width { grid-column: 1 / -1; }

.menu-category-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 10px; margin-bottom: 20px;
  font-weight: 700;
}

/* build-your-own box */
.byo-box {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  padding: 24px; margin-top: 0;
}
.byo-box h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.byo-box p { font-size: .75rem; color: var(--text-light); line-height: 1.7; }

.toppings-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 6px 16px; margin-top: 10px;
}
.toppings-grid1 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 6px 16px; margin-top: 10px;
}
.toppings-grid2 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px 16px; margin-top: 10px;
}
.topping-item {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--text-light);
}
.topping-item span:last-child { color: var(--gold); font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 60px 24px 32px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.15);
}
footer img.footer-logo {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 32px;
  opacity: .9;
}
.footer-info {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-info-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-info-item .label {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.footer-info-item a, .footer-info-item span {
  font-size: .8rem; color: var(--text-light); text-decoration: none;
}
.footer-info-item a:hover { color: var(--gold); }

.social-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; }
.social-links a {
  width: 36px; height: 36px; border: 1px solid rgba(201,168,76,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: .8rem;
  transition: background .2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-copy {
  font-size: .65rem; color: rgba(245,240,232,.3);
  letter-spacing: .1em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  order: 3; /* always after logo and links */
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 900px) {
  nav { padding: 16px 32px; }

  #events {
    flex-direction: column;
    padding: 60px 32px;
    text-align: center;
  }
  .events-text { min-width: unset; }
  .event-card { max-width: 100%; justify-content: center; }

  .oven-section { padding: 60px 32px; }
  .oven-content { max-width: 100%; }

  .menu-container { padding: 48px 32px; gap: 40px 48px; }

  /* inline pizza grid → single col on tablet */
  div[style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 700px) {
  /* Nav → hamburger */
  nav { padding: 14px 20px; }

  .nav-toggle { display: flex; /*display: none !important;*/ }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(280px, 80vw);
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    /* hide off-screen by default */
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 150;
    box-shadow: -4px 0 24px rgba(0,0,0,.5);
    /* must be flex so items lay out, but translated off screen */
    display: flex !important;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: .9rem; }
  .nav-toggle { display: flex; }

  /* Hero */
  #hem { padding: 100px 20px 64px; }
  .hero-logo { width: 90px; height: 90px; }
  .btn-order { padding: 11px 26px; font-size: .68rem; margin-bottom: 32px; }
  .hero-text { font-size: .85rem; }

  /* Woodfire banner */
  .woodfire-section { height: 280px; }
  .woodfire-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* Oven section */
  .oven-section { padding: 48px 20px; min-height: auto; }
  .oven-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .oven-content p { font-size: .82rem; }

  /* Jobs */
  #jobb { padding: 60px 20px; }

  /* Menu */
  .menu-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }
  .menu-section.full-width { grid-column: 1; }

  /* Inline pizza two-col grid → single col */
  div[style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }

  /* Build-your-own toppings grids */
  .toppings-grid1 {
    grid-template-columns: 1fr !important;
  }
  .toppings-grid2 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  }

  /* Footer */
  .footer-info { gap: 28px; flex-direction: column; align-items: center; }
}

/* ── RESPONSIVE — SMALL MOBILE ── */
@media (max-width: 400px) {
  .woodfire-title { letter-spacing: .08em; }
  .btn-order { padding: 10px 20px; }
}