rre/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100000;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Screen Reader Only - Alternative accessibility class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: absolute;
  width: auto;
  height: auto;
  padding: 8px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  text-decoration: none;
  z-index: 100000;
  top: 0;
  left: 0;
  border-radius: 0 0 4px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

:root {
  /* CI Colors */
  --primary-blue: #003366;
  --primary-blue-dark: #002244;
  --teal-accent: #0066cc;
  --teal-light: #4da6ff;
  --light-blue: #e6f2ff;
  --nature-green: #006633;
  --warm-orange: #ff6600;
  --sunny-yellow: #ffcc00;
  --community-purple: #663399;
  --earth-brown: #8b4513;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;

  /* Layout */
  --container-max-width: 1200px;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.3s ease;
  
  /* Animation Durations */
  --animation-fast: 0.6s;
  --animation-normal: 0.8s;
  --animation-slow: 1.2s;
}

/* Page Load Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp var(--animation-normal) ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown var(--animation-normal) ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft var(--animation-normal) ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight var(--animation-normal) ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn var(--animation-normal) ease-out forwards;
}

.animate-slide-in-bottom {
  animation: slideInFromBottom var(--animation-normal) ease-out forwards;
}

/* Initial hidden state for animated elements */
.animate-on-load {
  opacity: 0;
}

/* Animation Delays for Staggered Effects */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.1s forwards;
  margin: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
}

html {
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-4);
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Stage Header Design */
.stage-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-sizing: border-box;
  background: transparent;
  transition: all 0.3s ease;
}

.stage-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.stage-navigation {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  justify-content: space-between;
}

.stage-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.stage-nav-logo a {
  pointer-events: auto;
}

.stage-nav-logo img {
  height: 40px;
  width: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}
.stage-header.scrolled .stage-nav-logo img {
  opacity: 1;
  visibility: visible;
}

.stage-header.scrolled .stage-nav-logo {
  opacity: 1;
  transform: scale(1);
}

.nav-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--font-size-lg);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.stage-header.scrolled .nav-title {
  opacity: 1;
  transform: translateX(0);
}

/* Navigation title link */
.nav-title-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.nav-title-link:hover {
  opacity: 0.8;
}

.stage-nav-menu {
  display: flex;
  list-style: none;
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.stage-nav-item {
  opacity: 0;
  animation: fadeInDown 0.6s ease-out forwards;
}

.stage-nav-item:nth-child(1) { animation-delay: 0.1s; }
.stage-nav-item:nth-child(2) { animation-delay: 0.2s; }
.stage-nav-item:nth-child(3) { animation-delay: 0.3s; }
.stage-nav-item:nth-child(4) { animation-delay: 0.4s; }
.stage-nav-item:nth-child(5) { animation-delay: 0.5s; }
.stage-nav-item:nth-child(6) { animation-delay: 0.6s; }

.stage-nav-link {
  color: #004080;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stage-header.scrolled .stage-nav-link {
  color: #003366;
  font-weight: 600;
}

.stage-nav-link:hover {
  background: rgba(0, 64, 128, 0.1);
}

.stage-nav-link.active {
  background: rgba(0, 64, 128, 0.2);
}

/* Stage Hero Section */
.stage-hero {
  position: relative;
  background-image: url("image/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: white;
  overflow: hidden;
  min-height: 600px;
  width: 100%;
  max-width: 100vw;
}

/* Hide the SVG wave elements and silhouettes to show full background image */
.stage-hero .wave-top,
.stage-hero .wave-bottom,
.stage-hero .stage-silhouettes {
  display: none;
}



.stage-logo {
  position: absolute;
  top: 35px;
  left: 15%;
  width: 150px;
  z-index: 1000 !important;
  transition: all 0.3s ease;
  opacity: 0;
  animation: scaleIn 1s ease-out 0.2s forwards;
}

/* Ensure the entire logo area is clickable */
.stage-logo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: auto;
}

.stage-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.stage-header.scrolled ~ .main .stage-logo {
  width: 100px;
  top: 0px;
  left: 12%;
}

.stage-content {
  position: relative;
  z-index: 2;
  padding: 350px 20px 100px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.stage-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 20px 0 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
}

.stage-content p {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.stage-content p:nth-of-type(1) { animation-delay: 1.2s; }
.stage-content p:nth-of-type(2) { animation-delay: 1.4s; }



.stage-content p {
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stage-silhouettes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('https://www.mitredeninld.de/assets/hintergrund-menschen.png') no-repeat bottom center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

/* Stage Header Dropdown */
.stage-nav-item {
  position: relative;
}

.stage-nav-item.dropdown > .stage-nav-link::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 0.4rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stage-nav-item.dropdown:hover > .stage-nav-link::after {
  transform: rotate(180deg);
}

.stage-nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1000;
  pointer-events: none;
}

.stage-nav-item:hover .dropdown-menu,
.stage-nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.stage-nav-item .dropdown-link {
  display: block;
  padding: 12px 24px; /* extra padding for long labels */
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: normal; /* allow wrap if needed */
  line-height: 1.3;
}

.stage-nav-item .dropdown-link:hover {
  background: var(--gray-100);
  color: var(--primary-blue);
}

/* Stage Header Mobile Toggle */
.stage-navigation .mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin-left: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}

.stage-navigation .mobile-toggle:hover {
  background: rgba(0, 64, 128, 0.1);
}

.stage-navigation .mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #004080;
  margin: 4px 0;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger to X animation */
.stage-navigation .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.stage-navigation .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.stage-navigation .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Stage Header Responsive */
@media (max-width: 768px) {
  .stage-header {
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .stage-header.scrolled {
    padding: 8px 20px;
  }
  
  .stage-logo {
    width: 110px;
    top: 20px;
    left: 20px;
  }
  
  .stage-header.scrolled ~ .main .stage-logo {
    width: 80px;
    top: 15px;
    left: 15px;
  }
  
  .stage-nav-logo img {
    height: 35px;
  }
  
  .stage-content h2 {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
  
  .stage-navigation .mobile-toggle {
    display: flex;
    order: 1; /* move to left */
    margin-right: 12px;
  }
  .stage-nav-logo {
    order: 2;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .stage-nav-logo img { display: block !important; height: 32px; }
  .nav-title-link { display: none; }
  
  .stage-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #004080 0%, #0056b3 100%);
    flex-direction: column;
    padding: 80px 30px 30px;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .stage-nav-menu.active {
    transform: translateY(0);
  }
  
  .stage-nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .stage-nav-menu.active .stage-nav-item {
    transform: translateY(0);
    opacity: 1;
  }
  
  .stage-nav-menu.active .stage-nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  .stage-nav-menu.active .stage-nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .stage-nav-menu.active .stage-nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .stage-nav-menu.active .stage-nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  
  .stage-nav-menu.active .stage-nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  
  .stage-nav-link {
    font-size: 24px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
  }
  
  .stage-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Add close indicator */
  .stage-nav-menu::before {
    content: '×';
    position: absolute;
    top: 18px;
    right: 16px; /* nudge further right */
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .stage-nav-menu::before:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

.pdf-header-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

/* Logo curve section (white) */
.logo-curve-section {
  position: relative;
  width: 60%;
  height: 100%;
  background: #2563A5;
}

.curve-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 10;
}

.pdf-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Navigation blue section */
.nav-blue-section {
  position: relative;
  width: 40%;
  height: 100%;
  background: #2563A5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-navigation {
  width: 100%;
  padding: 0 40px;
}

.pdf-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.pdf-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pdf-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pdf-nav-link.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

/* PDF Header Dropdown */
.pdf-nav-item {
  position: relative;
}

.pdf-nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1000;
}

.pdf-nav-item:hover .dropdown-menu,
.pdf-nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pdf-nav-item .dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pdf-nav-item .dropdown-link:hover {
  background: var(--gray-100);
  color: var(--primary-blue);
}

/* PDF Header Mobile Toggle */
.pdf-navigation .mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}

.pdf-navigation .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pdf-navigation .mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 4px 0;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger to X animation for PDF */
.pdf-navigation .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.pdf-navigation .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.pdf-navigation .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* PDF Header Responsive */
@media (max-width: 768px) {
  .pdf-header {
    height: 120px;
  }
  
  .logo-curve-section {
    width: 70%;
  }
  
  .nav-blue-section {
    width: 30%;
  }
  
  .logo-container {
    left: 15%;
  }
  
  .pdf-logo img {
    height: 80px;
  }
  
  .pdf-navigation {
    padding: 0 20px;
  }
  
  .pdf-navigation .mobile-toggle {
    display: flex;
  }
  
  .pdf-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2563A5 0%, #1e40af 100%);
    flex-direction: column;
    padding: 80px 30px 30px;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .pdf-nav-menu.active {
    transform: translateY(0);
  }
  
  .pdf-nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .pdf-nav-menu.active .pdf-nav-item {
    transform: translateY(0);
    opacity: 1;
  }
  
  .pdf-nav-menu.active .pdf-nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  .pdf-nav-menu.active .pdf-nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .pdf-nav-menu.active .pdf-nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .pdf-nav-menu.active .pdf-nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  
  .pdf-nav-menu.active .pdf-nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  
  .pdf-nav-link {
    font-size: 24px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
  }
  
  .pdf-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Add close indicator for PDF menu */
  .pdf-nav-menu::before {
    content: '×';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .pdf-nav-menu::before:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
}

.wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-path {
  transition: all 0.3s ease;
}

.header-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.logo-nav-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 40px;
}

.wave-logo {
  position: relative;
  z-index: 20;
  margin-left: 60px;
}

.wave-logo img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.wave-logo:hover img {
  transform: scale(1.05);
}

.wave-navigation {
  margin-left: auto;
  margin-right: 60px;
}

.wave-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.wave-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.wave-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wave-nav-link.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

/* Dropdown for Wave Navigation */
.wave-nav-item {
  position: relative;
}

.wave-nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.wave-nav-item:hover .dropdown-menu,
.wave-nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wave-nav-item .dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.wave-nav-item .dropdown-link:hover {
  background: var(--gray-100);
  color: var(--primary-blue);
}

/* Wave Header Compact State */
.header-wave {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: height 0.3s ease;
}

.header-wave.compact {
  height: 80px;
}

.header-wave.compact .wave-logo img {
  height: 60px;
}

.header-wave.compact .logo-nav-wrapper {
  padding-top: 10px;
}

.header-wave.compact .wave-nav-link {
  font-size: 14px;
  padding: 6px 12px;
}

/* Mobile Toggle for Wave Header */
.wave-navigation .mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}

.wave-navigation .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wave-navigation .mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 4px 0;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger to X animation for Wave */
.wave-navigation .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.wave-navigation .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.wave-navigation .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Wave Header */
@media (max-width: 768px) {
  .header-wave {
    height: 80px;
  }
  
  .logo-nav-wrapper {
    justify-content: space-between;
    padding-top: 20px;
  }
  
  .wave-logo {
    margin-left: 20px;
  }
  
  .wave-logo img {
    height: 50px;
  }
  
  .wave-navigation {
    margin-right: 20px;
    margin-left: 0;
  }
  
  .wave-navigation .mobile-toggle {
    display: flex;
  }
  
  .wave-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    flex-direction: column;
    padding: 80px 30px 30px;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .wave-nav-menu.active {
    transform: translateY(0);
  }
  
  .wave-nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .wave-nav-menu.active .wave-nav-item {
    transform: translateY(0);
    opacity: 1;
  }
  
  .wave-nav-menu.active .wave-nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  .wave-nav-menu.active .wave-nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .wave-nav-menu.active .wave-nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .wave-nav-menu.active .wave-nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  
  .wave-nav-menu.active .wave-nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  
  .wave-nav-link {
    font-size: 24px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
  }
  
  .wave-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Add close indicator for Wave menu */
  .wave-nav-menu::before {
    content: '×';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .wave-nav-menu::before:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
}

.logo-section {
  display: flex;
  justify-content: center;
  padding: var(--spacing-6) 0;
  transition: padding 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-img {
  height: 100px;
  width: auto;
  margin-right: var(--spacing-4);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: height 0.3s ease, margin-right 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  transition: font-size 0.3s ease;
}

.logo-subtitle {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.2;
  transition: font-size 0.3s ease;
}

.nav-section {
  display: flex;
  justify-content: center;
  padding: var(--spacing-4) 0;
}

/* Scrolled header state */
.header.scrolled .logo-section {
  padding: var(--spacing-3) 0;
}

.header.scrolled .logo-img {
  height: 60px;
  margin-right: var(--spacing-3);
}

.header.scrolled .logo-title {
  font-size: var(--font-size-xl);
}

.header.scrolled .logo-subtitle {
  font-size: var(--font-size-base);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-8);
  align-items: center;
}

.nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--spacing-3) var(--spacing-4);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link.active {
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 1000;
  list-style: none;
  padding: var(--spacing-3) 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--spacing-3) var(--spacing-5);
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--gray-50);
  color: var(--primary-blue);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-2);
  position: absolute;
  right: var(--spacing-4);
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 4;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 3px);
  height: 40px;
}

.wave-divider .shape-fill {
  fill: #a6b2e0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicator.active {
  background: var(--white);
  width: 36px;
  border-radius: 6px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 227, 0.75) 0%,
    rgba(0, 180, 216, 0.7) 30%,
    rgba(144, 224, 239, 0.65) 70%,
    rgba(175, 255, 205, 0.6) 100%
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  background: linear-gradient(
    90deg,
    rgba(0, 154, 201, 0.4) 0%,
    rgba(0, 154, 201, 0.4) 40%,
    rgba(0, 154, 201, 0.4) 60%,
    rgba(0, 154, 201, 0.4) 100%
  );
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-6) calc(var(--spacing-24) + 3rem);
  margin: var(--spacing-4) 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 600;
  margin-bottom: var(--spacing-4);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  margin-bottom: var(--spacing-6);
  opacity: 0.9;
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-2);
}

.hero-color-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  margin: var(--spacing-8) auto 0;
  border-radius: 2px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--spacing-8);
  margin: var(--spacing-8) 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-1);
}

.hero-stat span {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-4) var(--spacing-8);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  font-size: var(--font-size-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(6, 147, 227, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 147, 227, 0.4);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 8px;
  font-weight: 600;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Special styling for aktuelles section button */
.aktuelles .btn-outline {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  backdrop-filter: none;
}

.aktuelles .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-header {
  text-align: left;
  margin-bottom: var(--spacing-16);
  position: relative;
  z-index: 2;
}


.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-4);
  position: relative;
  padding-bottom: var(--spacing-3);
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Special styling for aktuelles section */
.aktuelles .section-title {
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aktuelles .section-subtitle {
  color: var(--text-secondary);
}

/* Special styling for schwerpunkte section */
.schwerpunkte .section-title {
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.schwerpunkte .section-subtitle {
  color: var(--text-secondary);
}





.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0;
}

.section-footer {
  text-align: center;
  margin-top: var(--spacing-12);
}

/* Schwerpunkte Section - Centered Layout */
.schwerpunkte {
  max-width: 1400px;
  margin: 40px auto;
  padding: 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tablet responsive for schwerpunkte */
@media (min-width: 769px) and (max-width: 1199px) {
  .schwerpunkte {
    max-width: 1200px;
    margin: 30px auto;
    padding: 50px 40px;
  }
}

/* Desktop responsive for schwerpunkte */
@media (min-width: 1200px) {
  .schwerpunkte {
    max-width: 1400px;
    margin: 50px auto;
    padding: 60px 50px;
  }
}

.schwerpunkte::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.schwerpunkte::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Decorative waves inside schwerpunkte section */
.schwerpunkte-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.schwerpunkte-waves svg {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}

.schwerpunkte-waves .wave-1 {
  /* animation removed */
}

.schwerpunkte-waves .wave-2 {
  /* animation removed */
}

.schwerpunkte-waves .wave-3 {
  /* animation removed */
}

@keyframes floatWave {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-5px);
  }
  50% {
    transform: translateX(5px) translateY(-10px);
  }
  75% {
    transform: translateX(-5px) translateY(-3px);
  }
}

/* Slider Styles */
.schwerpunkte-slider,
.aktuelles-slider {
  position: relative;
  margin-top: var(--spacing-12);
  z-index: 2;
  padding: 0;
}

/* Enhanced Slider Arrows - Overlay Style */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(59, 130, 246, 0.95);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 10px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(59, 130, 246, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 6px 15px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.slider-arrow:hover svg {
  transform: scale(1.1);
}

/* Removed pulse animation for overlay style */



/* Position arrows exactly where marked - far outside container */
.aktuelles-slider .slider-arrow-left {
  left: -60px !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

.aktuelles-slider .slider-arrow-right {
  right: -60px !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

/* Always show arrows for better UX */
.aktuelles-slider .slider-arrow {
  opacity: 1 !important;
  z-index: 9999;
  position: absolute;
  pointer-events: auto;
}

/* Ensure container doesn't clip arrows but allows sliding */
.aktuelles-slider {
  overflow: visible !important;
  position: relative;
}

.aktuelles-slider .slider-container {
  overflow: hidden !important;
  position: relative;
}

/* Ensure arrows are always visible and positioned correctly */
.aktuelles-slider .slider-arrow {
  position: absolute !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Ensure Schwerpunkte arrows are always visible and positioned correctly */
.schwerpunkte-slider .slider-arrow {
  position: absolute !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Ensure parent containers don't clip arrows */
.aktuelles {
  overflow: visible !important;
}

.content-section {
  overflow: visible !important;
}

.container {
  overflow: visible !important;
}

/* Position arrows for schwerpunkte slider */
/* Position Schwerpunkte arrows outside container */
.schwerpunkte-slider .schwerpunkte-arrow-left {
  left: -80px !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

.schwerpunkte-slider .schwerpunkte-arrow-right {
  right: -80px !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

.slider-arrow:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tablet layout for 3 articles - Centered */
@media (min-width: 769px) and (max-width: 1199px) {
  .aktuelles-slider {
    max-width: 1200px;
    margin: 30px auto;
    padding: 40px 50px;
  }
  
  .aktuelles-slider .slider-arrow-left {
    left: 10px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .slider-arrow-right {
    right: 10px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .news-card {
    flex: 0 0 360px;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
  }
  
  .aktuelles-slider .slider-container {
    max-width: 1128px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
  }
  
  /* Schwerpunkte tablet layout */
  .schwerpunkte-slider .schwerpunkte-arrow-left {
    left: -60px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .schwerpunkte-slider .schwerpunkte-arrow-right {
    right: -60px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .schwerpunkte-slider .schwerpunkt-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    min-height: 450px;
    height: auto;
  }
  
  .schwerpunkte-slider .slider-container {
    max-width: 980px;
    margin: 0 auto;
  }
}


/* Desktop layout for 3 articles - Centered */
@media (min-width: 1200px) {
  .aktuelles-slider {
    max-width: 1400px;
    margin: 50px auto;
    padding: 50px 100px;
  }
  
  .aktuelles-slider .slider-arrow-left {
    left: 20px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .slider-arrow-right {
    right: 20px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .news-card {
    flex: 0 0 360px;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
  }
  
  .aktuelles-slider .slider-container {
    max-width: 1128px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
  }
  
  /* Schwerpunkte desktop layout */
  .schwerpunkte-slider .schwerpunkte-arrow-left {
    left: -100px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .schwerpunkte-slider .schwerpunkte-arrow-right {
    right: -100px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .schwerpunkte-slider .schwerpunkt-card {
    flex: 0 0 360px;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    min-height: 520px;
    height: auto;
  }
  
  .schwerpunkte-slider .slider-container {
    max-width: 1140px;
    margin: 0 auto;
  }
}

.slider-container {
  overflow: visible;
  border-radius: var(--border-radius-lg);
  position: relative;
  max-width: 100%;
  padding: 0;
}

/* Configure slider for 3-article carousel - Centered */
.aktuelles-slider {
  max-width: 1400px;
  margin: 40px auto 88px;
  padding: 40px 100px;
  position: relative;
}

.aktuelles-slider .slider-container {
  max-width: 1128px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Add visual indicator for more articles */
.aktuelles-slider::after {
  content: "← Weitere Artikel →";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  opacity: 0.7;
  background: none;
  padding: 0 10px;
  border-radius: 20px;
  backdrop-filter: none;
}

/* Ensure CTA below slider remains fully visible on all screens */
.aktuelles .section-footer { position: relative; z-index: 2; }
.aktuelles-slider { z-index: 1; }

/* Hint label visible across breakpoints */

.aktuelles-slider .slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  flex-shrink: 0;
}

/* Show 3 articles at a time with sliding navigation */
@media (min-width: 769px) {
  .aktuelles-slider .slider-container {
    overflow: hidden;
    position: relative;
  }
  
  .aktuelles-slider .slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    min-width: 100%;
  }
  
  /* Enable smooth sliding for multiple articles */
  .aktuelles-slider .news-card {
    flex-shrink: 0;
  }
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: var(--spacing-6);
}

/* Schwerpunkte Slider - Professional 3-Card Layout */
.schwerpunkte-slider {
  position: relative;
  margin-top: var(--spacing-12);
  z-index: 2;
  padding: 0;
}

/* Visual indicator for more schwerpunkte cards */
.schwerpunkte-slider::after {
  content: "← Weitere Schwerpunkte →";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.schwerpunkte-slider .slider-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.schwerpunkte-slider .slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 24px;
  width: auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-width: max-content;
}

.aktuelles-slider .slider-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.4s ease;
  gap: 24px;
  width: auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  will-change: transform;
  min-width: max-content;
  padding-left: 0;
  padding-right: 0;
}



.schwerpunkte-slider .schwerpunkt-card {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  min-width: 340px;
  max-width: calc((100% - 48px) / 3);
  min-height: 500px;
  height: auto;
}

/* Hide extra cards beyond the 3rd on desktop/tablet */
@media (min-width: 769px) {
  /* Remove the display: none rule to allow sliding */
  /* .schwerpunkte-slider .schwerpunkt-card:nth-child(n+4) {
    display: none;
  } */
  /* Remove the display: none rule to allow sliding */
  /* .aktuelles-slider .news-card:nth-child(n+4) {
    display: none;
  } */
  .schwerpunkte-slider .slider-track {
    justify-content: center;
    min-width: 100%;
  }
  .schwerpunkte-slider .schwerpunkt-card {
    flex-shrink: 0;
  }
  .aktuelles-slider .slider-track {
    justify-content: center;
    min-width: 100%;
  }
  .aktuelles-slider .news-card {
    flex-shrink: 0;
  }
}

.aktuelles-slider .news-card {
  flex: 0 0 360px;
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  height: 520px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.aktuelles-slider .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.schwerpunkt-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  transform: translateY(0);
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

/* Simplified decorative elements for cleaner design */

.schwerpunkt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Removed complex hover effects for cleaner design */

.card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 0 0;
  margin-top: 0;
  margin: 0;
  border: none;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.02) contrast(1.05) saturate(1.1);
}

.schwerpunkt-card:hover .card-image img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.schwerpunkt-card:hover .card-image::before {
  opacity: 1;
}

.card-content {
  padding: var(--spacing-10);
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-6);
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

/* Simplified card titles without decorative lines */

.card-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-6);
  line-height: 1.7;
  font-size: var(--font-size-base);
  letter-spacing: 0.01em;
  flex-grow: 1;
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.card-link {
  color: #2563A5;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  margin-top: auto;
  padding-top: var(--spacing-4);
}

.card-link:hover {
  color: #1e4d8a;
  text-decoration: underline;
}



/* Aktuelles Section */
.aktuelles {
  position: relative;
  background: var(--white);
  padding: var(--spacing-16) 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.aktuelles-content {
  padding: 0;
  position: relative;
  z-index: 2;
}

.aktuelles-top-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.aktuelles-top-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.aktuelles-bottom-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.aktuelles-bottom-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* Removed old slider controls - using arrow navigation now */

.news-card {
  background: var(--white);
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 520px;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.04) 0%,
    rgba(16, 185, 129, 0.04) 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 24px;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.news-card:hover::before {
  opacity: 1;
}

.news-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 24px 24px 0 0;
}

.news-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 227, 0.15) 0%,
    rgba(0, 180, 216, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.05);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.1);
}

.news-card:hover .news-image::before {
  opacity: 0.2;
}

.news-tag-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #3b82f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  letter-spacing: 0.025em;
}

.news-card:hover .news-tag-overlay {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.4);
}

.news-content {
  padding: 24px 24px 20px 24px;
  position: relative;
  z-index: 15;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.98);
  justify-content: space-between;
  overflow: visible;
  box-sizing: border-box;
  border-radius: 0 0 24px 24px;
}

.news-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
  opacity: 0.8;
}

.news-date {
  color: #6b7280;
  font-size: 0.8rem;
  background: rgba(243, 244, 246, 0.8);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(209, 213, 219, 0.3);
}

.news-tag {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  color: var(--white);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: 15px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(6, 147, 227, 0.3);
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: all 0.3s ease;
  letter-spacing: -0.025em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6em;
  margin-top: 8px;
}

.news-card:hover .news-title {
  color: rgba(37, 99, 165, 0.8);
}

.news-excerpt {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.9rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.2em;
}

.news-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: #2563A5 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: auto 0 0 0 !important;
  align-self: flex-start !important;
  letter-spacing: 0.025em !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  z-index: 5;
  max-width: calc(100% - 48px);
  box-sizing: border-box;
}

.news-link:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #1e4d8a !important;
  text-decoration: underline !important;
  border: none !important;
}

.news-link::after {
  content: "";
  display: none;
}

.news-link:hover {
  transform: translateX(3px);
}

/* Add news-card::after element back to original state */
.news-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 50%,
    rgba(236, 72, 153, 0.1) 100%
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.news-card:hover::after {
  opacity: 1;
}



/* Article section background */
.content-section.bg-light {
  background: #a6b2e0 !important;
}

/* More specific selector for article sections */
section.content-section.bg-light {
  background: #a6b2e0 !important;
}

/* Veranstaltungen Section */
.veranstaltungen {
  position: relative;
  background: linear-gradient(180deg, var(--gray-100) 0%, #f0f4f8 100%);
  padding: 0;
  overflow: hidden;
}

/* Animated background effect - removed */
.veranstaltungen::before {
  display: none; /* Animation removed */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.veranstaltungen-content {
  padding: 0;
  position: relative;
  z-index: 2;
}

.veranstaltungen-top-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.veranstaltungen-top-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.veranstaltungen-bottom-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.veranstaltungen-bottom-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* Special styling for veranstaltungen section */
.veranstaltungen .section-title {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.veranstaltungen .section-subtitle {
  color: var(--text-secondary);
}

.veranstaltungen .community-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.veranstaltungen .btn.btn-outline {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.veranstaltungen .btn.btn-outline:hover {
  background-color: #f97316 !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--spacing-10);
  margin-top: var(--spacing-12);
}

/* Event title animation */
.events-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-4);
}

.event-emoji {
  font-size: 2.5rem;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

.events-subtitle {
  font-size: var(--font-size-lg);
  color: #6b7280;
}





.event-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  cursor: pointer;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 51, 153, 0.05) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.event-card:hover::before {
  opacity: 1;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #8B5CF6 0%,
    #EC4899 100%
  );
  color: var(--white);
  padding: var(--spacing-6);
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 2;
}


/* Different gradient colors for each event */
.event-card:nth-child(1) .event-date {
  background: linear-gradient(135deg, #1f2d98 0%, #662d91 100%);
}

.event-card:nth-child(2) .event-date {
  background: linear-gradient(135deg, #3fa9f5 0%, #1f2d98 100%);
}

.event-card:nth-child(3) .event-date {
  background: linear-gradient(135deg, #009640 0%, #3fa9f5 100%);
}

.event-card:nth-child(4) .event-date {
  background: linear-gradient(135deg, #fcee21 0%, #f7941e 100%);
}

.event-card:nth-child(5) .event-date {
  background: linear-gradient(135deg, #f7941e 0%, #ed1c24 100%);
}

.event-card:nth-child(6) .event-date {
  background: linear-gradient(135deg, #ec008c 0%, #662d91 100%);
}

.event-day {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.event-month {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--spacing-1);
  opacity: 0.9;
}

.event-content {
  flex: 1;
  padding: var(--spacing-6);
  position: relative;
  z-index: 2;
}

.event-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-3);
  transition: color 0.3s ease;
}

.event-card:hover .event-title {
  color: #8B5CF6;
}

.event-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3);
  line-height: 1.6;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

.event-time,
.event-location {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
}

.event-time::before {
  content: "🕐";
  font-size: 16px;
}

.event-location::before {
  content: "📍";
  font-size: 16px;
}

/* Map Section */
.map-section {
  position: relative;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.map-content {
  padding: var(--spacing-10) 0;
  position: relative;
  z-index: 2;
}

.map-top-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.map-top-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.map-bottom-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.map-bottom-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* Special styling for map section */
.map-section .section-title {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-section .section-subtitle {
  color: var(--text-secondary);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: var(--spacing-4) 0;
  display: flex;
  gap: var(--spacing-6);
  align-items: flex-start;
}

/* Interactive Map Styles */
.interactive-map {
  height: 450px;
  flex: 1;
  border-radius: var(--border-radius-lg);
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s ease;
}

.interactive-map:hover {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Map Legend */
.map-legend {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 220px;
  height: fit-content;
  transition: all 0.3s ease;
}

.map-legend:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-legend h4 {
  margin: 0 0 var(--spacing-3) 0;
  color: var(--primary-blue);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-2);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
}

.legend-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Custom Marker Styles */
.custom-div-icon {
  background: none !important;
  border: none !important;
}

.custom-marker {
  background: var(--white);
  border: 4px solid;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.custom-marker::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-marker:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: none;
}

.custom-marker:hover::before {
  opacity: 0.15;
}

.map-pin {
  width: 24px;
  height: 36px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-pin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transform: rotate(-45deg);
}

.map-pin:hover {
  transform: scale(1.2);
}

.activity-pin::before {
  background: var(--nature-green);
}
.cultural-pin::before {
  background: var(--community-purple);
}
.education-pin::before {
  background: var(--primary-blue);
}
.services-pin::before {
  background: var(--warm-orange);
}

/* Proper map pin styles */
.custom-map-pin {
  background: none !important;
  border: none !important;
}

.map-pin-container {
  cursor: pointer;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-pin-container:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

/* Modern Popup Styles */
.marker-popup h5 {
  margin: 0 0 var(--spacing-2) 0;
  color: var(--primary-blue);
  font-size: var(--font-size-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.marker-popup p {
  margin: 0 0 var(--spacing-2) 0;
  font-size: var(--font-size-base);
  color: var(--text-primary);
  line-height: 1.5;
}

.marker-popup small {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-style: italic;
}

/* Leaflet Popup Overrides */
.leaflet-popup-content-wrapper {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
  border: 2px solid #e5e7eb !important;
  padding: 15px !important;
  min-width: 250px !important;
  position: relative !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  color: #1f2937 !important;
  font-family: inherit !important;
}

.leaflet-popup-tip {
  background: white !important;
  border: 2px solid #e5e7eb !important;
  border-top: none !important;
  border-right: none !important;
}

.leaflet-popup-close-button {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 20px !important;
  height: 20px !important;
  color: #666 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  background: #f8f9fa !important;
  border: 1px solid #ddd !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  line-height: 1 !important;
  padding: 0 !important;
  z-index: 1000 !important;
  transform: translate(0, 0) !important;
}

.leaflet-popup-close-button:hover {
  color: white !important;
  background: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}

.modern-popup {
  padding: var(--spacing-1);
  border-radius: var(--border-radius);
  background: white;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 40px;
  background: #f5f5f5;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius-lg);
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--spacing-4);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Individual FAQ toggle colors */
.faq-toggle-1 {
  background: #1f2d98; /* Dunkelblau / Violett */
}

.faq-toggle-2 {
  background: #3fa9f5; /* Hellblau */
}

.faq-toggle-3 {
  background: #009640; /* Grün */
}

.faq-toggle-4 {
  background: #fcee21; /* Gelb */
  color: #333; /* Dunkler Text für bessere Lesbarkeit auf gelbem Hintergrund */
}

.faq-toggle-5 {
  background: #f7941e; /* Orange */
}

.faq-toggle-6 {
  background: #ed1c24; /* Rot */
}

/* Keep the same colors when active/rotated */
.faq-item.active .faq-toggle-1 {
  background: #1f2d98;
}

.faq-item.active .faq-toggle-2 {
  background: #3fa9f5;
}

.faq-item.active .faq-toggle-3 {
  background: #009640;
}

.faq-item.active .faq-toggle-4 {
  background: #fcee21;
  color: #333;
}

.faq-item.active .faq-toggle-5 {
  background: #f7941e;
}

.faq-item.active .faq-toggle-6 {
  background: #ed1c24;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 20px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

.faq-answer-with-image {
  display: flex;
  gap: var(--spacing-6);
  align-items: flex-start;
}

.faq-answer-image {
  flex: 0 0 200px;
  width: 200px;
}

.faq-answer-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-answer-text {
  flex: 1;
}

@media (max-width: 768px) {
  .faq-answer-with-image {
    flex-direction: column;
    gap: var(--spacing-4);
  }
  
  .faq-answer-image {
    flex: none;
    width: 100%;
  }
}

/* Sprechstunden Section */
.sprechstunden-section {
  padding: var(--spacing-12) 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-accent) 100%);
  margin-top: var(--spacing-16);
}

.sprechstunden-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--spacing-6) var(--spacing-8);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sprechstunden-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.sprechstunden-content {
  flex: 1;
}

.sprechstunden-label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-2) 0;
}

.sprechstunden-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

.sprechstunden-date {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-blue);
}

.sprechstunden-time {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-weight: 500;
}

.sprechstunden-action {
  flex-shrink: 0;
}

.btn-sprechstunden {
  white-space: nowrap;
  padding: var(--spacing-3) var(--spacing-6);
  border-radius: 8px;
}

/* Responsive Sprechstunden */
@media (max-width: 768px) {
  .sprechstunden-wrapper {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-4);
    padding: var(--spacing-5);
  }
  
  .sprechstunden-details {
    align-items: center;
  }
  
  .btn-sprechstunden {
    width: 100%;
    max-width: 250px;
  }
}

/* Newsletter Section */
.newsletter-section {
  padding: var(--spacing-20) 0;
  margin-top: var(--spacing-16);
  position: relative;
}


@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes colorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.newsletter-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-16);
  align-items: center;
}

/* Newsletter Content */
.newsletter-content {
  color: var(--text-primary);
  text-align: left;
}

.newsletter-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-4);
  color: var(--text-primary);
  line-height: 1.2;
}

.newsletter-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-6);
  line-height: 1.6;
}

.newsletter-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  margin: var(--spacing-4) 0;
  border-radius: 2px;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}

.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--primary-blue);
}

/* Newsletter Form */
.newsletter-form {
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-5);
}

.input-group input {
  padding: var(--spacing-4) var(--spacing-5);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: var(--font-size-base);
  background: var(--white);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(38, 99, 165, 0.1);
  background: white;
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-accent) 100%);
  color: white;
  border: none;
  padding: var(--spacing-4) var(--spacing-6);
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(38, 99, 165, 0.3);
}

.btn-newsletter svg {
  transition: transform 0.3s ease;
}

.btn-newsletter:hover svg {
  transform: translateY(-2px);
}

.newsletter-disclaimer {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-top: var(--spacing-3);
  justify-content: center;
}

.disclaimer-icon {
  color: var(--nature-green);
}

/* Newsletter DSGVO Consent */
.newsletter-consent {
  margin-top: var(--spacing-4);
  margin-bottom: var(--spacing-3);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  cursor: pointer;
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.consent-text {
  color: var(--text-secondary);
}

.consent-text a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.consent-text a:hover {
  color: var(--teal-accent);
}

.newsletter-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-12);
}

.newsletter-content {
  flex: 1;
  max-width: 500px;
}

.newsletter-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  margin-bottom: var(--spacing-4);
  color: var(--text-primary);
}

.newsletter-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  line-height: 1.6;
}

.newsletter-form {
  flex: 0 0 auto;
}

/* Image Breaker Section */
.image-breaker {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-breaker-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('New Image/Images-Horst-Website-July-2025/08-04-2022 Auftakt SozZusammenhalt/s3-2 - Kopie_.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.image-breaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.7) 100%);
  z-index: 2;
}

.image-breaker-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  width: 100%;
}

.breaker-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--spacing-4);
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.breaker-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-12);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breaker-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-4);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-2);
}

.stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.4;
}

/* Responsive Image Breaker - Tablets */
@media (max-width: 1024px) {
  .breaker-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-3);
    padding: 0 var(--spacing-2);
  }
  
  .stat-item {
    padding: var(--spacing-3);
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
  }
  
  .stat-label {
    font-size: var(--font-size-sm);
  }
}

/* Responsive Image Breaker - Mobile */
@media (max-width: 768px) {
  .image-breaker {
    height: 70vh;
    min-height: 500px;
  }
  
  .image-breaker-bg {
    background-attachment: scroll;
  }
  
  .breaker-title {
    font-size: var(--font-size-3xl);
  }
  
  .breaker-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
  }
  
  .breaker-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3);
    padding: 0 var(--spacing-2);
  }
  
  .stat-item {
    padding: var(--spacing-4);
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
  }
}

/* Responsive Newsletter Styles */
@media (max-width: 768px) {
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    text-align: center;
  }
  
  .newsletter-title {
    font-size: var(--font-size-3xl);
  }
  
  .newsletter-features {
    align-items: center;
  }
  
  .newsletter-circle-1,
  .newsletter-circle-2 {
    display: none;
  }
  
  .input-group {
    gap: var(--spacing-3);
  }
  
  .newsletter-section {
    padding: var(--spacing-16) 0;
  }
}

/* Footer */
.footer {
  background-color: #1a2332;
  color: var(--white);
  padding: 0;
}

/* Main Footer Content */
.footer-main {
  display: flex;
  gap: var(--spacing-12);
  padding: var(--spacing-16) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

/* Footer Logo Section */
.footer-logo-section {
  flex: 0 0 300px;
  margin-right: var(--spacing-16);
}

.footer-logo-section .footer-logo {
  margin-bottom: var(--spacing-4);
}

.footer-logo-section .footer-logo img {
  height: 200px;
  filter: none;
}

.footer-logo-section h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-2);
}

.footer-logo-section p {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-8);
}

.footer-column {
  color: var(--white);
}

.footer-column h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-4);
  color: var(--white);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: var(--spacing-2);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
}

.mini-newsletter-form {
  display: flex;
  gap: var(--spacing-2);
}

.mini-newsletter-form input {
  flex: 1;
  padding: var(--spacing-2) var(--spacing-3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: var(--font-size-sm);
}

.mini-newsletter-form button {
  padding: var(--spacing-2) var(--spacing-3);
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: background-color var(--transition-fast);
}

.mini-newsletter-form button:hover {
  background-color: var(--primary-blue-dark);
}

/* Mini Newsletter Consent */
.mini-newsletter-consent {
  margin-top: var(--spacing-2);
}

.mini-consent-checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  cursor: pointer;
  font-size: var(--font-size-xs);
}

.mini-consent-checkbox input[type="checkbox"] {
  display: none;
}

.mini-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mini-consent-checkbox input[type="checkbox"]:checked + .mini-checkmark {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.mini-consent-checkbox input[type="checkbox"]:checked + .mini-checkmark::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.mini-consent-text {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding: var(--spacing-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.footer-legal-links {
  display: flex;
  gap: var(--spacing-6);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Partner logos row in footer */
.footer-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  padding: 20px 0 0 0;
}

.footer-partners img {
  max-height: 60px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-partners img:hover { opacity: 1; transform: translateY(-2px); }

@media (max-width: 768px) {
  .footer-partners { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .footer-partners img { max-height: 48px; }
}

/* Community-focused styling */
.community-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  background: linear-gradient(
    135deg,
    var(--nature-green) 0%,
    var(--warm-orange) 100%
  );
  color: var(--white);
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Special styling for aktuelles section badge */
/* Simple styling for badges and titles */
.simple-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-4);
}

.simple-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-4);
  text-align: left;
}

/* Different color variations for badges and titles */
.green-badge {
  background: var(--nature-green);
}

.purple-badge {
  background: var(--community-purple);
}

.green-title {
  color: var(--nature-green);
}

.green-subtitle {
  color: #6b7280;
}

.purple-title {
  color: var(--community-purple);
}

.teal-title {
  color: var(--teal-accent);
}

.teal-subtitle {
  color: #6b7280;
}

.primary-subtitle {
  color: #6b7280;
}

.orange-title {
  color: var(--warm-orange);
}

.red-title {
  color: #ed1c24;
}

.red-subtitle {
  color: #6b7280;
}

.aktuelles .community-badge {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--teal-accent) 100%
  );
  color: var(--white);
  border: 1px solid var(--primary-blue);
  backdrop-filter: blur(10px);
}

/* Special styling for schwerpunkte section badge */
.schwerpunkte .community-badge {
  background: linear-gradient(
    135deg,
    var(--nature-green) 0%,
    var(--warm-orange) 100%
  );
  color: var(--white);
  border: 1px solid var(--nature-green);
  backdrop-filter: none;
}



.diversity-highlight {
  position: relative;
  padding: var(--spacing-4);
  background: linear-gradient(
    135deg,
    rgba(78, 157, 68, 0.1) 0%,
    rgba(255, 107, 53, 0.1) 50%,
    rgba(142, 68, 173, 0.1) 100%
  );
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--nature-green);
}

.colorful-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--nature-green) 0%,
    var(--warm-orange) 25%,
    var(--sunny-yellow) 50%,
    var(--community-purple) 75%,
    var(--teal-accent) 100%
  );
  border-radius: 2px;
  margin: var(--spacing-8) 0;
}

/* Wave Effect Styles */
.waves {
  position: relative;
  width: 100%;
  height: 10vh;
  margin-bottom: -7px; /* Fix for safari gap */
  min-height: 60px;
  max-height: 100px;
}

.waves svg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Top Wave Styles */
/* .top-waves {
    position: relative;
    width: 100%;
    height: 11vh;
    margin-top: -7px;
    min-height: 70px;
    max-height: 120px;
    overflow: hidden;
    line-height: 0;
    background: #a6b2e0;
}

.top-wave {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
} */
.top-waves,
.footer-waves {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px; /* ensures no gap */
}

.top-waves svg,
.footer-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.top-waves .shape-fill {
  fill: transparent;
}

.footer-waves .shape-fill {
  fill: #1a2332;
}

/* .parallax > use {
  animation: none;
  transition: all 0.3s ease;
}

.top-parallax .stable-wave {
  animation: none !important;
  transform: none !important;
}

.top-waves:hover .top-parallax .animated-wave {
  /* animation removed */
}

.top-waves:hover .top-parallax .stable-wave {
  /* animation removed */
}

.top-waves .top-parallax use {
  /* animation removed */
  animation-delay: -2s;
  animation-duration: 15s;
} */

@keyframes moveWave {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100px);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever-slow {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Footer Wave Styles */
.footer-waves {
  position: relative;
  width: 100%;
  height: 12vh;
  margin-bottom: -7px;
  min-height: 70px;
  max-height: 120px;
  overflow: hidden;
}

/* Simple blue background for sections */
.rainbow-background {
  background: #004080;
}

/* Rainbow gradient for footer waves */
.footer-rainbow-gradient {
  background: linear-gradient(90deg, 
    #1f2d98 0%,     /* Dunkelblau / Violett */
    #3fa9f5 14.28%, /* Hellblau */
    #009640 28.56%, /* Grün */
    #fcee21 42.84%, /* Gelb */
    #f7941e 57.12%, /* Orange */
    #ed1c24 71.4%,  /* Rot */
    #ec008c 85.68%, /* Magenta / Pink */
    #662d91 100%    /* Lila / Dunkelviolett */
  );
}

.footer-wave {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.footer-parallax .stable-wave {
  animation: none !important;
  transform: none !important;
}

.footer-waves:hover .footer-parallax .animated-wave {
  /* animation removed */
  animation-delay: -2s;
  animation-duration: 12s;
}

.footer-waves:hover .footer-parallax .stable-wave {
  animation: none !important;
  transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-3);
  }

  .logo-section {
    padding: var(--spacing-4) 0;
  }

  .nav-section {
    padding: var(--spacing-3) 0;
    position: relative;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    gap: var(--spacing-4);
    z-index: 100;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .schwerpunkte-slider .schwerpunkt-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 300px;
    min-height: 420px;
    height: auto;
  }
  
  .schwerpunkte-slider .schwerpunkte-arrow-left {
    left: -50px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .schwerpunkte-slider .schwerpunkte-arrow-right {
    right: -50px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .news-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 320px;
  }
  
  .aktuelles-slider {
    max-width: 100%;
    margin: 20px;
    padding: 30px 20px;
  }
  
  .aktuelles-slider .slider-container {
    overflow: visible;
    padding: 0;
  }
  
  .slider-arrow {
    width: 60px;
    height: 60px;
  }
  
  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .aktuelles-slider .slider-arrow-left {
    left: 10px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  .aktuelles-slider .slider-arrow-right {
    right: 10px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
  
  /* Map responsive */
  .map-container {
    flex-direction: column;
    gap: var(--spacing-4);
  }
  
  .interactive-map {
    height: 360px;
  }
  
  .map-legend {
    min-width: auto;
    width: 100%;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-section .container {
    flex-direction: column;
    gap: var(--spacing-6);
    text-align: center;
  }

  /* Header Logo and Mobile Menu Updates */
  .stage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px;
  }

  .stage-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    position: relative;
  }

  /* Logo section - left side */
  .stage-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  /* Remove default pseudo-logo; the scrolled heart is handled elsewhere */
  .stage-nav-logo::before { display: none; content: ''; width: 0; height: 0; background: none; }

  /* Navigation title */
  .nav-title {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 120px);
  }

  /* Mobile toggle - right side */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Hamburger animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile menu */
  .stage-nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9998;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex !important;
  }

  /* Menu slides in from right */
  .stage-nav-menu.active {
    right: 0;
  }

  /* Dark overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Menu items */
  .stage-nav-item {
    display: block;
    width: 100%;
    margin: 5px 0;
  }

  .stage-nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .stage-nav-link:hover,
  .stage-nav-link.active {
    background: #f0f7ff;
    color: #2563A5;
  }

  /* Dropdown handling */
  .dropdown-menu {
    position: static;
    display: none;
    background: #f8f9fa;
    padding: 10px 0;
    margin: 10px 0 0 0;
    border-radius: 8px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle::after {
    content: '+';
    float: right;
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(45deg);
  }

  .dropdown-link {
    padding: 10px 20px 10px 40px;
    font-size: 1rem;
    color: #666;
  }

  .dropdown-link:hover {
    background: #e8f3ff;
    color: #2563A5;
  }

  /* Mobile: show header logo at left like landing page */
  .stage-nav-logo img {
    display: block;
    height: 32px;
    opacity: 1;
    visibility: visible;
  }

  /* Adjust main content padding for fixed header */
  .main {
    padding-top: 70px;
  }

  .stage-hero {
    padding-top: 0;
  }

  .footer-main {
    flex-direction: column;
    gap: var(--spacing-6);
    text-align: center;
  }

  .footer-logo-section {
    flex: none;
    margin-right: 0;
    margin-bottom: var(--spacing-4);
    padding: 0 var(--spacing-4);
  }

  .footer-logo-section .footer-logo img {
    height: 120px;
  }

  .footer-logo-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
  }

  .footer-logo-section p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr); /* keep compact on medium screens */
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
  }

  .footer-column {
    padding: var(--spacing-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-column h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: var(--spacing-2);
  }

  .footer-column ul {
    margin: 0;
  }

  .footer-column li {
    margin-bottom: var(--spacing-1);
  }

  .footer-column a {
    font-size: var(--font-size-sm);
    display: block;
    padding: var(--spacing-1) 0;
    transition: all 0.2s ease;
  }

  .footer-column a:hover {
    color: var(--teal-light);
    padding-left: var(--spacing-2);
  }

  .mini-newsletter-form {
    flex-direction: column;
    gap: var(--spacing-2);
    margin-top: var(--spacing-3);
  }

  .mini-newsletter-form input {
    width: 100%;
    padding: var(--spacing-3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .mini-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .mini-newsletter-form button {
    padding: var(--spacing-3);
    width: 100%;
    border-radius: var(--border-radius);
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .mini-newsletter-form button:hover {
    background: var(--primary-blue-dark);
  }

  .newsletter-form-main {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form-main input {
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-3);
    padding: var(--spacing-4) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-3);
  }

  .footer-legal-links a {
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
  }

  .footer-legal-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .event-card {
    flex-direction: column;
    text-align: left;
    min-height: auto;
  }

  .event-date {
    align-self: stretch;
    width: 100%;
    min-width: auto;
    padding: var(--spacing-4);
    border-radius: 20px 20px 0 0;
  }
  
  .event-date::after {
    display: none;
  }
  
  .event-day {
    font-size: 2rem;
  }

  .hero-stats {
    gap: var(--spacing-4);
    justify-content: center;
  }

  .hero-stat {
    min-width: 100px;
    padding: var(--spacing-3);
  }

  .hero-stat strong {
    font-size: var(--font-size-xl);
  }

  .hero-stat span {
    font-size: var(--font-size-xs);
  }

  /* Mobile wave adjustments */
  .waves {
    height: 30px;
    min-height: 30px;
  }

  .top-waves {
    height: 60px;
    min-height: 60px;
  }

  .footer-waves {
    height: 30px;
    min-height: 30px;
  }

  /* Aktuelles waves mobile adjustments */
  .aktuelles-top-wave,
  .aktuelles-bottom-wave {
    height: 40px;
  }

  .aktuelles-top-wave svg,
  .aktuelles-bottom-wave svg {
    height: 40px;
  }

  /* Veranstaltungen waves mobile adjustments */
  .veranstaltungen-top-wave,
  .veranstaltungen-bottom-wave {
    height: 40px;
  }

  .veranstaltungen-top-wave svg,
  .veranstaltungen-bottom-wave svg {
    height: 40px;
  }

  /* Map waves mobile adjustments */
  .map-top-wave,
  .map-bottom-wave {
    height: 40px;
  }

  .map-top-wave svg,
  .map-bottom-wave svg {
    height: 40px;
  }


}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .news-card {
    height: 520px;
  }
  
  .aktuelles-slider .news-card {
    height: 520px;
    flex: 0 0 360px;
    min-width: 360px;
  }
  
  .news-content {
    padding: 20px 20px 16px 20px;
  }
  
  .news-title {
    font-size: 1.1rem;
    min-height: 3.2em;
  }
  
  .news-image {
    height: 160px;
  }
  
  .news-link {
    padding: 0;
    font-size: 0.85rem;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  /* Schwerpunkte mobile adjustments - Centered */
  .schwerpunkte {
    max-width: 100%;
    margin: 20px;
    padding: 40px 30px;
  }
  
  .schwerpunkte::before,
  .schwerpunkte::after {
    width: 250px;
    height: 250px;
  }
  
  .schwerpunkt-card {
    margin-bottom: var(--spacing-6);
  }
  
  .card-content {
    padding: var(--spacing-8);
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-title {
    font-size: var(--font-size-xl);
  }

  .card-content,
  .news-content {
    padding: var(--spacing-4);
  }

  .event-card {
    padding: var(--spacing-4);
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3);
  }

  .footer-links-grid {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: var(--spacing-3);
  }

  .footer-logo-section {
    padding: 0 var(--spacing-2);
  }

  .footer-logo-section .footer-logo img {
    height: 100px;
  }

  .footer-logo-section h3 {
    font-size: var(--font-size-lg);
  }

  .footer-column {
    padding: var(--spacing-2);
    margin-bottom: var(--spacing-2);
  }

  .footer-column h4 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-2);
  }

  .footer-column a {
    font-size: var(--font-size-xs);
    padding: var(--spacing-1) 0;
  }

  .footer-bottom {
    padding: var(--spacing-3) 0;
    gap: var(--spacing-2);
  }

  .footer-legal-links {
    gap: var(--spacing-2);
  }

  .footer-legal-links a {
    font-size: var(--font-size-xs);
    padding: var(--spacing-1);
  }
}
/* ====================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ==================================== */

/* Mobile-First Base Styles */
@media screen and (max-width: 768px) {
  /* Reset for mobile */
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Typography Scale for Mobile */
  :root {
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.5rem;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Hero Section Mobile */
  .stage-hero {
    min-height: 500px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .stage-hero h1 {
    font-size: 2.5rem !important;
    padding: 0 20px;
    text-align: center;
  }
  
  .stage-hero p {
    font-size: 1rem !important;
    padding: 0 20px;
  }
  
  .stage-content {
    padding: 60px 15px 40px !important;
  }
  
  .stage-logo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .stage-logo img {
    max-width: 150px;
    height: auto;
  }
  
  /* Navigation Mobile */
  .stage-navigation {
    padding: 15px;
  }
  
  .stage-nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  
  .stage-nav-menu.active {
    left: 0;
  }
  
  .stage-nav-item {
    margin: 10px 0;
    width: 100%;
  }
  
  .stage-nav-link {
    display: block;
    padding: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-menu {
    position: static;
    display: block;
    background: #f8f9fa;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-link {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
  }
  
  .mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Grid Layouts Mobile */
  [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
  
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  [style*="display: grid"] {
    gap: 20px !important;
  }
  
  /* Cards Mobile */
  .card, [style*="border-radius: 20px"], [style*="border-radius: 15px"] {
    margin-bottom: 20px;
  }
  
  /* Forms Mobile */
  form {
    padding: 30px 20px !important;
  }
  
  input, textarea, select {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Buttons Mobile */
  button, .btn, [style*="padding: 15px"] {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 1rem !important;
  }
  
  /* Section Spacing Mobile */
  .content-section, section {
    padding: 40px 0 !important;
  }
  
  /* Text Alignment Mobile */
  .section-header {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  
  h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Image Responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Table Responsive */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  /* Footer Mobile */
  .footer-main {
    padding: 40px 20px !important;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr !important; /* keep stacked in special mobile override */
    gap: 30px !important;
  }
  
  .footer-waves {
    height: 80px;
  }
  
  /* Newsletter Form Mobile */
  .mini-newsletter-form {
    flex-direction: column;
  }
  
  .mini-newsletter-form input {
    margin-bottom: 10px;
    width: 100%;
  }
  
  .mini-newsletter-form button {
    width: 100%;
  }
  
  /* Specific Page Adjustments */
  
  /* Contact Page Mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Events Page Mobile */
  .event-card {
    margin-bottom: 20px;
  }
  
  [style*="display: flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  /* News Cards Mobile */
  .news-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Team Cards Mobile */
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Downloads Mobile */
  .download-item {
    margin-bottom: 20px;
  }
  
  /* Schedule Mobile */
  [style*="grid-template-columns: repeat(7"] {
    display: block !important;
  }
  
  /* Hide decorative elements on mobile */
  [style*="position: absolute"][style*="font-size: 8rem"],
  [style*="position: absolute"][style*="opacity: 0.1"] {
    display: none !important;
  }
  
  /* Overflow handling */
  [style*="overflow: hidden"] {
    overflow: visible !important;
  }
  
  /* Padding adjustments */
  [style*="padding: 60px"],
  [style*="padding: 50px"],
  [style*="padding: 40px"] {
    padding: 30px 20px !important;
  }
  
  /* Font size adjustments */
  [style*="font-size: 4rem"] {
    font-size: 2.5rem !important;
  }
  
  [style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }
  
  [style*="font-size: 2.5rem"] {
    font-size: 1.75rem !important;
  }
  
  [style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }
  
  [style*="font-size: 1.8rem"] {
    font-size: 1.4rem !important;
  }
  
  [style*="font-size: 1.5rem"] {
    font-size: 1.25rem !important;
  }
  
  /* Margin adjustments */
  [style*="margin-bottom: 60px"] {
    margin-bottom: 30px !important;
  }
  
  [style*="margin-bottom: 50px"] {
    margin-bottom: 25px !important;
  }
  
  [style*="margin-bottom: 40px"] {
    margin-bottom: 20px !important;
  }
  
  /* Max width adjustments */
  [style*="max-width: 1000px"],
  [style*="max-width: 900px"],
  [style*="max-width: 800px"] {
    max-width: 100% !important;
  }
  
  /* Flex gap adjustments */
  [style*="gap: 60px"] {
    gap: 30px !important;
  }
  
  [style*="gap: 50px"] {
    gap: 25px !important;
  }
  
  [style*="gap: 40px"] {
    gap: 20px !important;
  }
  
  /* Border radius for smaller screens */
  [style*="border-radius: 30px"] {
    border-radius: 20px !important;
  }
  
  [style*="border-radius: 20px"] {
    border-radius: 15px !important;
  }
  
  /* Box shadow adjustments */
  [style*="box-shadow: 0 15px 40px"],
  [style*="box-shadow: 0 20px 50px"] {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  }
  
  /* Gradient text fix for mobile */
  [style*="-webkit-background-clip: text"] {
    -webkit-text-fill-color: #2563A5 !important;
  }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .stage-hero h1 {
    font-size: 3rem !important;
  }
  
  [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .stage-nav-menu {
    gap: 20px;
  }
  
  .stage-nav-link {
    font-size: 0.95rem;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .stage-hero h1 {
    font-size: 2rem !important;
  }
  
  .stage-hero p {
    font-size: 0.9rem !important;
  }
  
  .container {
    padding: 0 10px;
  }
  
  [style*="padding: 30px 20px"] {
    padding: 20px 15px !important;
  }
  
  .btn, button {
    font-size: 0.9rem !important;
    padding: 14px 20px !important;
  }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .stage-hero {
    min-height: 400px !important;
  }
  
  .stage-nav-menu {
    height: calc(100vh - 60px);
  }
}

/* Print Styles */
@media print {
  .mobile-toggle,
  .stage-navigation,
  .footer,
  .footer-waves {
    display: none !important;
  }
}/* Additional Mobile Fixes and Improvements */

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
  /* Navigation header */
  .stage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  /* Add padding to main content to account for fixed header */
  .main {
    padding-top: 70px;
  }
  
  /* Navigation title */
  .nav-title {
    font-size: 0.9rem !important;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Stage logo in navigation - hide on mobile */
  .stage-nav-logo img {
    display: block;
    height: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
  }
  .stage-header.scrolled .stage-nav-logo img {
    opacity: 1; visibility: visible;
  }
  
  /* Ensure mobile toggle is visible */
  .mobile-toggle {
    display: flex !important;
  }
  
  /* Desktop navigation hide */
  .stage-nav-menu {
    display: none !important;
  }
  
  .stage-nav-menu.active {
    display: flex !important;
  }
  
  /* Fix dropdown behavior on mobile */
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }
  
  .dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  /* Touch-friendly sizes */
  .stage-nav-link,
  .dropdown-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Hero section adjustments */
  .stage-hero {
    background-attachment: scroll !important;
  }
  
  /* Fix text centering in hero */
  .stage-hero > div > div[style*="text-align: center"] {
    padding: 20px !important;
  }
  
  /* Responsive images */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Fix overflow issues */
  .container,
  .content-section,
  section {
    overflow-x: hidden;
  }
  
  /* Card improvements */
  [style*="box-shadow"] {
    margin: 10px;
    width: calc(100% - 20px) !important;
  }
  
  /* Form improvements */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100% !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* Button improvements */
  button,
  .btn,
  a[style*="padding"][style*="border-radius"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Fix horizontal scroll issues */
  [style*="position: absolute"][style*="left: -20px"] {
    left: 0 !important;
  }
  
  /* Newsletter form fixes */
  [style*="display: flex"][style*="gap: 15px"] {
    flex-direction: column !important;
  }
  
  /* Event cards mobile */
  [style*="min-width: 400px"] {
    min-width: 100% !important;
  }
  
  /* Team cards mobile */
  [style*="minmax(350px"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Fix gradient text on mobile */
  h1, h2, h3 {
    -webkit-text-fill-color: initial !important;
    background: none !important;
    color: #1e293b !important;
  }
  
  .stage-hero h1,
  .stage-hero h2,
  .stage-hero p {
    color: white !important;
  }
  
  /* Footer fixes */
  .footer-wave {
    height: 60px !important;
  }
  
  /* Announcement bar mobile */
  .announcement-bar {
    padding: 10px !important;
    font-size: 0.8rem !important;
  }
  
  /* Stats section mobile */
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Fix padding on small screens */
  [style*="padding: 80px 0"] {
    padding: 40px 0 !important;
  }
  
  [style*="padding: 100px"] {
    padding: 40px 20px !important;
  }
  
  /* Contact form mobile */
  [style*="display: grid"][style*="gap: 60px"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  /* Schedule grid mobile */
  [style*="grid-template-columns: repeat(7, 1fr)"] {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Age group cards mobile */
  [style*="width: 120px"][style*="height: 120px"] {
    width: 80px !important;
    height: 80px !important;
  }
  
  /* Download cards mobile */
  [style*="minmax(300px, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Fix absolute positioned elements */
  [style*="position: absolute"][style*="top: 20px"][style*="left: -20px"] {
    position: static !important;
    margin: 20px auto !important;
    display: block !important;
  }
}

/* Tablet specific fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Grid adjustments for tablets */
  [style*="grid-template-columns: repeat(auto-fit, minmax(400px"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Container width */
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}

/* High DPI screen adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Sharper borders and shadows */
  [style*="border"] {
    border-width: 0.5px;
  }
  
  [style*="box-shadow"] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Add dark mode styles here if needed */
}

/* Print styles */
@media print {
  .stage-header,
  .footer,
  .mobile-toggle,
  [style*="background-image"] {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}/* Mobile Header and Logo Fixes */

/* Fix for mobile header and logo positioning */
@media (max-width: 768px) {
  /* Ensure header has proper z-index and background */
  .stage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px;
  }
  
  /* Fix main content padding to account for fixed header */
  .main {
    padding-top: 70px !important;
  }
  
  /* Fix stage hero to account for fixed header */
  .stage-hero {
    margin-top: 0 !important;
    padding-top: 70px !important;
  }
  
  /* Fix logo positioning in hero section */
  .stage-hero .stage-logo {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 20px auto !important;
    display: block !important;
    text-align: center !important;
    z-index: 1000 !important;
  }
  
  /* Navigation fixes */
  .stage-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 15px;
  }
  /* Make header background transparent like start site on mobile */
  .stage-header {
    background: transparent !important;
    box-shadow: none !important;
  }
  
  /* Mobile menu - ensure it's below header */
  .stage-nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: white !important;
    flex-direction: column !important;
    padding: 20px !important;
    overflow-y: auto !important;
    transition: left 0.3s ease !important;
    z-index: 9998 !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
    display: flex !important;
  }
  
  /* When menu is active */
  .stage-nav-menu.active {
    left: 0 !important;
  }
  
  /* Mobile toggle button - ensure it's visible and clickable */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 10000 !important;
    position: relative !important;
  }
  
  .mobile-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #333 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
  }
  
  /* Hamburger animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
  }
  
  /* Ensure nav title is visible */
  .nav-title {
    font-size: 0.9rem !important;
    color: #333 !important;
    max-width: 200px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Hide desktop navigation items by default */
  .stage-nav-item {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 !important;
  }
  
  /* Style navigation links */
  .stage-nav-link {
    display: block !important;
    padding: 15px !important;
    font-size: 1.1rem !important;
    color: #333 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eee !important;
    background: transparent !important;
  }
  
  .stage-nav-link:hover,
  .stage-nav-link.active {
    background: #f5f5f5 !important;
    color: #2563A5 !important;
  }
  
  /* Dropdown menus on mobile */
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: #f8f9fa !important;
    padding: 10px 0 !important;
    margin-top: 10px !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  .dropdown-link {
    padding: 10px 20px 10px 40px !important;
    font-size: 1rem !important;
  }
  
  /* Fix content sections */
  .stage-content {
    padding-top: 20px !important;
  }
  
  /* Ensure proper text contrast in hero */
  .stage-hero h1,
  .stage-hero p {
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* Add overlay to ensure logo is visible */
  .stage-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
  }
  
  .stage-hero > * {
    position: relative;
    z-index: 1;
  }
}

/* Desktop and Tablet Logo Styles */
@media (min-width: 769px) {
  .stage-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
  }
  
  .stage-nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .stage-nav-logo::before {
    content: '';
    display: none; /* hidden by default */
    width: 40px;
    height: 40px;
    background: url('logo.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }
  .stage-header.scrolled .stage-nav-logo::before { display: block; }
  
  .stage-nav-logo img {
    height: 40px;
    width: auto;
  }
  
  .mobile-toggle {
    display: none !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .stage-header {
    height: 60px;
  }
  
  .stage-navigation {
    height: 60px;
  }
  
  .main {
    padding-top: 60px !important;
  }
  
  .stage-hero {
    padding-top: 60px !important;
  }
  
  .stage-nav-menu {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
  }
  
  .nav-title {
    font-size: 0.8rem !important;
    max-width: 150px !important;
  }
}