﻿/* ============================================================
   SMS Werbebuchungstool – Stylesheet v2
   Inspired by: sacher-educate.de + Überstunde + SMS Website
   Dark-Mode Tech Aesthetic | Überstunde Orange Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,700;6..96,900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #08090D;
  --bg2:         #0E0F17;
  --bg3:         #12131C;
  --card-bg:     #111219;
  --border:      rgba(255,255,255,0.07);
  --border-hover:rgba(233,79,17,0.4);

  --orange:      #E94F11;
  --orange-dim:  rgba(233,79,17,0.15);
  --orange-glow: rgba(233,79,17,0.35);
  --blue:        #2563EB;

  --white:       #FFFFFF;
  --text:        rgba(255,255,255,0.85);
  --text-muted:  rgba(255,255,255,0.45);
  --text-dim:    rgba(255,255,255,0.25);

  --success:     #10B981;
  --error:       #EF4444;
  --sale-red:    #EF4444;

  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --glow-orange: 0 0 40px rgba(233,79,17,0.25);

  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);

  --container:   1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--orange); text-decoration: none; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.1; font-weight: 800; letter-spacing: -0.5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,9,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.nav-logo svg, .footer-logo svg {
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-logo-text .brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.nav-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.3s ease;
}
.nav-badge:hover { background: #c43d0d; opacity: 1; }

/* Navbar — booking flow animation */
.navbar.booking-active .nav-logo {
  opacity: 0;
  transform: translateX(-48px);
  pointer-events: none;
}
.navbar.booking-active .nav-badge {
  opacity: 0;
  transform: translateX(48px);
  pointer-events: none;
}

/* ============================================================
   LANDING PAGE HERO
   ============================================================ */
.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
}

/* Animated radial glow background */
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(233,79,17,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37,99,235,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(233,79,17,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Grid overlay texture */
.landing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-collab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-collab .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s ease infinite;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-headline span {
  background: linear-gradient(135deg, #E94F11 0%, #FF8C5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeUp 0.7s ease 0.35s both;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.5s both;
}

/* Event Cards on Landing */
.landing-events {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  width: 100%;
  margin-top: 64px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.landing-events.landing-events-trio {
  max-width: 1120px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Combo card – split image header */
.combo-split-images {
  position: relative;
  display: flex;
  height: 180px;
  overflow: hidden;
}
.combo-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.combo-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bg);
  transform: translateX(-50%);
}

/* Kombi-Paket badge */
.landing-combo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 3;
  box-shadow: 0 2px 12px rgba(233,79,17,0.5);
}

/* ============================================================
   Flip Card System
   ============================================================ */
@keyframes pulse-info {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233,79,17,0.5); }
  60%       { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(233,79,17,0); }
}
@keyframes pulse-back {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.75; }
}

.flip-card-wrapper {
  perspective: 1200px;
  position: relative;
}
.flip-card-inner {
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}
.flip-card-front {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px 20px;
  overflow: hidden;
}
.flip-card-wrapper.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Pulsing info button (front, top-left) */
.flip-info-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-info 2.2s ease-in-out infinite;
  line-height: 1;
}
.flip-info-btn:hover { background: #ff6a2a; }

/* Back face content */
.flip-back-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.flip-back-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.flip-back-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
  margin: 0;
}
.flip-back-footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.flip-back-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-back 2s ease-in-out infinite;
  transition: background 0.2s, color 0.2s;
}
.flip-back-arrow:hover { background: var(--orange); color: #fff; animation: none; }

/* Step 2 flip event cards */
.flip-event-wrapper {
  perspective: 1200px;
  position: relative;
}
.flip-event-inner {
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}
.flip-event-front {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
.flip-event-back {
  position: absolute;
  top: 0; left: 0; right: 0;
  min-height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  box-sizing: border-box;
}
.flip-event-wrapper.flipped .flip-event-inner {
  transform: rotateY(180deg);
}

.flip-event-info-btn {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  z-index: 20;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-info 2.2s ease-in-out infinite;
}
.flip-event-back-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin: 0;
}
.flip-event-back-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
  animation: pulse-back 2s ease-in-out infinite;
}
.flip-event-back-arrow:hover { border-color: var(--orange); color: var(--white); animation: none; }

/* Event Info Panel (Schritt 2) */
.event-info-toggle { display: block; }
.event-info-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  animation: fadeUp 0.25s ease both;
}
.event-info-toggle.info-open .event-card { display: none; }
.event-info-toggle.info-open .event-info-panel { display: flex; }
.event-info-panel-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
/* Schritt 2: Aufklapp-Infopanel */
.ev-card-wrap { display: flex; flex-direction: column; gap: 6px; }
.ev-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.2s ease both;
}
.ev-info-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
.ev-info-link {
  background: transparent;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.ev-info-link:hover { opacity: 0.75; }

/* City section dividers */
.city-section {
  width: 100%;
  max-width: 1120px;
  margin-top: 56px;
}
.city-section:first-of-type {
  margin-top: 48px;
}
.city-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.city-section-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  margin: 0;
}
.city-section-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.city-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Placeholder / Coming-Soon cards */
.landing-event-card.card-placeholder {
  cursor: default;
  pointer-events: none;
  opacity: 0.55;
}
.landing-event-card.card-placeholder:hover {
  transform: none;
  box-shadow: none;
}
.coming-soon-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 10;
}
.coming-soon-ribbon::after {
  content: 'FOLGT DEMNÄCHST';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
  width: 160%;
  text-align: center;
  background: #c0392b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 10px 0;
  box-shadow: 0 3px 16px rgba(0,0,0,0.5);
  border-top: 2px dashed rgba(255,255,255,0.35);
  border-bottom: 2px dashed rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Combo card featured border */
.landing-combo-card {
  border-color: rgba(233,79,17,0.5) !important;
  box-shadow: 0 0 0 1px rgba(233,79,17,0.2), var(--glow-orange) !important;
}
.landing-combo-card:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 1px var(--orange), 0 0 48px rgba(233,79,17,0.35) !important;
}

.landing-event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.landing-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(233,79,17,0.4), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}
.landing-event-card:hover { transform: translateY(-6px); box-shadow: var(--glow-orange); }
.landing-event-card:hover::before { opacity: 1; }

.event-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.event-card-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.event-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  border: 1px solid rgba(233,79,17,0.3);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.event-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  flex: 1;
}
.event-card-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-card-meta span::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.event-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-card-btn:hover { background: #c43d0d; transform: translateX(3px); }
.event-card-btn .arrow { transition: var(--transition); }
.event-card-btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   STEP INDICATOR (sticky)
   ============================================================ */
.steps-wrapper {
  background: rgba(8,9,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.steps-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(50% + 17px);
  width: calc(100% - 34px);
  height: 1px;
  background: var(--border);
  z-index: 0;
  transition: var(--transition);
}
.step-item.completed:not(:last-child)::after { background: var(--orange); }

.step-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--card-bg);
  color: var(--text-dim);
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.step-item.active .step-dot {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233,79,17,0.25);
}
.step-item.completed .step-dot {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 0;
}
.step-item.completed .step-dot::after { content: '✓'; font-size: 13px; }

.step-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.step-item.active .step-label { color: var(--orange); }
.step-item.completed .step-label { color: var(--text-muted); }

/* ============================================================
   BOOKING CONTAINER
   ============================================================ */
.booking-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

/* ============================================================
   STEP PANELS
   ============================================================ */
.step-panel { display: none; animation: fadeUp 0.3s ease; }
.step-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,79,17,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(233,79,17,0); }
}

.step-header {
  margin-bottom: 36px;
}
.step-header .step-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.step-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 10px;
}
.step-header p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   CITY / OPTION CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 40px;
}

.option-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.option-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #FF8C5A);
  transform: scaleX(0);
  transition: var(--transition);
}
.option-card:hover { border-color: rgba(233,79,17,0.35); transform: translateY(-3px); box-shadow: var(--shadow); }
.option-card:hover::before { transform: scaleX(1); }
.option-card.selected { border-color: var(--orange); background: rgba(233,79,17,0.08); }
.option-card.selected::before { transform: scaleX(1); }

.selected-badge {
  display: none;
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: var(--white);
  width: 26px; height: 26px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 2;
}
.option-card.selected .selected-badge { display: flex; }

.option-card .card-icon { font-size: 40px; margin-bottom: 14px; }
.option-card .card-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.option-card .card-sub { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   EVENT CARDS (Schritt 2)
   ============================================================ */
.events-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.events-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }

.event-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.event-card:hover { border-color: rgba(233,79,17,0.3); transform: translateX(3px); }
.event-card.selected { border-color: var(--orange); background: rgba(233,79,17,0.07); }

.event-date-box {
  min-width: 54px; height: 54px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.event-card.selected .event-date-box { background: var(--orange); border-color: var(--orange); }
.event-date-box .day { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.event-date-box .month { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 2px; }
.event-card.selected .event-date-box .month { color: rgba(255,255,255,0.8); }

.event-info { flex: 1; }
.event-city-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 3px;
}
.event-location { font-size: 15px; font-weight: 600; color: var(--white); }
.event-date-full { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.event-check {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.event-card.selected .event-check { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* TBD / "wird bekannt gegeben" event cards */
.event-card.tbd {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
  transform: none !important;
  border-color: rgba(255,255,255,0.04) !important;
}
.event-card.tbd:hover { border-color: rgba(255,255,255,0.04); transform: none; }
.event-card.tbd .tbd-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}
.event-card.tbd .tbd-day {
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.event-card.tbd .event-date-box .month {
  color: var(--text-dim);
}
.tbd-location {
  font-style: italic;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

.no-events-msg {
  text-align: center; padding: 48px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover { border-color: rgba(233,79,17,0.35); transform: translateY(-4px); box-shadow: var(--shadow); }
.package-card.selected { border-color: var(--orange); background: rgba(233,79,17,0.06); box-shadow: var(--glow-orange); }

.package-card.featured::after {
  content: 'Empfohlen';
  position: absolute;
  top: 32px; right: -32px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 5px 44px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-card.selected .selected-badge { display: flex; }

.package-name {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.package-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.price-netto { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.price-netto .currency { font-size: 20px; vertical-align: super; margin-right: 2px; font-weight: 600; }
.price-netto .period { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.price-original { font-size: 16px; color: var(--error); text-decoration: line-through; margin-right: 8px; font-weight: 600; }
.price-tag-sale {
  display: inline-block;
  background: rgba(239,68,68,0.15);
  color: var(--error);
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: var(--radius-pill);
  margin-left: 4px;
}

.package-price { margin-bottom: 24px; }

.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.package-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.package-features li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; min-width: 18px;
  background: rgba(233,79,17,0.15);
  border: 1px solid rgba(233,79,17,0.35);
  color: var(--orange);
  border-radius: 50%;
  font-size: 9px; font-weight: 700;
}

/* ============================================================
   GRAPHIC OPTIONS
   ============================================================ */
.graphic-option-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}
.graphic-option-card:hover { border-color: rgba(233,79,17,0.35); }
.graphic-option-card.selected { border-color: var(--orange); background: rgba(233,79,17,0.06); }

.graphic-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.graphic-option-card.selected .graphic-icon { background: var(--orange-dim); border-color: rgba(233,79,17,0.4); }
.graphic-text h4 { font-size: 15px; color: var(--white); margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.graphic-text p { font-size: 13px; color: var(--text-muted); }
.price-pill {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid rgba(233,79,17,0.35);
  color: var(--orange);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-pill);
  margin-top: 8px;
}
.price-pill.free {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.3);
  color: var(--success);
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-zone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 44px 24px;
  text-align: center;
  background: var(--card-bg);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  margin-top: 4px;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--orange);
  background: rgba(233,79,17,0.05);
}
.upload-zone .upload-icon { font-size: 40px; margin-bottom: 14px; }
.upload-zone h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.upload-zone p { font-size: 13px; color: var(--text-muted); }
.upload-zone .formats { font-size: 11px; color: var(--text-dim); margin-top: 8px; }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}

.upload-progress { display: none; margin-top: 16px; }
.upload-progress-bar { height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.upload-progress-fill { height: 100%; background: var(--orange); border-radius: 3px; transition: width 0.3s; width: 0%; }

.upload-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px; margin-top: 12px;
}
.upload-success.visible { display: flex; }
.upload-success .filename { font-size: 14px; font-weight: 600; color: var(--white); }
.upload-success .filesize { font-size: 12px; color: var(--text-muted); }

.upload-error { display: none; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 12px; color: #FC8181; font-size: 14px; }
.upload-error.visible { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full-width { grid-column: 1 / -1; }

.form-field label { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.form-field label .required { color: var(--orange); margin-left: 2px; }

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,79,17,0.12); }
.form-field input.error { border-color: var(--error); }
.form-field .field-error { font-size: 12px; color: #FC8181; display: none; }
.form-field .field-error.visible { display: block; }

/* ============================================================
   ORDER SUMMARY
   ============================================================ */
.summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.summary-header {
  background: linear-gradient(135deg, var(--orange) 0%, #c43d0d 100%);
  color: var(--white);
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px;
}
.summary-body { padding: 20px 24px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 600; color: var(--white); }
.summary-row .value.discount { color: var(--success); }

.summary-total {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.summary-total .total-label { font-size: 15px; font-weight: 700; color: var(--white); }
.summary-total .total-price { font-size: 30px; font-weight: 800; color: var(--white); font-family: 'Inter', sans-serif; letter-spacing: -1px; }
.summary-total .total-sub { font-size: 11px; color: var(--text-dim); text-align: right; margin-top: 2px; }

/* Promo */
.promo-row { display: flex; gap: 10px; margin-bottom: 24px; }
.promo-row input {
  flex: 1; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--white); outline: none;
  text-transform: uppercase; letter-spacing: 1px;
  transition: var(--transition);
}
.promo-row input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,79,17,0.12); }
.promo-row input::placeholder { color: var(--text-dim); }
.promo-feedback { font-size: 13px; margin-top: 6px; min-height: 18px; }
.promo-feedback.success { color: var(--success); }
.promo-feedback.error { color: #FC8181; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none;
  white-space: nowrap; letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #c43d0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,79,17,0.4);
  color: var(--white);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--white); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.2); color: var(--white); text-decoration: none; }

.btn-dark { background: var(--card-bg); border: 1px solid var(--border); color: var(--white); }
.btn-dark:hover { border-color: rgba(255,255,255,0.2); text-decoration: none; color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-full { width: 100%; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn .spinner-btn { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.btn.loading .spinner-btn { display: block; }

/* ============================================================
   STEP NAV
   ============================================================ */
.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.step-counter { font-size: 12px; color: var(--text-dim); font-weight: 500; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  display: flex; gap: 12px;
  background: rgba(233,79,17,0.07);
  border: 1px solid rgba(233,79,17,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.info-box .info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.info-box p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   SUCCESS / CANCEL PAGES
   ============================================================ */
.result-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 40px 20px;
  background: var(--bg);
}
.result-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.result-icon { font-size: 72px; margin-bottom: 24px; display: block; }
.result-card h1 { font-size: 32px; color: var(--white); margin-bottom: 12px; }
.result-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.result-card .booking-ref-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px; margin: 20px 0;
  font-family: 'Courier New', monospace; font-size: 18px; font-weight: 700;
  color: var(--orange); letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.footer-logo img { height: 150px; width: auto; }

/* Step 1 city card selected state */
.step1-city-card.city-selected {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 1px var(--orange), var(--glow-orange);
  transform: translateY(-4px);
}

.footer-bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: var(--bg); min-height: 100vh; }

.admin-sidebar {
  width: 240px; background: var(--bg2);
  border-right: 1px solid var(--border);
  min-height: 100vh;
  position: fixed; top: 0; left: 0;
  padding: 0 0 24px;
  overflow-y: auto; z-index: 200;
}
.admin-sidebar .sidebar-logo {
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.admin-sidebar .sidebar-logo .logo-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--white); font-weight: 700;
}
.admin-sidebar .sidebar-logo .logo-sub {
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.04); color: var(--white); }
.sidebar-nav a.active { background: var(--orange-dim); color: var(--white); border-left-color: var(--orange); }
.sidebar-nav .nav-section {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
  padding: 16px 20px 6px;
}

.admin-main { margin-left: 240px; padding: 36px 40px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 26px; color: var(--white); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  border-left: 3px solid var(--orange);
}
.stat-card .stat-value { font-size: 30px; font-weight: 800; color: var(--white); font-family: 'Inter', sans-serif; line-height: 1; }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

.admin-table-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.admin-table-card .table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.admin-table-card .table-header h2 { font-size: 16px; color: var(--white); }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim);
  padding: 12px 24px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-success { background: rgba(16,185,129,0.1); color: #34D399; }
.badge-warning { background: rgba(245,158,11,0.1); color: #FBBF24; }
.badge-error   { background: rgba(239,68,68,0.1); color: #FC8181; }
.badge-gray    { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.badge-blue    { background: rgba(37,99,235,0.1); color: #60A5FA; }
.badge-orange  { background: var(--orange-dim); color: var(--orange); }

.admin-form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 24px; }
.admin-form-card h2 { font-size: 17px; color: var(--white); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

.toggle { position: relative; width: 44px; height: 24px; }
.toggle input { display: none; }
.toggle-slider { position: absolute; inset: 0; background: var(--border); border-radius: 24px; cursor: pointer; transition: var(--transition); }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; background: var(--text-muted); border-radius: 50%; left: 3px; top: 3px; transition: var(--transition); }
.toggle input:checked + .toggle-slider { background: var(--orange); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); background: white; }
.toggle-wrap { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
  background: linear-gradient(90deg, #E94F11, #FF8C5A);
  color: white; text-align: center;
  padding: 10px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; position: sticky; top: 0; z-index: 9999;
}

/* ============================================================
   CHECKOUT ERROR
   ============================================================ */
.checkout-error {
  display: none; background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px; margin-top: 16px;
  color: #FC8181; font-size: 14px;
}

/* ============================================================
   RESPONSIVE – Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .landing-events.landing-events-trio {
    grid-template-columns: 1fr 1fr;
  }
  .city-section-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-form-card { padding: 20px 18px; }
}

/* ============================================================
   RESPONSIVE – Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .navbar { padding: 14px 0; }
  .navbar-inner { padding: 0 16px; }
  .nav-logo-text .brand-name { font-size: 13px; }
  .nav-logo-text .brand-eyebrow { display: none; }
  .nav-logo svg { width: 28px; height: 28px; }
  .nav-badge { font-size: 10px; padding: 6px 12px; }

  /* --- Landing Hero --- */
  .landing-hero { padding: 90px 16px 56px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-collab { font-size: 10px; padding: 6px 14px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* --- Stats row --- */
  .hero-stats { gap: 20px !important; }
  .hero-stats .stat-divider { display: none !important; }
  .hero-stats > div { min-width: calc(50% - 10px); }

  /* --- Landing event cards (trio → single column) --- */
  .landing-events,
  .landing-events.landing-events-trio,
  .city-section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .event-card-image,
  .event-card-image-placeholder { height: 160px; }
  .combo-split-images { height: 160px; }

  /* --- Sections padding --- */
  section[id] { padding: 64px 16px !important; }
  section[id] > div > div[style*="margin-bottom:64px"],
  section[id] > div > div[style*="margin-bottom: 64px"] { margin-bottom: 36px !important; }

  /* --- Photo grid (1 col on mobile) --- */
  .photo-grid {
    grid-template-columns: 1fr !important;
  }
  .photo-grid > div[style*="grid-column"] {
    display: block !important;
  }
  .photo-grid > div[style*="grid-column"] > div {
    width: 100% !important;
  }

  /* --- Step indicator --- */
  .steps-wrapper { padding: 12px 16px; }
  .steps-list { gap: 0; }
  .step-label { display: none; }
  .step-dot { width: 28px; height: 28px; font-size: 11px; }
  .step-item:not(:last-child)::after {
    top: 14px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
  }
  .step-item.completed .step-dot::after { font-size: 11px; }

  /* --- Booking container --- */
  .booking-container { padding: 32px 16px 80px; }
  .step-header h2 { font-size: 1.6rem; }
  .step-header { margin-bottom: 24px; }

  /* --- City / option cards --- */
  .card-grid { grid-template-columns: 1fr; gap: 12px; }
  .option-card { padding: 20px 18px; }
  .option-card .card-icon { font-size: 32px; margin-bottom: 10px; }
  .option-card .card-title { font-size: 18px; }

  /* --- Event cards --- */
  .event-card { padding: 14px 16px; gap: 12px; }
  .event-date-box { min-width: 48px; height: 48px; }
  .event-date-box .day { font-size: 17px; }
  .event-location { font-size: 14px; }

  /* --- Package cards --- */
  .card-grid .package-card { padding: 24px 20px; }
  .package-name { font-size: 18px; }
  .price-netto { font-size: 28px; }
  .package-card.featured::after {
    top: 26px; right: -28px; font-size: 9px; padding: 4px 38px;
  }

  /* --- Graphic options --- */
  .graphic-option-card { padding: 16px 18px; }

  /* --- Contact form --- */
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-field input,
  .form-field textarea { padding: 12px 14px; font-size: 14px; }

  /* --- Summary --- */
  .summary-card { margin-bottom: 20px; }
  .summary-total { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 18px; }
  .summary-total .total-price { font-size: 24px; }
  .summary-body { padding: 14px 18px; }
  .summary-header { padding: 14px 18px; font-size: 16px; }
  .summary-row { font-size: 13px; }

  /* --- Promo row --- */
  .promo-row { flex-direction: column; gap: 8px; }
  .promo-row input { width: 100%; }
  .promo-row .btn { width: 100%; }

  /* --- Step navigation --- */
  .step-nav { flex-direction: column; gap: 10px; margin-top: 28px; padding-top: 20px; }
  .step-nav .btn { width: 100%; justify-content: center; }
  .step-counter { text-align: center; order: -1; }

  /* --- Result / success pages --- */
  .result-card { padding: 32px 20px; }
  .result-icon { font-size: 52px; }
  .result-card h1 { font-size: 24px; }
  .result-card .booking-ref-box { font-size: 15px; }

  /* --- Footer --- */
  .footer-logo img { height: 80px !important; }
  .footer-inner { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* --- Admin --- */
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; z-index: 500; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 60px 16px 20px; }
  .admin-menu-toggle {
    display: flex; align-items: center; gap: 8px;
    position: fixed; top: 14px; left: 14px; z-index: 600;
    background: var(--orange); color: #fff;
    border: none; border-radius: var(--radius-sm);
    padding: 8px 14px; font-size: 13px; font-weight: 700;
    font-family: 'Inter', sans-serif; cursor: pointer;
    box-shadow: 0 4px 16px rgba(233,79,17,0.4);
  }
  .admin-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 400;
  }
  .admin-overlay.visible { display: block; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px 14px; }
  .stat-card .stat-value { font-size: 22px; }
  .admin-form-card { padding: 18px 16px; }
  .admin-table th, .admin-table td { padding: 10px 14px; font-size: 13px; }
}

/* ============================================================
   RESPONSIVE – Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* Navbar – Logo-Text kleiner statt versteckt */
  .nav-logo-text .brand-name { font-size: 11px; }
  .nav-logo-text .brand-eyebrow { display: none; }

  /* Hero */
  .landing-hero { padding: 80px 14px 48px; }
  .hero-sub { font-size: 14px; }

  /* Stats: 2x2 grid */
  .hero-stats { flex-wrap: wrap !important; gap: 16px !important; justify-content: center !important; }
  .hero-stats > div { width: calc(50% - 8px); min-width: 0; }

  /* Booking */
  .booking-container { padding: 24px 14px 80px; }
  .step-header h2 { font-size: 1.4rem; }

  /* Step dots even smaller */
  .step-dot { width: 24px; height: 24px; font-size: 10px; }
  .step-item:not(:last-child)::after {
    top: 12px;
    left: calc(50% + 12px);
    width: calc(100% - 24px);
  }

  /* Package cards stacked nicely */
  .price-netto { font-size: 26px; }

  /* Summary total */
  .summary-total .total-price { font-size: 22px; }

  /* Admin table: horizontal scroll */
  .admin-table-card { overflow-x: auto; }
  .stat-cards { grid-template-columns: 1fr; }
}
