/* ============================================================
   BRAVO DIE HOCHZEITS-AUSGABE – 90s Magazine Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Anton&family=Comic+Neue:wght@400;700&family=Press+Start+2P&display=swap');

:root {
  --bravo-pink: #ff2d95;
  --bravo-yellow: #ffe600;
  --bravo-blue: #00a0e3;
  --bravo-red: #e30613;
  --bravo-orange: #ff6b00;
  --bg-dark: #0a1a4a;
  --bg-mid: #1a2a6c;
  --panel-bg: #0d1b4a;
  --menu-blue: #1e4a9e;
  --menu-blue-hover: #2a5fbf;
  --neon-green: #39ff14;
  --star-yellow: #ffee00;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #050e2e url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="10" cy="15" r="1.2" fill="%23ffffff22"/><circle cx="50" cy="40" r="0.8" fill="%23ffffff18"/><circle cx="30" cy="60" r="1" fill="%23ffffff15"/><circle cx="70" cy="20" r="0.7" fill="%23ffffff20"/></svg>');
  background-color: #050e2e;
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  min-height: 100vh;
}

a {
  color: #ffe600;
  text-decoration: none;
}
a:hover {
  color: #ff2d95;
  text-decoration: underline;
}

/* ========== TOP STATUS BAR ========== */
.topbar {
  background: #000;
  color: #0f0;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  padding: 4px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #333;
  letter-spacing: 0.5px;
}
.topbar .left { color: #0ff; }
.topbar .right { color: #ff0; }

/* ========== MAIN HEADER ========== */
.bravo-header {
  background: linear-gradient(180deg, #1a2a6c 0%, #0d1b4a 100%);
  border-bottom: 4px solid #ffe600;
  padding: 8px 12px 0;
  position: relative;
  overflow: hidden;
}

.bravo-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255,45,149,0.15), transparent 60%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* BRAVO LOGO (image) */
.bravo-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.15s;
}
.bravo-logo-link:hover {
  transform: scale(1.03);
  text-decoration: none;
}
.bravo-logo-img {
  height: clamp(56px, 9vw, 100px);
  width: auto;
  display: block;
  filter: drop-shadow(3px 3px 0 #000) drop-shadow(0 0 12px rgba(255,230,0,0.45));
}

.logo-block {
  text-align: center;
}

.logo-sub {
  background: linear-gradient(90deg, #ff2d95, #e30613);
  color: #fff;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  padding: 3px 16px;
  border-radius: 3px;
  margin-top: -4px;
  display: inline-block;
  border: 2px solid #fff;
  text-shadow: 1px 1px 0 #000;
  box-shadow: 0 3px 0 #000;
}

/* NAV */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  justify-content: center;
  margin-top: 8px;
  padding: 6px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.main-nav a {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffe600;
  text-transform: uppercase;
  padding: 2px 6px;
  transition: all 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #ff2d95;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  border-radius: 3px;
}

/* SONDERAUSGABE SPLASH */
.sonder-splash {
  position: relative;
  background: linear-gradient(145deg, #fff700 0%, #ffb000 40%, #ff5a00 100%);
  color: #000;
  font-family: 'Bangers', 'Comic Neue', cursive;
  text-align: center;
  padding: 20px 22px 18px;
  transform: rotate(5deg);
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 3px #000,
    5px 7px 0 #000,
    0 0 24px rgba(255,150,0,0.55);
  /* classic 8-point star / splash */
  clip-path: polygon(
    50% 0%, 61% 18%, 85% 10%, 75% 30%, 100% 40%, 78% 52%,
    92% 75%, 68% 70%, 60% 95%, 50% 78%, 40% 95%, 32% 70%,
    8% 75%, 22% 52%, 0% 40%, 25% 30%, 15% 10%, 39% 18%
  );
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
}
.sonder-splash .splash-text {
  font-size: 24px;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0 #fff, 1px 1px 0 #000, -1px -1px 0 #000;
  display: block;
  line-height: 1.1;
}
.sonder-splash .splash-sub {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 2px;
  background: #000;
  color: #ffe600;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  text-shadow: none;
}
.sonder-splash .splash-text {
  margin-bottom: 0;
}

/* ========== LAYOUT ========== */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
}

.main-grid {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .left-col {
    display: none !important; /* Cover + Menü + Guestbook nur Desktop */
  }
  .right-col {
    order: 2;
  }
  .center-col {
    order: 1;
    grid-column: 1 / -1 !important;
  }
  .page-wrap {
    padding: 10px;
  }
  .header-inner {
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    gap: 8px;
  }
  .logo-block {
    order: 1;
  }
  .sonder-splash {
    order: 2;
    width: 120px;
    height: 120px;
    transform: rotate(4deg) scale(0.85);
  }
  .sonder-splash .splash-text { font-size: 16px; }
  .sonder-splash .splash-sub { font-size: 11px; }
  .bravo-logo-img {
    height: clamp(48px, 14vw, 72px);
  }
  .topbar {
    font-size: 7px;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    text-align: center;
  }
  .content-page {
    padding: 16px 14px;
  }
  .content-page h1 {
    font-size: 28px;
    text-align: center;
  }
  .date-big {
    text-align: center;
  }
  .hero-block {
    border-width: 3px;
  }
  .page-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .page-nav .bravo-btn {
    text-align: center;
  }
  .map-embed iframe {
    height: 280px;
  }
  .countdown-box .cd-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========== LEFT COLUMN ========== */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mini Magazine Cover */
.mag-cover {
  background: linear-gradient(160deg, #2a1a4a, #0a1a3a);
  border: 3px solid #ffe600;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  position: relative;
}
.mag-cover img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.mag-cover .cover-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ff2d95;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid #fff;
  transform: rotate(-3deg);
}
.mag-cover .cover-title {
  background: #000;
  color: #ffe600;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 4px;
  letter-spacing: 1px;
}
.mag-cover .cover-sub {
  background: #1a2a6c;
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-size: 11px;
  text-align: center;
  padding: 3px 4px;
  line-height: 1.3;
}
.mag-cover .cover-date {
  background: #e30613;
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  padding: 3px;
}

/* Wedding Menu */
.wedding-menu {
  background: linear-gradient(180deg, #1e3a8a, #0f1f5a);
  border: 3px solid #00a0e3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
}
.wedding-menu h3 {
  background: linear-gradient(90deg, #00a0e3, #0066aa);
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  padding: 6px;
  border-bottom: 2px solid #ffe600;
  text-shadow: 1px 1px 0 #000;
}
.wedding-menu ul {
  list-style: none;
}
.wedding-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(90deg, transparent, rgba(0,160,227,0.15));
  transition: all 0.15s;
  text-decoration: none;
}
.wedding-menu li a:hover,
.wedding-menu li a.active {
  background: linear-gradient(90deg, #ff2d95, #e30613);
  color: #fff;
  padding-left: 14px;
  text-decoration: none;
}
.wedding-menu li a .icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
}

/* Guestbook CTA */
.guestbook-cta {
  background: linear-gradient(135deg, #ffe600, #ff9900);
  color: #000;
  border: 3px solid #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-family: 'Bangers', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  display: block;
  transition: transform 0.15s;
}
.guestbook-cta:hover {
  transform: scale(1.03) rotate(-1deg);
  color: #000;
  text-decoration: none;
}
.guestbook-cta span {
  display: block;
  font-size: 12px;
  font-family: 'Comic Neue', sans-serif;
  margin-top: 2px;
}

/* ========== CENTER COLUMN ========== */
.center-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-block {
  position: relative;
  border: 4px solid #ffe600;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 0 #000;
  background: #000;
}
.hero-block img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(5,14,46,0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  pointer-events: none;
}

.hero-headline {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #ffe600;
  text-shadow:
    3px 3px 0 #000,
    0 0 12px rgba(255,45,149,0.8);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-headline .exclaim {
  color: #ff2d95;
  font-size: 1.1em;
}

.hero-sub {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 8px;
}

.hero-names {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 0.9;
  color: #fff;
  text-shadow:
    4px 4px 0 #e30613,
    -2px -2px 0 #000;
  margin: 4px 0;
}
.hero-names .pink { color: #ff2d95; }
.hero-names .yellow { color: #ffe600; }

.hero-date {
  display: inline-block;
  background: #e30613;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 4px 14px;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #000;
  margin-top: 6px;
}

.hero-legend {
  font-family: 'Comic Neue', cursive;
  font-size: 14px;
  color: #ffe600;
  margin-top: 6px;
  text-shadow: 1px 1px 0 #000;
}

.exklusiv-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff2d95;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  padding: 3px 10px;
  border: 2px solid #fff;
  transform: rotate(-6deg);
  box-shadow: 2px 2px 0 #000;
  z-index: 2;
}

/* ========== RIGHT COLUMN ========== */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel {
  background: linear-gradient(180deg, #152a5c, #0a1535);
  border: 3px solid #00a0e3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
}
.panel-header {
  background: linear-gradient(90deg, #00a0e3, #0066cc);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 5px 8px;
  border-bottom: 2px solid #ffe600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.panel-body {
  padding: 8px;
  font-size: 12px;
}

/* News items */
.news-item {
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  color: #cce0ff;
  line-height: 1.35;
}
.news-item:last-child { border-bottom: none; }
.news-item strong {
  color: #ffe600;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
}
.news-item a {
  color: #ff2d95;
  font-size: 11px;
}

/* Top 10 */
.top10-list {
  list-style: none;
  counter-reset: hit;
}
.top10-list li {
  counter-increment: hit;
  padding: 4px 0 4px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #ddeeff;
  font-size: 12px;
}
.top10-list li::before {
  content: counter(hit, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  font-family: 'Anton', sans-serif;
  color: #ffe600;
  font-size: 13px;
}
.top10-list li:nth-child(1)::before,
.top10-list li:nth-child(2)::before,
.top10-list li:nth-child(3)::before {
  color: #ff2d95;
}
.top10-more {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 11px;
  color: #00a0e3;
  font-family: 'Anton', sans-serif;
}

/* Countdown – like screenshot: normal box + green 8-segment digits only */
.countdown-box {
  background: linear-gradient(180deg, #1a0a3a 0%, #0d0520 100%);
  border: 3px solid #c44dff;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  box-shadow: 4px 4px 0 #000, inset 0 0 20px rgba(196,77,255,0.15);
}
.countdown-box .cd-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #e0b0ff;
  margin-bottom: 8px;
}
.countdown-box .cd-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 6px 0;
}
.countdown-box .cd-label {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  color: #c9a0e8;
  letter-spacing: 1px;
}
.countdown-box .cd-label:first-child {
  margin-right: 2px;
}
.countdown-box .cd-label:last-of-type {
  margin-left: 2px;
}
.countdown-box .cd-digits {
  display: inline-flex;
  gap: 8px;
  background: #0a1510;
  padding: 12px 14px;
  border-radius: 4px;
  border: 2px solid #1a2e22;
  box-shadow: inset 0 0 14px rgba(0,0,0,0.65);
}

/* One digit = 7 LED bars */
.seg {
  position: relative;
  width: 32px;
  height: 56px;
}
.seg i {
  position: absolute;
  background: #152818;
  border-radius: 2px;
  opacity: 0.45;
  transition: none;
}
/* horizontal: a top, g mid, d bottom */
.seg .a { top: 0; left: 5px; right: 5px; height: 6px; width: auto; }
.seg .g { top: 25px; left: 5px; right: 5px; height: 6px; width: auto; }
.seg .d { bottom: 0; left: 5px; right: 5px; height: 6px; width: auto; }
/* vertical: f/b upper, e/c lower */
.seg .f { top: 5px; left: 0; width: 6px; height: 22px; }
.seg .b { top: 5px; right: 0; left: auto; width: 6px; height: 22px; }
.seg .e { bottom: 5px; left: 0; width: 6px; height: 22px; }
.seg .c { bottom: 5px; right: 0; left: auto; width: 6px; height: 22px; }

/* Lit segments – real green LED look */
.seg i.on {
  opacity: 1;
  background: #3dff6a;
  box-shadow:
    0 0 4px #3dff6a,
    0 0 10px rgba(61,255,106,0.85),
    0 0 18px rgba(61,255,106,0.45);
}

.countdown-box .cd-sub {
  font-family: 'Comic Neue', cursive;
  font-size: 12px;
  color: #b88ad4;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ========== BOTTOM TILES ========== */
.bottom-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 800px) {
  .bottom-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tile {
  background: linear-gradient(160deg, #1a2a6c, #0a1535);
  border: 3px solid #ffe600;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 #000;
  text-decoration: none;
  color: #fff;
}
.tile-img {
  height: 70px;
  background: #000 center/cover no-repeat;
  position: relative;
}
.tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.tile-body {
  padding: 8px;
  text-align: center;
}
.tile-title {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffe600;
  margin-bottom: 2px;
}
.tile-desc {
  font-size: 11px;
  color: #aaccff;
  line-height: 1.3;
}
.tile-link {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #ff2d95;
  font-family: 'Anton', sans-serif;
}

/* ========== FOOTER ========== */
.bravo-footer {
  background: #000;
  border-top: 3px solid #ffe600;
  margin-top: 20px;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #888;
}
.bravo-footer .logo-mini {
  font-family: 'Bangers', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}
.bravo-footer .logo-mini span:nth-child(1) { color: #ff2d95; }
.bravo-footer .logo-mini span:nth-child(2) { color: #ffe600; }
.bravo-footer .logo-mini span:nth-child(3) { color: #00a0e3; }
.bravo-footer .logo-mini span:nth-child(4) { color: #e30613; }
.bravo-footer .logo-mini span:nth-child(5) { color: #ffe600; }
.bravo-footer nav a {
  color: #aaa;
  margin: 0 6px;
  font-size: 11px;
}
.bravo-footer nav a:hover { color: #ffe600; }
.bravo-footer .made {
  color: #ff2d95;
}

/* ========== CONTENT PAGES ========== */
.content-page {
  background: linear-gradient(180deg, #152a5c, #0a1535);
  border: 3px solid #00a0e3;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 4px 4px 0 #000;
  min-height: 400px;
}
.content-page h1 {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 36px;
  color: #ffe600;
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 8px;
  line-height: 1;
}
.content-page h2 {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: #ff2d95;
  letter-spacing: 1px;
  margin: 18px 0 8px;
  border-bottom: 2px solid #ffe600;
  padding-bottom: 4px;
}
.content-page p {
  margin-bottom: 12px;
  color: #cce0ff;
  line-height: 1.55;
}
.content-page ul, .content-page ol {
  margin: 10px 0 14px 22px;
  color: #cce0ff;
}
.content-page li {
  margin-bottom: 6px;
}
.content-page .highlight-box {
  background: rgba(255,45,149,0.15);
  border: 2px solid #ff2d95;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0;
}
.content-page .date-big {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: #e30613;
  text-shadow: 2px 2px 0 #000;
}

/* Forms */
.bravo-form label {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  color: #ffe600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.bravo-form input[type="text"],
.bravo-form input[type="email"],
.bravo-form input[type="password"],
.bravo-form textarea,
.bravo-form select {
  width: 100%;
  padding: 8px 10px;
  background: #0a1535;
  border: 2px solid #00a0e3;
  border-radius: 4px;
  color: #fff;
  font-family: 'Comic Neue', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
}
.bravo-form input:focus,
.bravo-form textarea:focus {
  outline: none;
  border-color: #ffe600;
  box-shadow: 0 0 8px rgba(255,230,0,0.4);
}
.bravo-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff2d95, #c01060);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.bravo-btn:hover {
  background: linear-gradient(180deg, #ffe600, #ff9900);
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
}
.bravo-btn.secondary {
  background: linear-gradient(180deg, #00a0e3, #0066aa);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.gallery-item {
  border: 2px solid #ffe600;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mb-2 { margin-bottom: 8px; }
.blink {
  animation: blink 1.2s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Marquee like */
.marquee-bar {
  background: #e30613;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 4px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-bar span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Hide old main-nav (no longer used) */
.main-nav { display: none !important; }

/* Admin link under left menu */
.admin-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  background: #111;
  border: 2px dashed #666;
  border-radius: 6px;
  color: #aaa;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.15s;
}
.admin-link:hover {
  border-color: #ffe600;
  color: #ffe600;
  text-decoration: none;
  background: #1a1a00;
}

/* Page navigation buttons at bottom */
.page-nav {
  max-width: 1200px;
  margin: 20px auto 10px;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Bottom tiles removed – hide if any leftover */
.bottom-tiles { display: none !important; }

/* Upload page integration helpers */
.upload-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.upload-wrap .drop-zone {
  border: 3px dashed #00a0e3;
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  background: rgba(0,160,227,0.08);
  cursor: pointer;
  transition: all 0.15s;
}
.upload-wrap .drop-zone:hover,
.upload-wrap .drop-zone.dragover {
  border-color: #ffe600;
  background: rgba(255,230,0,0.1);
}
.upload-wrap input[type="file"] { display: none; }

/* Shake on hover for CTA buttons */
.shake-hover {
  animation: none;
}
.shake-hover:hover {
  animation: shake 0.5s ease-in-out;
  text-decoration: none;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px) rotate(-2deg); }
  30% { transform: translateX(5px) rotate(2deg); }
  45% { transform: translateX(-4px) rotate(-1deg); }
  60% { transform: translateX(3px) rotate(1deg); }
  75% { transform: translateX(-2px); }
}

/* Google Maps embed */
.map-embed {
  margin: 16px 0 20px;
  border: 3px solid #ffe600;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  background: #000;
}
.map-embed iframe {
  max-width: 100%;
  vertical-align: top;
}


/* ===== Hamburger (mobile only) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: linear-gradient(180deg, #ff2d95, #c01060);
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 0 #000;
  cursor: pointer;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile slide-in menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 90;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: linear-gradient(180deg, #1e3a8a, #0a1535);
  border-right: 3px solid #ffe600;
  z-index: 100;
  overflow-y: auto;
  box-shadow: 6px 0 24px rgba(0,0,0,0.5);
  transform: translateX(-105%);
  transition: transform 0.25s ease;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(90deg, #00a0e3, #0066aa);
  border-bottom: 2px solid #ffe600;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav li a:hover,
.mobile-nav li a.active {
  background: linear-gradient(90deg, #ff2d95, #e30613);
  color: #fff;
  text-decoration: none;
}
.mobile-nav li a .icon {
  font-size: 18px;
  width: 26px;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .mobile-nav-overlay[hidden],
  .mobile-nav[hidden] {
    display: none !important;
  }
  .mobile-nav-overlay:not([hidden]) {
    display: block;
  }
  .mobile-nav:not([hidden]) {
    display: block;
  }
  .admin-link {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .hamburger,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* Parking thumbnail + lightbox */
.parking-preview {
  margin: 14px 0 20px;
  text-align: center;
}
.parking-thumb {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 3px solid #ffe600;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #000;
  cursor: zoom-in;
  display: inline-block;
  transition: transform 0.15s;
}
.parking-thumb:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: zoom-out;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox-img {
  max-width: min(960px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 3px solid #ffe600;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  cursor: zoom-out;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #ff2d95;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 2px 2px 0 #000;
  z-index: 201;
}
.lightbox-close:hover {
  background: #ffe600;
  color: #000;
}

/* ========== 56k DIAL-UP INTRO ========== */
.dialup-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0000aa;
  font-family: 'Courier New', Courier, monospace;
  color: #fff;
  overflow: hidden;
}
.dialup-intro[hidden] {
  display: none !important;
}

.dialup-screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2;
  transition: opacity 0.3s;
}

/* Win95-style window */
.dialup-window {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #000 #000 #fff;
  box-shadow: 2px 2px 0 #000;
  width: min(420px, 94vw);
  color: #000;
  font-family: 'MS Sans Serif', 'Segoe UI', Tahoma, sans-serif;
  font-size: 12px;
}
.dialup-titlebar {
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #fff;
  padding: 3px 4px 3px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 12px;
  user-select: none;
}
.dialup-winbtns {
  display: flex;
  gap: 2px;
  align-items: center;
}
/* Classic Windows 95 titlebar buttons */
.dwb {
  position: relative;
  width: 16px;
  height: 14px;
  background: #c0c0c0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
  color: #000;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}
/* Minimize – thick dash at bottom */
.dwb-min::after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 2px;
  background: #000;
}
/* Maximize – single square outline */
.dwb-max::after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  top: 2px;
  bottom: 3px;
  border: 1px solid #000;
  border-top-width: 2px;
  box-sizing: border-box;
}
/* Close – X made of two rotated bars */
.dwb-close::before,
.dwb-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  background: #000;
}
.dwb-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.dwb-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.dialup-body {
  padding: 14px 16px 12px;
}
.dialup-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.dialup-modem {
  width: 110px;
  height: auto;
  flex-shrink: 0;
  image-rendering: auto;
  background: #000;
  border: 1px solid #808080;
}
.dialup-heading {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  color: #000;
}
.dialup-sub {
  color: #333;
  margin-bottom: 10px;
  font-size: 11px;
}
.dialup-status {
  min-height: 2.6em;
  color: #000080;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  white-space: pre-wrap;
}
.dialup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.dialup-btn {
  min-width: 100px;
  padding: 4px 16px;
  font-family: 'MS Sans Serif', Tahoma, sans-serif;
  font-size: 12px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #000 #000 #fff;
  box-shadow: none;
  cursor: pointer;
  color: #000;
}
.dialup-btn:active,
.dialup-btn.is-active {
  border-color: #000 #fff #fff #000;
}
.dialup-btn:focus {
  outline: 1px dotted #000;
  outline-offset: -4px;
}
.dialup-btn:disabled {
  color: #808080;
  cursor: default;
}
.dialup-btn-skip {
  min-width: 90px;
}
.dialup-hint {
  text-align: center;
  color: #444;
  font-size: 10px;
  margin-top: 4px;
}

/* Mosaic tiles over the blue screen */
.dialup-mosaic {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  pointer-events: none;
  opacity: 0;
}
.dialup-mosaic.is-on {
  opacity: 1;
}
.dialup-mosaic .tile {
  background: #0000aa;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.dialup-mosaic .tile.off {
  opacity: 0;
  transform: scale(0.85);
}

@media (max-width: 480px) {
  .dialup-modem { width: 80px; }
  .dialup-row { flex-direction: column; align-items: center; text-align: center; }
  .dialup-status { text-align: left; }
}

/* Gallery toggle + lightbox items as buttons */
.gallery-toggle {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-toggle .gallery-chevron {
  font-size: 14px;
  transition: transform 0.2s;
  color: #ffe600;
}
.gallery-toggle.is-open .gallery-chevron {
  transform: rotate(180deg);
}
.gallery-toggle:hover {
  color: #ff2d95;
}
.gallery-panel[hidden] {
  display: none !important;
}
button.gallery-item {
  border: 2px solid #ffe600;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
}
button.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
button.gallery-item:hover img {
  transform: scale(1.08);
}
.lightbox-content {
  max-width: min(960px, 96vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content .lightbox-img,
.lightbox-content video.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 3px solid #ffe600;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Browser: Originalbilder mit EXIF-Orientierung anzeigen */
.gallery-item img,
.lightbox-content img,
.admin-card .media img {
  image-orientation: from-image;
}

