/* ==========================================================================
   Impfinger Musikanten e.V. - Offizielle Stylesheet-Datei (Dark Festzelt Edition)
   100% DSGVO-konform, blitzschnell und schlank
   ========================================================================== */
@import url('fonts.css');

:root {
  --bg-primary: #0b1120;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.8);
  --border-color: rgba(59, 130, 246, 0.25);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --theme-blue: #3b82f6;
  --theme-blue-light: #60a5fa;
  --theme-blue-dark: #1d4ed8;
  --theme-cyan: #38bdf8;
  --theme-glow: rgba(59, 130, 246, 0.4);
  --accent-red: #ef4444;
  --accent-green: #10b981;
}
/* Section Background Alternation */
/* Light Theme Badges */
/* ==========================================================================
   BASE & COMMON STYLES
   ========================================================================== */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}
/* Geradlinige, urige Festzelt-Schrift: Rye (Bayerischer Brauhaus- & Fass-Charakter mit optimaler Lesbarkeit) */
.font-oktoberfest,
.font-rye {
  font-family: 'Rye', serif !important;
  letter-spacing: 0.02em;
  font-weight: 400;
}
/* Glassmorphism Effect */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-panel-hover:hover {
  transform: translateY(-4px);
  border-color: var(--theme-blue-light);
  box-shadow: 0 12px 40px 0 var(--theme-glow);
}
/* Royal Blue Gradient Text */
.text-blue-gradient {
  background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-blue-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
}
.bg-blue-gradient-hover:hover {
  background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 50%, #2563eb 100%);
}
/* Glowing Elements */
.glow-blue {
  box-shadow: 0 0 25px var(--theme-glow);
}
.glow-blue-sm {
  box-shadow: 0 0 14px var(--theme-glow);
}
/* Hero Canvas Background */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* Audio Wave Visualizer Bars */
.wave-bar {
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: var(--theme-blue-light);
  border-radius: 2px;
  margin: 0 2px;
  animation: soundWave 1.2s infinite ease-in-out;
}
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; }
.wave-bar:nth-child(3) { animation-delay: 0.5s; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
@keyframes soundWave {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}
.paused .wave-bar {
  animation-play-state: paused;
  height: 6px !important;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-blue);
}
/* Pulse animation for live indicators */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.animate-pulse-ring {
  animation: pulse-ring 2s infinite ease-in-out;
}
/* Tab Active State */
.tab-btn.active {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--theme-glow);
}
/* Modal styling */
.modal-backdrop {
  background-color: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(8px);
}
/* Floating animation for logo icon */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}
/* Breathing Pulse Glow Animation for Jubilee Tag */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.35), 0 0 16px rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.85), 0 0 40px rgba(37, 99, 235, 0.6);
    border-color: rgba(96, 165, 250, 0.95);
  }
}
.glow-pulse-blue {
  animation: pulseGlow 3s ease-in-out infinite;
}
/* Interactive Logo Scroll Button Styling */
.logo-scroll-btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-scroll-btn:hover {
  transform: translateY(-4px) scale(1.02);
}
.logo-scroll-btn .logo-img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.logo-scroll-btn:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.95));
}
/* ==========================================================================
   HEADER NAVIGATION (EXAKT WIE VISION 2.0 UNTERE NAVIGATIONSLEISTE / DOCK)
   Gleiche Farbe, gleicher Hover- & Scrollover-Effekt
   ========================================================================== */
.nav-link-v1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 9px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #d1bba4;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  z-index: 1;
}
@media (min-width: 1280px) and (max-width: 1535px) {
  .nav-link-v1 {
    gap: 3.5px;
    padding: 5px 8px;
    font-size: 11.5px;
  }
}
@media (min-width: 1536px) {
  .nav-link-v1 {
    gap: 5px;
    padding: 6px 11px;
    font-size: 12px;
  }
}
.nav-link-v1 span {
  position: relative;
  z-index: 2;
  transition: color 0.22s ease;
}
/* Hover & Scrollover / Active: Weiße Wörter, Königsblauer Rahmen & Königsblauer Glue-Effekt */
.nav-link-v1:hover,
.nav-link-v1.nav-active,
.nav-link-v1[data-fill="100"].nav-active {
  color: #ffffff !important;
  background: rgba(30, 58, 138, 0.4) !important;
  border: 1px solid #2563eb !important; /* Königsblauer Rahmen */
  box-shadow: 
    0 0 18px rgba(37, 99, 235, 0.85),
    0 0 8px rgba(96, 165, 250, 0.6),
    inset 0 0 10px rgba(37, 99, 235, 0.3) !important; /* Königsblauer Glue / Glow Effekt */
}
.nav-link-v1:hover span,
.nav-link-v1.nav-active span,
.nav-link-v1[data-fill="100"].nav-active span {
  color: #ffffff !important; /* Weiße Wörter */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.nav-link-v1:hover [data-lucide],
.nav-link-v1:hover i,
.nav-link-v1.nav-active [data-lucide],
.nav-link-v1.nav-active i {
  color: #ffffff !important;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) !important;
}
/* SVG-Rahmen deaktivieren zugunsten des sauberen V2-Pill-Designs */
.nav-border-svg {
  display: none !important;
}
/* Mobile Drawer Links & Active State: Weiße Wörter & Königsblau-Glue */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.nav-active {
  background: rgba(30, 58, 138, 0.4) !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.7) !important;
  font-weight: 800 !important;
}
.mobile-nav-link:hover span,
.mobile-nav-link.nav-active span {
  color: #ffffff !important;
}
.mobile-nav-link:hover [data-lucide],
.mobile-nav-link.nav-active [data-lucide] {
  color: #ffffff !important;
}
/* Subtiler Lade-/Fortschrittsbalken an der Unterkante des Headers mit Gold-Finish */
#header-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #f59e0b 100%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.85);
  transition: width 0.1s ease-out;
  pointer-events: none;
  z-index: 60;
}
/* ==========================================================================
   FESTZELT GOLDEN SUNSET - RUSTIKALES HOLZ, LICHTERKETTEN & WARMES GOLD
   ========================================================================== */
/* Warmes Holz & Festzelt Farbvariablen (Dark Mode Default) */
:root {
  --wood-dark-base: #140d07;
  --wood-surface: #1e130a;
  --wood-card-bg: rgba(34, 20, 12, 0.86);
  --festzelt-gold: #f59e0b;
  --festzelt-amber: #fbbf24;
  --festzelt-brass-border: rgba(245, 158, 11, 0.35);
  --festzelt-glow: rgba(245, 158, 11, 0.45);
}
/* Base Body Wood Texture (ca. 10 % freundlicher & heller: warmer dunkler Eichenholz-Ton mit sanfter Tiefe) */
body {
  background-color: #281a10;
  background-image: 
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(245, 158, 11, 0.22), transparent),
    radial-gradient(ellipse 70% 50% at 85% 55%, rgba(37, 99, 235, 0.16), transparent),
    radial-gradient(ellipse 70% 50% at 15% 75%, rgba(245, 158, 11, 0.14), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 80px);
}
/* Polished Dark Rustic Oak Wood Header Beam */
/* Polished Warm Oak Wood Header Beam */
.wood-beam-header {
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 100% 100% no-repeat !important;
  border-bottom: 2px solid #5a3518 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
}
/* Neue Holzstruktur fuer Header (Startseite & Subpages) */
.header-wood-new {
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 100% 100% no-repeat !important;
  border-bottom: 2px solid #5a3518 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
}
/* Rustic Wood Cards with Brass Frame & Warm Glowing Wood Grain (wie Countdown-Box) */
.wood-card {
  position: relative;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.55) !important;
  box-shadow: 
    0 14px 36px -4px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wood-card:hover {
  border-color: #3b82f6 !important;
  box-shadow: 
    0 22px 55px -6px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(37, 99, 235, 0.85),
    0 0 16px rgba(59, 130, 246, 0.7),
    inset 0 0 18px rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-4px) !important;
}
/* Lichterkette (Festoon String Lights am oberen Festzeltrand) */
.festoon-string {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 15;
  overflow: visible;
}
.bulb-glow {
  filter: drop-shadow(0 0 6px #fef08a) drop-shadow(0 0 16px rgba(245, 158, 11, 0.85));
  animation: festoonPulse 3.5s ease-in-out infinite alternate;
}
.festoon-bulb:nth-child(2n) .bulb-glow {
  animation-delay: 0.8s;
}
.festoon-bulb:nth-child(3n) .bulb-glow {
  animation-delay: 1.6s;
}
.festoon-bulb:nth-child(5n) .bulb-glow {
  animation-delay: 2.4s;
}
@keyframes festoonPulse {
  0% {
    filter: drop-shadow(0 0 5px #facc15) drop-shadow(0 0 12px rgba(245, 158, 11, 0.65));
    opacity: 0.85;
  }
  100% {
    filter: drop-shadow(0 0 10px #fef08a) drop-shadow(0 0 22px rgba(245, 158, 11, 0.95));
    opacity: 1;
  }
}
/* Softer Farbverlauf von Links (Weiß) nach Rechts (Königsblau) mit Puffer für Buchstaben-Unterlängen */
.gradient-white-royal {
  background: linear-gradient(90deg, #ffffff 0%, #e2eeff 25%, #93c5fd 55%, #3b82f6 82%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.28em;
  margin-bottom: -0.28em;
  overflow: visible;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75));
}
/* Light Theme Anpassung für Wood & Festzelt */
/* Harmonische Festzelt-Glass-Panels mit warmem Holz-Hintergrund (wie Countdown-Box & Header) */
.glass-panel {
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(251, 191, 36, 0.55);
  box-shadow: 0 14px 36px -4px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(251, 191, 36, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-panel:hover {
  border-color: #3b82f6;
}
/* Dunkles Rustikales Holz für Sektions-Hintergründe im Dark Mode */
.bg-slate-950,
.bg-slate-950\/90,
.bg-slate-950\/85,
.bg-slate-950\/80,
.bg-slate-950\/70 {
  background-color: rgba(20, 13, 7, 0.92) !important;
}
.bg-slate-900,
.bg-slate-900\/90,
.bg-slate-900\/80,
.bg-slate-900\/60,
.bg-slate-900\/40 {
  background-color: rgba(28, 17, 10, 0.88) !important;
}
.border-blue-500\/20,
.border-blue-500\/30,
.border-blue-500\/40 {
  border-color: rgba(245, 158, 11, 0.28) !important;
}
.glow-blue,
.glow-blue-sm {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25) !important;
}
.glow-pulse-blue {
  animation: festzeltGlowPulse 3s ease-in-out infinite alternate;
}
@keyframes festzeltGlowPulse {
  0% {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
  }
  100% {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.65);
  }
}
/* ==========================================================================
   Top Announcement Banner Styling
   ========================================================================== */
#site-announcement-bar {
  background: linear-gradient(90deg, #180f08 0%, #2b180d 50%, #180f08 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
/* ==========================================================================
   Section Divider Buttons (Zwischenbuttons zwischen allen Sektionen)
   Königsblauer Scrollover Glue- & Glow-Effekt
   ========================================================================== */
.section-divider-btn {
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translate(-50%, 50%) !important;
  z-index: 35 !important;
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(10, 15, 30, 0.95) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.45) !important;
  box-shadow: 
    0 10px 25px -4px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

/* Scrollover / Hover Effekt: Strahlendes Königsblau mit tiefem Glue- & Glow-Effekt */
.section-divider-btn:hover {
  border-color: #2563eb !important; /* Königsblau */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 58, 138, 0.45) 100%) !important;
  box-shadow: 
    0 22px 50px -4px rgba(0, 0, 0, 0.9),
    0 0 35px rgba(37, 99, 235, 0.9),
    0 0 18px rgba(59, 130, 246, 0.75),
    inset 0 0 16px rgba(37, 99, 235, 0.35) !important; /* Königsblauer Glue-Effekt */
  transform: translate(-50%, 50%) scale(1.08) translateY(-2px) !important;
}

.section-divider-btn:hover span {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(96, 165, 250, 0.9) !important;
}

.section-divider-btn:hover img {
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.95)) !important;
  transform: scale(1.06) !important;
}

.section-divider-btn:hover i,
.section-divider-btn:hover svg {
  color: #60a5fa !important;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.8)) !important;
}

.section-divider-btn:active {
  transform: translate(-50%, 50%) scale(1.02) !important;
}
/* Traditionelle Festzelt- & Blasmusik-Schriftart */
.font-blasmusik,
.font-volksfest {
  font-family: 'Germania One', 'Rye', serif !important;
  letter-spacing: 0.03em;
}
/* Farbverlauf von Weiß über Königsblau nach Gold (mit Schutz gegen Unterlängen-Abschneidung) */
.gradient-white-blue-gold {
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 25%, #2563eb 50%, #f59e0b 78%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.28em;
  margin-bottom: -0.28em;
  overflow: visible;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
}
/* Farbverlauf: Links Hellgelb -> Mitte Dunkleres Gelb/Gold -> Rechts Königsblau */
.gradient-yellow-gold-royal {
  background: linear-gradient(90deg, #fef08a 0%, #facc15 28%, #f59e0b 52%, #3b82f6 78%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  padding-bottom: 0.3em;
  margin-bottom: -0.3em;
  overflow: visible;
}
/* ==========================================================================
   Königsblaue Sektionstrennlinie (Glanz- & Glow-Effekt über die gesamte Breite)
   ========================================================================== */
.section-seam-blue {
  position: relative !important;
  width: 100% !important;
  height: 2px !important;
  z-index: 20 !important;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.75) 50%, transparent 100%) !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.85), 0 0 6px rgba(96, 165, 250, 0.6) !important;
}

/* ==========================================================================
   Mobile Optimierung: Ruhiges, flüssiges Scrollen auf Touchgeräten (< 768px)
   ========================================================================== */
@media (max-width: 767px) {
  /* 1. Blauen verzögerten Scroll-Fortschrittsbalken mobil ausblenden (beseitigt Timing-Verzögerung) */
  #header-scroll-progress {
    display: none !important;
  }

  /* 2. Große Zwischen-Buttons auf Touchgeräten ausblenden (verhindert versehentliche Sprünge beim Wischen) */
  .section-divider-btn {
    display: none !important;
  }

  /* 3. Ruhige, dezente Glanz-Trennlinie beibehalten */
  .section-seam-blue {
    margin: 0.5rem 0 !important;
    opacity: 0.75 !important;
  }
}

/* ==========================================================================
   Hero Action Buttons Duo (Konzept A: Königsblau & Dunkles Eichenholz)
   Button 1 (Primary / Fokus): "Auftritt anfragen" - Sattes Königsblau mit Goldrahmen
   Button 2 (Secondary): "Nächste Live-Auftritte" - Dunkles Eichenholz mit Goldrahmen
   ========================================================================== */

/* Button 1: Auftritt anfragen (Primary CTA - Basis: Eichenholz & Goldrand, Rollover/Hover: Strahlendes Königsblau) */
.hero-cta-primary {
  position: relative !important;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 800px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.65) !important; /* Polierter Messing-/Goldrand */
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 
    0 8px 24px -3px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-cta-primary span {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.hero-cta-primary:hover {
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.88) 0%, rgba(37, 99, 235, 0.78) 50%, rgba(30, 58, 138, 0.90) 100%),
    url('Bilder/header_wood_texture.png') center center / 800px 100% no-repeat !important;
  border-color: #fde047 !important; /* Strahlender Goldglanz */
  box-shadow: 
    0 16px 36px -4px rgba(37, 99, 235, 0.75),
    0 0 32px rgba(59, 130, 246, 0.85),
    0 0 14px rgba(251, 191, 36, 0.5),
    inset 0 0 16px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) scale(1.03) !important;
}

.hero-cta-primary:active {
  transform: translateY(-1px) scale(0.99) !important;
}

/* Button 2: Nächste Live-Auftritte (Secondary CTA - Dunkles Eichenholz & Goldrahmen) */
.hero-cta-secondary {
  position: relative !important;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 800px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.6) !important; /* Schmaler Goldrahmen */
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 
    0 8px 24px -3px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-cta-secondary span {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.hero-cta-secondary:hover {
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.88) 0%, rgba(37, 99, 235, 0.78) 50%, rgba(30, 58, 138, 0.90) 100%),
    url('Bilder/header_wood_texture.png') center center / 800px 100% no-repeat !important;
  border-color: #fde047 !important; /* Strahlender Goldglanz */
  box-shadow: 
    0 16px 36px -4px rgba(37, 99, 235, 0.75),
    0 0 32px rgba(59, 130, 246, 0.85),
    0 0 14px rgba(251, 191, 36, 0.5),
    inset 0 0 16px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) scale(1.03) !important;
}

.hero-cta-secondary:active {
  transform: translateY(-1px) scale(0.99) !important;
}

/* ==========================================================================
   Header Festzelt-Tusch Button (Kompakter Sound-Button im Header)
   ========================================================================== */
.header-tusch-btn {
  position: relative !important;
  background: 
    linear-gradient(135deg, rgba(35, 20, 10, 0.75) 0%, rgba(20, 12, 6, 0.9) 100%),
    url('Bilder/header_wood_texture.png') center / cover !important;
  border: 1.2px solid rgba(251, 191, 36, 0.5) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-tusch-btn:hover {
  border-color: #fbbf24 !important;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4), 0 0 14px rgba(245, 158, 11, 0.35) !important;
  transform: translateY(-1px) scale(1.04) !important;
}

.header-tusch-btn.is-playing {
  border-color: #f59e0b !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6) !important;
  animation: pulse-glow 1.5s infinite;
}

/* ==========================================================================
   Header CTA Button: "Auftritt Buchen" im königsblauen Holz-Look mit Goldrand
   Identisch zur Designsprache des Hero-Buttons "Auftritt anfragen"
   ========================================================================== */
.header-cta-blue-wood {
  position: relative !important;
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.82) 0%, rgba(37, 99, 235, 0.72) 50%, rgba(30, 58, 138, 0.85) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.65) !important; /* Polierter Messing-/Goldrand */
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 
    0 6px 18px -2px rgba(37, 99, 235, 0.45),
    0 0 14px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-cta-blue-wood span {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.header-cta-blue-wood:hover {
  background: 
    linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(29, 78, 216, 0.9) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #fde047 !important; /* Feiner Goldglanz */
  box-shadow: 
    0 10px 24px -2px rgba(37, 99, 235, 0.7),
    0 0 26px rgba(59, 130, 246, 0.8),
    0 0 12px rgba(251, 191, 36, 0.5),
    inset 0 0 12px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) scale(1.03) !important;
}

/* ==========================================================================
   Footer Action Buttons: Kompakt & harmonisch in die Footer-Spalte eingepasst
   ========================================================================== */
.footer-btn-primary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.625rem !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.85) 0%, rgba(37, 99, 235, 0.75) 50%, rgba(30, 58, 138, 0.9) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border: 1px solid rgba(251, 191, 36, 0.55) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.footer-btn-primary:hover {
  background: 
    linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.85) 50%, rgba(29, 78, 216, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #fde047 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #ffffff !important;
}

.footer-btn-secondary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.625rem !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: 
    linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(4, 120, 87, 0.75) 50%, rgba(6, 95, 70, 0.9) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border: 1px solid rgba(52, 211, 153, 0.5) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.footer-btn-secondary:hover {
  background: 
    linear-gradient(135deg, rgba(4, 120, 87, 0.95) 0%, rgba(16, 185, 129, 0.85) 50%, rgba(5, 150, 105, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #6ee7b7 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   Chronik & Box Action Buttons: Footer-Design & Hover-Effekt in voller Größe
   ========================================================================== */
.cta-wood-btn-green {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.875rem 1.75rem !important;
  border-radius: 0.875rem !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: 
    linear-gradient(135deg, rgba(6, 78, 59, 0.88) 0%, rgba(4, 120, 87, 0.78) 50%, rgba(6, 95, 70, 0.92) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border: 1.5px solid rgba(52, 211, 153, 0.6) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.cta-wood-btn-green:hover {
  background: 
    linear-gradient(135deg, rgba(4, 120, 87, 0.95) 0%, rgba(16, 185, 129, 0.85) 50%, rgba(5, 150, 105, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #6ee7b7 !important;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45), 0 0 14px rgba(52, 211, 153, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) scale(1.02) !important;
  color: #ffffff !important;
}

.cta-wood-btn-green:active {
  transform: translateY(0) scale(0.99) !important;
}

.cta-wood-btn-blue {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.875rem 1.75rem !important;
  border-radius: 0.875rem !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.88) 0%, rgba(37, 99, 235, 0.78) 50%, rgba(30, 58, 138, 0.92) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.65) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.cta-wood-btn-blue:hover {
  background: 
    linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.85) 50%, rgba(29, 78, 216, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #fde047 !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5), 0 0 14px rgba(251, 191, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) scale(1.02) !important;
  color: #ffffff !important;
}

.cta-wood-btn-blue:active {
  transform: translateY(0) scale(0.99) !important;
}

/* ==========================================================================
   Button Glow-Effekt: Königsblauer Glüh-Rahmen bei Hover (Scrollover)
   ========================================================================== */
.btn-glow-blue {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-glow-blue:hover {
  border-color: #3b82f6 !important;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.65), 0 0 8px rgba(37, 99, 235, 0.85), inset 0 0 12px rgba(59, 130, 246, 0.2) !important;
  transform: translateY(-2px) scale(1.02) !important;
  color: #ffffff !important;
}

.btn-glow-blue:hover i {
  color: #93c5fd !important;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.9));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.btn-glow-blue:active {
  transform: translateY(0) scale(0.99) !important;
}

/* ==========================================================================
   Download & Tool Buttons (Harmonisierte Königsblau- & Glas-Stile)
   ========================================================================== */
.btn-download {
  position: relative !important;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.45) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.btn-download:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
  border-color: #60a5fa !important;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.65), 0 4px 14px rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-1.5px) !important;
}

.btn-download:hover i {
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.btn-download:active {
  transform: translateY(0) !important;
}

.btn-copy-tool {
  position: relative !important;
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.btn-copy-tool:hover {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border-color: #60a5fa !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.5), inset 0 0 10px rgba(59, 130, 246, 0.15) !important;
  transform: translateY(-1.5px) !important;
  color: #ffffff !important;
}

.btn-copy-tool:hover i {
  color: #93c5fd !important;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.btn-copy-tool:active {
  transform: translateY(0) !important;
}

/* ==========================================================================
   Kontakt- & Buchungsbereich: Submit- & Tab-Buttons (Glow/Glue Effekte)
   ========================================================================== */

/* 1. Haupt-Absendebutton "Anfrage jetzt absenden" */
#bk-submit-btn {
  border: none !important;
  background-origin: border-box !important;
  background-clip: padding-box !important;
  background-repeat: no-repeat !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#bk-submit-btn:hover {
  box-shadow: 
    0 0 0 2px #60a5fa,
    0 0 26px rgba(59, 130, 246, 0.85),
    0 0 10px rgba(37, 99, 235, 0.95),
    inset 0 0 12px rgba(59, 130, 246, 0.3) !important;
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
}

#bk-submit-btn:hover i {
  color: #e0f2fe !important;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.9));
  transform: translateX(2px);
  transition: all 0.3s ease;
}

#bk-submit-btn:active {
  transform: translateY(0) !important;
}

/* 2. Musiker-Absendebutton "Mitglieds- / Schnupperanfrage absenden" */
#mem-submit-btn {
  border: none !important;
  background-origin: border-box !important;
  background-clip: padding-box !important;
  background-repeat: no-repeat !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#mem-submit-btn:hover {
  box-shadow: 
    0 0 0 2px #34d399,
    0 0 26px rgba(16, 185, 129, 0.85),
    0 0 10px rgba(5, 150, 105, 0.95),
    inset 0 0 12px rgba(16, 185, 129, 0.3) !important;
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
}

#mem-submit-btn:hover i {
  color: #d1fae5 !important;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.9));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

#mem-submit-btn:active {
  transform: translateY(0) !important;
}

/* 3. Grüner Tab-Button "Mitspielen / Mitglied werden" (Glow nur bei Scrollover wenn INAKTIV) */
#tab-member-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#tab-member-btn:not(.tab-active):hover {
  border-color: #34d399 !important;
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.7), 0 0 8px rgba(52, 211, 153, 0.9), inset 0 0 10px rgba(16, 185, 129, 0.25) !important;
  transform: translateY(-1px) !important;
}

#tab-member-btn:not(.tab-active):hover i {
  color: #a7f3d0 !important;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.85));
  transition: all 0.3s ease;
}

/* 4. Blauer Tab-Button "Auftritt anfragen" (Glow nur bei Scrollover wenn INAKTIV) */
#tab-booking-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#tab-booking-btn:not(.tab-active):hover {
  border-color: #60a5fa !important;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.7), 0 0 8px rgba(37, 99, 235, 0.9), inset 0 0 10px rgba(59, 130, 246, 0.25) !important;
  transform: translateY(-1px) !important;
}

#tab-booking-btn:not(.tab-active):hover i {
  color: #93c5fd !important;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.85));
  transition: all 0.3s ease;
}

/* Aktiver Tab: Absolut kein Scrollover / Hover-Effekt, kein Springen, kein Rahmen, visuelle Ruhe */
#tab-booking-btn.tab-active,
#tab-member-btn.tab-active {
  cursor: default !important;
  transform: none !important;
  border-color: transparent !important;
}

#tab-booking-btn.tab-active:hover,
#tab-member-btn.tab-active:hover {
  transform: none !important;
  border-color: transparent !important;
}

/* ==========================================================================
   Vereinsstandarte 50 Jahre Jubiläum: Feierliches Herabrollen & Stoff-Schwung
   ========================================================================== */
@keyframes standarte-unroll {
  0% {
    transform: scaleY(0) translateY(-60px);
    opacity: 0;
    transform-origin: top center;
  }
  60% {
    transform: scaleY(1.05) translateY(0);
    opacity: 1;
    transform-origin: top center;
  }
  80% {
    transform: scaleY(0.97) translateY(0);
  }
  100% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    transform-origin: top center;
  }
}

@keyframes standarte-roll-up {
  0% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    transform-origin: top center;
  }
  100% {
    transform: scaleY(0) translateY(-60px);
    opacity: 0;
    transform-origin: top center;
  }
}

@keyframes standarte-fringe-sway {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1deg) skewX(0.5deg);
  }
  100% {
    transform: rotate(-1deg) skewX(-0.5deg);
  }
}

.standarte-unroll-active {
  animation: standarte-unroll 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.standarte-rollup-active {
  animation: standarte-roll-up 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.standarte-cloth-shadow {
  box-shadow: 
    0 25px 60px -10px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(37, 99, 235, 0.4),
    inset 0 0 35px rgba(0, 0, 0, 0.35);
}

.standarte-fringe-animation {
  animation: standarte-fringe-sway 3.5s ease-in-out infinite alternate;
  transform-origin: top center;
}

/* Jubiläumsbanner Königsblau-Satin Look */
.announcement-standarte-theme {
  background: 
    linear-gradient(90deg, #091226 0%, #102354 25%, #18337a 50%, #102354 75%, #091226 100%) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.45) !important;
  border-top: 1px solid rgba(251, 191, 36, 0.25) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* ==========================================================================
   Dunkles Holz-Design (wie im Header) für Countdown-Box & alle größeren Boxen
   ab Sektion 'Wer wir sind' (#uber-uns, #termine, #register, #quiz, #buchen, #partner)
   ========================================================================== */
.wood-card,
#uber-uns .glass-panel:not(.rounded-full),
#termine .glass-panel:not(.rounded-full),
#register .glass-panel:not(.rounded-full),
#buchen .glass-panel:not(.rounded-full),
#partner .glass-panel:not(.rounded-full) {
  position: relative !important;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.55) !important;
  box-shadow: 
    0 14px 36px -4px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Sektion Mitmachen (#quiz): Eigene dunkle Holzstruktur aus Nutzer-Vorlage */
#quiz .glass-panel:not(.rounded-full) {
  position: relative !important;
  background: url('Bilder/mitmachen_wood_texture.png') center center / cover no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.55) !important;
  box-shadow: 
    0 14px 36px -4px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Scrollover / Hover Effekt: Königsblauer Rahmen und Königsblauer Glue / Glow Effekt */
.wood-card:hover,
#uber-uns .glass-panel:not(.rounded-full):hover,
#termine .glass-panel:not(.rounded-full):hover,
#register .glass-panel:not(.rounded-full):hover,
#quiz .glass-panel:not(.rounded-full):hover,
#buchen .glass-panel:not(.rounded-full):hover,
#partner .glass-panel:not(.rounded-full):hover,
#uber-uns .glass-panel-hover:hover,
#termine .glass-panel-hover:hover,
#register .glass-panel-hover:hover,
#quiz .glass-panel-hover:hover,
#buchen .glass-panel-hover:hover,
#partner .glass-panel-hover:hover {
  border-color: #3b82f6 !important; /* Königsblau */
  box-shadow: 
    0 22px 55px -6px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(37, 99, 235, 0.85),
    0 0 16px rgba(59, 130, 246, 0.7),
    inset 0 0 18px rgba(37, 99, 235, 0.3) !important; /* Königsblauer Glow/Glue Effekt */
  transform: translateY(-4px) !important;
}

/* ==========================================================================
   Countdown-Box auf der Startseite: Exakt abgestimmt auf das Header-Holz
   Maserung, Streckung und Farbverlauf entsprechen 1:1 dem Header-Balken
   ========================================================================== */
.countdown-wood-box {
  position: relative !important;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.55) !important;
  box-shadow: 
    0 14px 36px -4px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.countdown-wood-box:hover {
  border-color: #3b82f6 !important;
  box-shadow: 
    0 22px 55px -6px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(37, 99, 235, 0.85),
    0 0 16px rgba(59, 130, 246, 0.7),
    inset 0 0 18px rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-4px) scale(1.01) !important;
}

/* Text- & Inhaltsgestaltung in den Holzboxen: Harmonisch, weiß & kontrastreich */
#uber-uns .glass-panel p,
#termine .glass-panel p,
#register .glass-panel p,
#quiz .glass-panel p,
#buchen .glass-panel p,
#partner .glass-panel p {
  color: #e2e8f0 !important;
}

#uber-uns .glass-panel strong,
#termine .glass-panel strong,
#register .glass-panel strong,
#quiz .glass-panel strong,
#buchen .glass-panel strong {
  color: #60a5fa !important; /* Königsblau-Akzent */
}

#uber-uns .glass-panel h3,
#termine .glass-panel h3,
#register .glass-panel h3,
#quiz .glass-panel h3,
#buchen .glass-panel h3,
#partner .glass-panel h3 {
  color: #ffffff !important;
}

/* Unterkarten / Quick-Links in Wer wir sind (#uber-uns) */
#uber-uns .glass-panel a.glass-panel {
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.45) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 158, 11, 0.2) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#uber-uns .glass-panel a.glass-panel:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.65), 0 0 16px rgba(59, 130, 246, 0.6), inset 0 0 12px rgba(37, 99, 235, 0.25) !important;
  transform: translateY(-2px) !important;
}

#uber-uns .glass-panel a.glass-panel span.text-white {
  color: #ffffff !important;
  font-weight: 700 !important;
}

#uber-uns .glass-panel a.glass-panel span.text-gray-400 {
  color: #cbd5e1 !important;
}

#uber-uns .glass-panel .border-slate-800\/80 {
  border-color: rgba(37, 99, 235, 0.3) !important;
}

/* Band-Foto Filter & Farbharmonie in 'Wer wir sind' (#uber-uns) */
.band-photo-grade {
  filter: contrast(1.07) brightness(0.96) saturate(1.08) sepia(0.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.band-photo-vignette {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, transparent 55%, rgba(11, 17, 32, 0.4) 100%),
              linear-gradient(to top, rgba(2, 6, 23, 0.85) 0%, transparent 40%, rgba(2, 6, 23, 0.2) 100%);
}

/* Termine- & Galerie-Filterbuttons: Dunkler Hintergrund & goldener Rand */
#termine .event-filter-btn,
.gal-tab-btn {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(251, 191, 36, 0.55) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}

#termine .event-filter-btn.active,
.gal-tab-btn.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  border-color: rgba(251, 191, 36, 0.8) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.65), 0 0 8px rgba(251, 191, 36, 0.3) !important;
}

#termine .event-filter-btn:not(.active):hover,
.gal-tab-btn:not(.active):hover {
  background: rgba(37, 99, 235, 0.25) !important;
  border-color: rgba(251, 191, 36, 0.9) !important;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.35) !important;
  color: #ffffff !important;
}

#termine #events-grid .glass-panel .text-gray-300,
#termine #events-grid .glass-panel .text-gray-400 {
  color: #cbd5e1 !important;
}

#termine #events-grid .glass-panel [data-lucide] {
  color: #60a5fa !important;
}

#termine #events-grid .glass-panel span.rounded-full {
  background: rgba(37, 99, 235, 0.25) !important;
  color: #93c5fd !important;
  border: 1px solid rgba(59, 130, 246, 0.5) !important;
  font-weight: 700 !important;
}

#termine #events-grid .glass-panel span.rounded-full.badge-past {
  background: rgba(30, 41, 59, 0.75) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(71, 85, 105, 0.6) !important;
}

#termine #events-grid .glass-panel button {
  position: relative !important;
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.82) 0%, rgba(37, 99, 235, 0.72) 50%, rgba(30, 58, 138, 0.85) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(251, 191, 36, 0.65) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 
    0 6px 18px -2px rgba(37, 99, 235, 0.45),
    0 0 14px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  font-weight: 800 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#termine #events-grid .glass-panel button:hover {
  background: 
    linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(29, 78, 216, 0.9) 100%),
    url('Bilder/header_wood_texture.png') center / cover repeat !important;
  border-color: #fde047 !important;
  box-shadow: 
    0 10px 24px -2px rgba(37, 99, 235, 0.7),
    0 0 26px rgba(59, 130, 246, 0.8),
    0 0 12px rgba(251, 191, 36, 0.5),
    inset 0 0 12px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) scale(1.03) !important;
}

#termine #events-grid .glass-panel button [data-lucide],
#termine #events-grid .glass-panel button svg {
  color: #fcd34d !important;
}

/* Register Icons & Badges */
#register .glass-panel .w-12.h-12 {
  background: rgba(37, 99, 235, 0.2) !important;
  border: 1.5px solid rgba(59, 130, 246, 0.5) !important;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3) !important;
}

#register .glass-panel .border-slate-800\/60 {
  border-color: rgba(37, 99, 235, 0.25) !important;
}

#register .glass-panel span.rounded-lg,
#register .glass-panel span.rounded-xl {
  background: rgba(30, 58, 138, 0.35) !important;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  color: #93c5fd !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Quiz Options & Buttons */
#quiz .quiz-option-btn {
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.35) 0%, rgba(12, 6, 3, 0.55) 100%),
    url('Bilder/header_wood_texture.png') center center / 1440px 100% no-repeat !important;
  border: 1.5px solid rgba(251, 191, 36, 0.45) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.25s ease !important;
}

#quiz .quiz-option-btn:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.65), inset 0 0 12px rgba(37, 99, 235, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

#quiz .quiz-option-btn span {
  color: #ffffff !important;
  font-weight: 700 !important;
}

#quiz .quiz-option-btn [data-lucide] {
  color: #60a5fa !important;
}

#quiz #reset-quiz-btn {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border: 1px solid #60a5fa !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5) !important;
  font-weight: 700 !important;
}
/* ==========================================================================
   Hero Section: Harmonischer Hintergrund mit Musikerumzug (Königsblau-Abstimmung)
   ========================================================================== */
.hero-festzelt-bg {
  position: relative !important;
  width: 100% !important;
  min-height: calc(100vh - 165px) !important;
  background-color: #0b1120 !important;
  background-image: 
    radial-gradient(ellipse 80% 60% at 50% 42%, rgba(10, 16, 30, 0.35) 0%, rgba(10, 16, 30, 0.15) 50%, rgba(5, 8, 18, 0.85) 100%),
    linear-gradient(to bottom, rgba(12, 17, 32, 0.75) 0%, rgba(10, 16, 30, 0.10) 25%, rgba(10, 16, 30, 0.35) 65%, rgba(5, 8, 18, 0.95) 100%),
    url('Bilder/hero_parade_bg.jpg') !important;
  background-size: cover !important;
  background-position: center 25% !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}

/* Dekorative Zelt-Lichterkette beim Tageslicht-Umzugsbild dezent ausblenden */
.festoon-string {
  display: none !important;
}

/* Gestochen scharfer Textkontrast über dem Umzugsmotiv */
.hero-festzelt-bg h1, 
.hero-festzelt-bg .font-alfa {
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(0, 0, 0, 0.85)) !important;
}

/* Tablet & Mobile */
@media (max-width: 1023px) {
  .hero-festzelt-bg {
    min-height: calc(100vh - 70px) !important;
    background-size: cover !important;
    background-position: center 22% !important;
    padding-top: 2rem !important;
    padding-bottom: 3.5rem !important;
  }
}
/* Laptop-Navbar (1024px-1366px): Schlanke Abstaende verhindern Abschneiden von 'Auftritt Buchen' */
@media (min-width: 1024px) and (max-width: 1366px) {
  #header-nav {
    gap: 0.15rem !important;
    font-size: 11px !important;
  }
  #header-nav a {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
}
/* ==========================================================================
   Hero Headline Textverlaeufe (Gold & Royal-Blau)
   ========================================================================== */
.gradient-white-blue-gold {
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 30%, #93c5fd 60%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.35em;
  margin-bottom: -0.35em;
  overflow: visible;
}

.gradient-yellow-gold-royal {
  background: linear-gradient(90deg, #fef08a 0%, #facc15 25%, #eab308 45%, #60a5fa 70%, #2563eb 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  padding-bottom: 0.32em;
  margin-bottom: -0.32em;
  overflow: visible;
}

.gradient-white-royal {
  background: linear-gradient(90deg, #ffffff 0%, #e2eeff 25%, #93c5fd 55%, #3b82f6 82%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.32em;
  margin-bottom: -0.32em;
  overflow: visible;
}

/* Sattes Königsblau für 'Impfinger Musikanten' auf der Startseite */
.text-royal-blue {
  color: #3b82f6 !important;
  -webkit-text-fill-color: #3b82f6 !important;
  display: inline-block !important;
  text-shadow: 0 0 25px rgba(37, 99, 235, 0.7), 0 2px 10px rgba(0, 0, 0, 0.95);
  padding-bottom: 0.35em;
  margin-bottom: -0.35em;
  overflow: visible;
}

/* ==========================================================================
   Jubilaeums-Banner (Royalblau-Satin mit Goldakzenten) & Vereinsstandarte
   ========================================================================== */
.announcement-standarte-theme {
  background: linear-gradient(90deg, #091326 0%, #0f244c 25%, #183875 50%, #0f244c 75%, #091326 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.standarte-badge-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  color: #1e1205;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(254, 240, 138, 0.8);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.standarte-badge-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}

.standarte-badge-btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Modal Overlay fuer Vereinsstandarte */
#standarte-modal {
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#standarte-modal.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#standarte-modal:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Aufhaengung / Messing & Holzstange */
.standarte-cord-hanger {
  width: 140px;
  height: 48px;
  margin: 0 auto -6px auto;
  position: relative;
  z-index: 2;
}

.standarte-wood-pole {
  height: 18px;
  border-radius: 9px;
  background: linear-gradient(180deg, #5a3014 0%, #2f1707 50%, #1a0c04 100%),
              url('Bilder/header_wood_texture.png') repeat center/contain;
  border: 1px solid rgba(217, 119, 6, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

/* Messing-Endkappen / Finials */
.standarte-brass-finial {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffbeb 0%, #fde047 30%, #d97706 70%, #78350f 100%);
  border: 1.5px solid #fef08a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Standarte Stoffbehälter & Unroll Animation */
.standarte-cloth-wrapper {
  transform-origin: top center;
  overflow: hidden;
  perspective: 1200px;
}

.standarte-unroll-active {
  animation: standarteUnroll 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.standarte-rollup-active {
  animation: standarteRollUp 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes standarteUnroll {
  0% {
    transform: scaleY(0) rotateX(-20deg);
    opacity: 0.1;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
  }
  50% {
    opacity: 1;
  }
  75% {
    transform: scaleY(1.03) rotateX(4deg);
  }
  90% {
    transform: scaleY(0.985) rotateX(-1.5deg);
  }
  100% {
    transform: scaleY(1) rotateX(0deg);
    opacity: 1;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
  }
}

@keyframes standarteRollUp {
  0% {
    transform: scaleY(1) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: scaleY(0) rotateX(-25deg);
    opacity: 0;
  }
}

/* Sanftes physikalisches Wehen der Goldfransen */
.standarte-fringe-sway {
  animation: fringeSway 4.5s ease-in-out infinite alternate;
  transform-origin: top center;
}

@keyframes fringeSway {
  0% {
    transform: rotate(0deg) skewX(0deg);
  }
  33% {
    transform: rotate(0.4deg) skewX(0.5deg);
  }
  66% {
    transform: rotate(-0.3deg) skewX(-0.4deg);
  }
  100% {
    transform: rotate(0.35deg) skewX(0.3deg);
  }
}

/* Lichtreflex auf Seidensamt */
.standarte-cloth-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.07) 35%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.05) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ==========================================================================
   In-Page Jubiläums-Fach (Direkt auf der Website entrollbar, kein Fenster/Modal)
   ========================================================================== */
.jubilee-tray {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(30, 58, 138, 0.45) 0%, rgba(11, 17, 32, 0.95) 75%),
    linear-gradient(180deg, #091326 0%, #0c1836 50%, #091326 100%);
  border-bottom: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow: inset 0 -10px 25px rgba(0, 0, 0, 0.7), 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, padding 0.5s ease;
}

.jubilee-tray.tray-closing {
  max-height: 0px !important;
  opacity: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.inpage-standarte-unroll-active {
  animation: inpageStandarteUnroll 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top center;
}

.inpage-standarte-rollup-active {
  animation: inpageStandarteRollup 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: top center;
}

@keyframes inpageStandarteUnroll {
  0% {
    transform: scaleY(0) rotateX(-20deg);
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  75% {
    transform: scaleY(1.03) rotateX(3deg);
  }
  90% {
    transform: scaleY(0.985) rotateX(-1deg);
  }
  100% {
    transform: scaleY(1) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes inpageStandarteRollup {
  0% {
    transform: scaleY(1) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: scaleY(0) rotateX(-20deg);
    opacity: 0;
  }
}

/* ==========================================================================
   Floating Back to Top Button
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: 
    linear-gradient(180deg, rgba(25, 14, 8, 0.85) 0%, rgba(12, 6, 3, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover no-repeat;
  border: 1.5px solid rgba(251, 191, 36, 0.6);
  box-shadow: 
    0 8px 24px -2px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(251, 191, 36, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  z-index: 50;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.35s, 
              border-color 0.25s, 
              box-shadow 0.25s, 
              background 0.25s, 
              color 0.25s;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: 
    linear-gradient(135deg, rgba(29, 78, 216, 0.92) 0%, rgba(37, 99, 235, 0.85) 50%, rgba(30, 58, 138, 0.95) 100%),
    url('Bilder/header_wood_texture.png') center / cover no-repeat;
  border-color: #fde047;
  color: #ffffff;
  box-shadow: 
    0 12px 28px -2px rgba(37, 99, 235, 0.7),
    0 0 24px rgba(59, 130, 246, 0.85),
    0 0 12px rgba(251, 191, 36, 0.5),
    inset 0 0 12px rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.08);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(0.96);
}

@media (max-width: 640px) {
  .back-to-top-btn {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}



