/* ============================================================
   BERGEDORFER OKTOBERFEST - STANDALONE STYLESHEET
   Alle Farben, Fonts und Layouts direkt bearbeitbar.
   ============================================================ */

/* --- Reset & Basis --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Schriftarten --- */
:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-fraktur: 'UnifrakturCook', 'Fraunces', Georgia, serif;
  --font-mono: 'Courier New', monospace;

  /* ============================================================
     NORDDEUTSCHES GOLD – Farbpalette
     Nachtblau + Bernstein + Cremeweiß
     ============================================================ */

  /* Tiefblau – Nacht, Elbe, Nordsee */
  --blue-600: #2a4a6e;
  --blue-700: #1e3a5f;
  --blue-800: #152d4a;
  --blue-900: #0d1f33;
  --blue-50:  #edf3f9;
  --blue-100: #d0e2f0;
  --blue-200: #a8c5e0;

  /* Bernstein – Bier, Herbstlicht, Gold */
  --amber-300: #f5cc6a;
  --amber-400: #f0a500;
  --amber-500: #d48000;
  --amber-600: #b36200;

  /* Warme Akzente */
  --orange-500: #c8720a;
  --orange-600: #a85a06;

  /* Kein helles Rot – stattdessen ein dunkles Bernstein */
  --red-500: #b36200;

  /* Neutrals – Cremeweiß statt kaltem Grau */
  --gray-50:  #f8f5ef;
  --gray-100: #f0ebe0;
  --gray-200: #ddd5c4;
  --gray-600: #6b5e4a;
  --gray-700: #4a3e2e;
  --gray-900: #1a1208;

  /* Basis */
  --white: #fffdf8;
  --cream: #f5f0e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 25% 30%, rgba(180,140,80,0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(180,140,80,0.05) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.22  0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to right, var(--blue-900), var(--blue-800), var(--blue-700));
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--amber-400);
}

.navbar.scrolled {
  background: var(--blue-900);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(13,31,51,0.4);
  border-bottom: 2px solid var(--amber-400);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-body);
}

.nav-brand .highlight {
  background: linear-gradient(to right, var(--amber-300), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber-300);
}

.mobile-toggle {
  display: block;
  color: var(--white);
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--blue-900);
  border-top: 1px solid var(--amber-500);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--amber-300);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background-size: cover;
  /* Anker oben, damit der Kopf der Frau bei "cover"-Beschnitt nicht abgeschnitten wird */
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Auf schmalen Screens die rechte Bildseite (Frau) bevorzugen */
@media (max-width: 768px) {
  .hero {
    background-position: 75% top;
  }
}

/* Schaumkrone am unteren Hero-Rand */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0,60 L0,30 Q30,10 60,25 Q90,5 120,22 Q150,0 180,20 Q210,8 240,25 Q270,3 300,22 Q330,12 360,28 Q390,5 420,22 Q450,15 480,28 Q510,2 540,20 Q570,10 600,25 Q630,5 660,22 Q690,15 720,28 Q750,3 780,20 Q810,12 840,25 Q870,5 900,22 Q930,15 960,28 Q990,3 1020,20 Q1050,10 1080,25 Q1110,5 1140,22 Q1170,15 1200,30 L1200,60 Z' fill='%23f5f0e8'/></svg>");
  background-size: cover;
  background-position: bottom;
  z-index: 5;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,51,0.7) 0%, rgba(13,31,51,0.45) 40%, rgba(13,31,51,0.1) 70%, rgba(13,31,51,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(240,165,0,0.15);
  border: 1.5px solid var(--amber-400);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

/* Schimmernder Lichtstreif über Badge */
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,204,106,0.4), transparent);
  animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: normal;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.0;
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero h1 .blue { color: var(--amber-300); }

.hero h1 .gradient {
  background: linear-gradient(to right, var(--amber-300), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-subline .bold {
  font-weight: 700;
  color: var(--amber-300);
}

/* --- Buttons --- */
.btn-accent {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(180deg, var(--amber-300) 0%, var(--amber-400) 50%, var(--amber-500) 100%);
  color: var(--blue-900);
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow:
    0 6px 20px rgba(240,165,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(180,98,0,0.3);
  position: relative;
  overflow: hidden;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 10px 30px rgba(240,165,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(180,98,0,0.3);
}

.btn-accent:hover::before {
  left: 100%;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--amber-300);
  font-weight: 700;
  border-radius: 0.5rem;
  font-size: 1rem;
  border: 2px solid var(--amber-400);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: rgba(240,165,0,0.15);
  transform: scale(1.05);
}

/* --- Teaser Banner --- */
.teaser-banner {
  background: var(--blue-900);
  color: var(--amber-300);
  padding: 0.875rem;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--amber-400);
}

.teaser-scroll {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
  font-weight: 700;
  font-size: 1rem;
  width: max-content;
}

.teaser-scroll .teaser-item {
  padding-right: 4rem;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Styles --- */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--amber-400) 20%,
    var(--amber-300) 50%,
    var(--amber-400) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
  box-shadow: 0 0 12px rgba(240,165,0,0.4);
}

/* Dezenter goldener Glanz oben in jeder Section */
.section::after {
  content: '✦';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--amber-400);
  font-size: 14px;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .section-heading h2 { font-size: 3.75rem; }
}

.section-heading h2 .blue { color: var(--blue-700); }

.section-heading h2 .gradient {
  background: linear-gradient(to right, var(--amber-400), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.bg-blue-light { background: linear-gradient(to bottom, var(--cream), var(--blue-50)); }
.bg-white-blue { background: linear-gradient(to bottom, var(--blue-50), var(--cream)); }

/* --- Highlights Grid --- */
.highlights-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
}

.highlight-card {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(13,31,51,0.2),
    0 0 0 1px rgba(240,165,0,0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.highlight-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow:
    0 25px 60px rgba(13,31,51,0.35),
    0 0 0 1px rgba(240,165,0,0.4);
}

.highlight-card:nth-child(even):hover {
  transform: translateY(-10px) rotate(1deg);
}

/* Bild als Hintergrund - bedeckt die komplette Karte */
.highlight-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-card-bg {
  transform: scale(1.08);
}

/* Dunkler Verlauf für Lesbarkeit - unten dunkel, oben heller */
.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,31,51,0.15) 0%,
    rgba(13,31,51,0.45) 45%,
    rgba(13,31,51,0.95) 100%);
  pointer-events: none;
}

/* Textbereich unten links */
.highlight-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
  color: var(--white);
}

/* Kleines goldenes Label oben */
.highlight-card-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-300);
  margin-bottom: 0.75rem;
}

/* Goldene Akzentlinie */
.highlight-card-accent {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--amber-400);
  margin-bottom: 0.875rem;
  box-shadow: 0 0 8px rgba(240,165,0,0.5);
}

.highlight-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--white);
  letter-spacing: -0.015em;
}

.highlight-card-content p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* --- Tickets Section --- */
.ticket-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-radius: 1rem;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(13,31,51,0.3);
  margin-bottom: 4rem;
  border: 1px solid rgba(240,165,0,0.3);
}

.ticket-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.countdown {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.countdown-box {
  position: relative;
  background: linear-gradient(180deg, var(--amber-300) 0%, var(--amber-400) 50%, var(--amber-500) 100%);
  color: var(--blue-900);
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  min-width: 6.5rem;
  box-shadow:
    0 8px 30px rgba(240,165,0,0.45),
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(180,98,0,0.3);
  border: 1px solid rgba(180,98,0,0.4);
  overflow: hidden;
  transition: transform 0.3s;
}

/* Glasreflex auf Countdown-Box */
.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent);
  pointer-events: none;
}

.countdown-box:hover {
  transform: translateY(-3px);
}

.countdown-box .number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
  .countdown-box { min-width: 7.5rem; padding: 1.75rem 1.25rem; }
  .countdown-box .number { font-size: 3rem; }
}

/* --- FAQ Kategorie-Tabs --- */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.faq-tab {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--blue-200, #dbeafe);
  background: var(--white, #fff);
  color: var(--blue-900, #0d1f33);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.faq-tab:hover {
  border-color: var(--amber-400, #f0a500);
  color: var(--amber-600, #d97706);
}
.faq-tab.is-active {
  background: linear-gradient(135deg, #f0a500, #ea580c);
  color: #0d1f33;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(240,165,0,0.3);
}
.faq-tab.is-active:hover {
  color: #0d1f33;
}
.faq-category { display: block; }
.faq-category[hidden] { display: none; }

/* --- Ticket-Tage (Freitag / Samstag / Sonntag) --- */
.ticket-days-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ticket-days-grid { grid-template-columns: repeat(3, 1fr); }
}

.ticket-day {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.ticket-day:hover { background: rgba(255,255,255,0.12); }

.ticket-day-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.ticket-day-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ticket-day-btn--active {
  background: linear-gradient(135deg, #f0a500, #ea580c);
  color: #0d1f33;
  box-shadow: 0 4px 12px rgba(240,165,0,0.35);
}
.ticket-day-btn--active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(240,165,0,0.55);
}
.ticket-day-btn--free {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.35);
  cursor: default;
}
.ticket-day-btn--pending {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px dashed rgba(255,255,255,0.25);
  cursor: default;
  font-weight: 500;
}
.ticket-day-btn--disabled {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: not-allowed;
  font-weight: 500;
}

.countdown-box .label {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

/* Pulsierende Animation bei nahem Datum */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(240,165,0,0.45), inset 0 2px 4px rgba(255,255,255,0.4), inset 0 -2px 4px rgba(180,98,0,0.3); }
  50% { box-shadow: 0 8px 40px rgba(240,165,0,0.7), inset 0 2px 4px rgba(255,255,255,0.4), inset 0 -2px 4px rgba(180,98,0,0.3); }
}

.countdown-box {
  animation: pulse-glow 3s ease-in-out infinite;
}
.countdown-box:nth-child(2) { animation-delay: 0.4s; }
.countdown-box:nth-child(3) { animation-delay: 0.8s; }
.countdown-box:nth-child(4) { animation-delay: 1.2s; }

.ticket-info-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ticket-info-grid { grid-template-columns: repeat(2, 1fr); }
}

.ticket-info-card {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(13,31,51,0.08);
  border: 2px solid var(--blue-200);
}

.ticket-info-card.amber-border {
  border-color: var(--amber-400);
}

.ticket-info-card h3.blue { color: var(--blue-700); }
.ticket-info-card h3.amber { color: var(--amber-500); }

/* --- Cashless Section --- */
.payment-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
}

.payment-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13,31,51,0.07);
  border: 2px solid var(--blue-100);
  transition: all 0.3s;
}

.payment-card:hover {
  border-color: var(--amber-400);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(240,165,0,0.15);
}

.payment-card .icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-300);
}

.payment-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.sumup-box {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(13,31,51,0.08);
  border: 2px solid var(--blue-200);
  margin-bottom: 3rem;
}

.sumup-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-800);
  font-family: var(--font-body);
}

.sumup-features {
  background: var(--blue-50);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--blue-200);
  margin-top: 1.5rem;
}

.sumup-features li .check {
  color: var(--amber-500);
  font-weight: 700;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-900);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 0.8;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Firmen Section --- */
.firmen-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .firmen-grid { grid-template-columns: repeat(2, 1fr); }
}

.firmen-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.firmen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-300);
}

.benefit-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

/* --- Partner Marquee --- */
.partner-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--cream), var(--gray-50));
  overflow: hidden;
}

.partner-marquee {
  position: relative;
  width: 100%;
}

.partner-marquee::before,
.partner-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.partner-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-link {
  flex-shrink: 0;
  margin: 0 1.5rem;
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(13,31,51,0.07);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.partner-logo-link:hover {
  box-shadow: 0 8px 30px rgba(240,165,0,0.2);
  border-color: var(--amber-400);
}

.partner-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-logo-link:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Advertiser Teaser --- */
.advertiser-teaser {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.advertiser-teaser .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .advertiser-teaser .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.advertiser-teaser h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.advertiser-teaser p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--amber-500);
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  border: 2px solid var(--amber-400);
}

.btn-white:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* --- Anfahrt Section --- */
.transport-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .transport-grid { grid-template-columns: repeat(3, 1fr); }
}

.transport-card {
  border-radius: 1rem;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.transport-card.blue { background: linear-gradient(135deg, var(--blue-800), var(--blue-900)); }
.transport-card.amber { background: linear-gradient(135deg, var(--amber-400), var(--amber-500)); }
.transport-card.amber h3, .transport-card.amber p { color: var(--blue-900) !important; opacity: 1; }
.transport-card.orange { background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); }

.transport-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.transport-card p {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.location-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 1rem;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.location-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.location-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- FAQ Section --- */
.faq-item {
  border: 2px solid var(--blue-100);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--white);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--blue-600);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gray-900);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--amber-500);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.5rem;
  background: linear-gradient(to right, var(--blue-50), rgba(240,165,0,0.06));
  border-top: 1px solid var(--blue-200);
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(to bottom, var(--blue-900), #0d1f33, var(--blue-900));
  border-top: 3px solid var(--amber-400);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer h3 .highlight {
  background: linear-gradient(to right, var(--amber-300), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--amber-300);
  font-family: var(--font-body);
}

.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--amber-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bar {
  height: 4px;
  background: linear-gradient(to right, var(--blue-800), var(--amber-400), var(--blue-800));
}

/* --- Modal --- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 60;
}

.modal-backdrop.open {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 70;
  width: 90%;
  max-width: 40rem;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal.open {
  display: block;
}

.modal-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-bottom: 3px solid var(--amber-400);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.modal-close {
  color: var(--white);
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-body {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

/* --- Auswahl-Chips (Radios & Checkboxes im Job-Formular) --- */
.choice-grid {
  display: grid;
  gap: 0.5rem;
}
.choice-grid--2col { grid-template-columns: 1fr 1fr; }
.choice-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) {
  .choice-grid--2col,
  .choice-grid--3col { grid-template-columns: 1fr; }
}

.choice-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(37, 99, 235, 0.04);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  min-height: 2.5rem;
}
.choice-chip:hover {
  border-color: var(--amber-400);
  background: rgba(240, 165, 0, 0.05);
}
.choice-chip input[type="radio"],
.choice-chip input[type="checkbox"] {
  margin: 0;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--amber-500);
  cursor: pointer;
}
.choice-chip:has(input:checked) {
  background: rgba(240, 165, 0, 0.12);
  border-color: var(--amber-500);
  color: var(--blue-900);
  font-weight: 600;
}
.choice-grid[data-required-group].choice-grid--error {
  outline: 2px solid #dc2626;
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.form-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-bottom: 3px solid var(--amber-400);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-submit:hover {
  box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* --- SVG Icons (inline) --- */
.icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
