/* ============================================================
   POPUP PIZZERIA – Minimalist & Pizza-Themed
   Palette:
     --red:    #D7263D  (tomato)
     --cream:  #FFF8F0  (mozzarella)
     --green:  #3A7D44  (basil)
     --crust:  #C4813A  (pizza crust)
     --char:   #1E1E1E  (charred edge / text)
     --yellow: #F4C430  (saffron / Swedish touch)
   ============================================================ */

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

:root {
  --red:    #D7263D;
  --cream:  #FFF8F0;
  --green:  #3A7D44;
  --crust:  #C4813A;
  --char:   #1E1E1E;
  --yellow: #F4C430;
  --white:  #FFFFFF;
  --grey:   #F0EBE3;
  --text:   #2C2C2C;
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
em { font-style: italic; }
a  { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-light { background: var(--cream); }
.section-warm  { background: var(--grey); }
.section-blue  { background: var(--char); color: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--yellow); }
.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--cream); }
.section-subtitle { color: #888; margin-bottom: 2.5rem; max-width: 550px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-primary  { background: var(--red);   color: var(--white); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.logo-icon { font-size: 1.8rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.logo-text em { color: var(--yellow); }

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  nav {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--char);
    padding: 1.5rem;
    display: none;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--char);
  text-align: center;
  padding: 7rem 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(215,38,61,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(58,125,68,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(196,129,58,0.15) 0%, transparent 70%);
}

/* Subtle pizza-crust ring decoration */
.hero::before {
  content: '';
  position: absolute;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  border: 2px dashed rgba(196,129,58,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: min(480px, 72vw);
  height: min(480px, 72vw);
  border-radius: 50%;
  border: 1px solid rgba(196,129,58,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; color: var(--white); }

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}

.hero h1 { margin-bottom: 1rem; }
.hero h1 em { color: var(--red); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  gap: 0.15rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge-line {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.badge-date {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-time {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-flowers {
  position: absolute;
  bottom: 4rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.4rem;
  opacity: 0.4;
  z-index: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   OM OSS
   ============================================================ */
.text-block .section-tag { display: block; }

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.check { color: var(--green); font-weight: 700; }

/* CSS Pizza illustration */
.image-block { display: flex; justify-content: center; align-items: center; }

.pizza-visual { position: relative; display: flex; flex-direction: column; align-items: center; }

.pizza-plate {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #E8D5B7;
  box-shadow:
    0 0 0 12px #C4813A,
    0 0 0 14px #A86828,
    0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.pizza-crust {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #D7263D 0%, #B01E2F 60%, #C4813A 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pizza-sauce {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 60%, transparent 100%);
  opacity: 0.3;
}

.pizza-topping {
  position: absolute;
  font-size: 1.4rem;
}
.t1 { top: 25%; left: 15%; }
.t2 { top: 15%; right: 20%; }
.t3 { bottom: 25%; right: 15%; }
.t4 { bottom: 20%; left: 25%; }
.t5 { top: 45%; left: 42%; }

.pizza-smoke {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: rgba(100,100,100,0.5);
  animation: float-smoke 3s ease-in-out infinite;
}
@keyframes float-smoke {
  0%,100% { transform: translateY(0) scaleX(1); opacity: 0.5; }
  50%      { transform: translateY(-10px) scaleX(1.1); opacity: 0.8; }
}

/* ============================================================
   MENU
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pizza-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.pizza-card.featured {
  border: 2px solid var(--red);
  background: var(--white);
}

.pizza-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.pizza-emoji { font-size: 1.8rem; }
.pizza-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}

.pizza-card h3 { margin-bottom: 0.4rem; }
.pizza-card p  { font-size: 0.9rem; color: #666; line-height: 1.5; margin-bottom: 0.75rem; }

.pizza-tag {
  display: inline-block;
  background: var(--grey);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.pizza-card.featured .pizza-tag { background: rgba(215,38,61,0.1); color: var(--red); }

.featured-label {
  position: absolute;
  top: -1px; right: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0 0 6px 6px;
}

.menu-note {
  font-size: 0.82rem;
  color: #999;
  text-align: center;
  padding-top: 0.5rem;
}

/* ============================================================
   EVENEMANG
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s;
}
.event-card:hover { background: rgba(255,255,255,0.1); }
.event-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.event-card h3 { color: var(--yellow); margin-bottom: 0.5rem; font-size: 1rem; }
.event-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* Countdown */
.countdown-wrapper {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.countdown-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
}
.countdown-unit span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.countdown-unit small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
  padding-bottom: 1.2rem;
}

/* ============================================================
   HITTA OSS
   ============================================================ */
.location-cols { align-items: start; }

.info-block {
  margin-bottom: 1.8rem;
}
.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.info-block p { font-size: 0.95rem; line-height: 1.7; }

/* Map art */
.map-placeholder {
  background: #E8EAD8;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.map-art {
  position: relative;
  height: 260px;
  background: #D4E8C2;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.map-road {
  position: absolute;
  background: #C8B99A;
}
.map-road-h {
  height: 14px;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.map-road-v {
  width: 14px;
  top: 0; bottom: 0;
  left: 40%;
  transform: translateX(-50%);
}

.map-tree { position: absolute; font-size: 1.8rem; }
.map-tree.t1 { top: 10%; left: 10%; }
.map-tree.t2 { bottom: 15%; left: 60%; }
.map-tree.t3 { top: 15%; right: 10%; }

.map-house { position: absolute; font-size: 2.5rem; top: 25%; left: 50%; transform: translateX(-50%); }
.map-barn  { position: absolute; font-size: 1.8rem; bottom: 20%; left: 25%; }

.map-pin {
  position: absolute;
  font-size: 2.2rem;
  top: 10%; left: 46%;
  animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.map-label {
  position: absolute;
  top: 2%; left: 57%;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.map-caption { font-size: 0.82rem; color: #888; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--char);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding-bottom: 2rem;
}
.footer-flowers {
  font-size: 1.2rem;
  padding: 1.5rem 0;
  letter-spacing: 0.8rem;
  opacity: 0.3;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo .logo-icon { font-size: 1.5rem; }
.footer-tagline { font-size: 0.9rem; margin-bottom: 1rem; color: rgba(255,255,255,0.4); }
.footer-copy    { font-size: 0.78rem; color: rgba(255,255,255,0.25); }