/* CSS-Variablen */
:root {
  --font-family: 'Poppins', sans-serif;
  --font-size-base: 16px;
  --font-size-large: 32px;
  --font-size-medium: 20px;
  --font-size-small: 14px;
  --font-weight-light: 300;
  --font-weight-bold: 600;
  --font-weight-black: 900;
  --spacing-large: 50px;
  --spacing-medium: 25px;
  --spacing-small: 15px;
  --color-primary: #f4f4f4;
  --color-secondary: #151515;
  --color-accent: #E6007E;
  --color-hover: #e6e6e6;
  --color-background: radial-gradient(circle at 100% 50%, #ff00fb, #EFAC00, #E6007E, #2F28FF);
  --header-height: 60px;
  --blur-effect: blur(10px);
  --translucent-white: rgba(255, 255, 255, 0.8);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --button-background: #E6007E;
  --color-error: #FF0000;
  --color-success: #28a745;
  --color-border: #000;
  /* Schwarzer Rand für Eingabefelder */
  --zentrierte-font-family: 'Poppins', sans-serif;
  --zentrierte-font-size-base: 16px;
  --zentrierte-font-size-medium: 20px;
  --zentrierte-font-size-small: 14px;
  --zentrierte-font-weight-light: 300;
  --zentrierte-font-weight-bold: 600;
  --zentrierte-color-text: #000000;
  --zentrierte-color-accent: #E6007E;
  --zentrierte-color-secondary: #313131ba;
  --zentrierte-spacing-large: 50px;
  --zentrierte-spacing-medium: 25px;
  --zentrierte-spacing-small: 15px;
  --zentrierte-transition-speed: 0.3s;
  --zentrierte-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* Container */
.nc-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* Timeline Section */
.nc-timeline {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 50px;
}

.timeline-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.timeline-header h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.timeline-header p {
  font-size: 16px;
  color: #777;
}

.nc-timeline-items {
  position: relative;
  padding: 20px 0;
}

/* Vertikale Linie der Timeline */
.nc-timeline-items::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #e0e0e0;
}

/* Timeline Items */
.nc-timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.nc-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.nc-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.nc-timeline-marker {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(270deg, #ff00dd, #ffd900);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.nc-timeline-item:nth-child(odd) .nc-timeline-marker {
  right: -20px;
}

.nc-timeline-item:nth-child(even) .nc-timeline-marker {
  left: -20px;
}

.marker-icon {
  font-size: 18px;
}

.nc-timeline-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nc-timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.nc-timeline-date {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.nc-version {
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  margin-right: 10px;
  font-size: 14px;
  background: linear-gradient(270deg, #ff00dd, #ffd900);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
}

.nc-date {
  color: #777;
  font-size: 14px;
}



.nc-timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}


.nc-timeline-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.nc-timeline-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 16px;
}

.nc-timeline-content ul li::before {
  content: "\f00c";
  /* Font Awesome Check Icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4081;
  font-size: 16px;
}

/* Footer */
.nc-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.nc-footer p {
  margin-bottom: 15px;
  font-size: 14px;
}

.nc-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.nc-social a:hover {
  color: #ff4081;
}

/* Responsives Design */
@media (max-width: 1024px) {
  .nc-timeline-item {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .nc-timeline-items::before {
    left: 20px;
  }

  .nc-timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
    margin-bottom: 30px;
  }

  .nc-timeline-item:nth-child(odd),
  .nc-timeline-item:nth-child(even) {
    left: 0;
  }

  .nc-timeline-item .nc-timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .timeline-header h2 {
    font-size: 28px;
  }

  .timeline-header h2::after {
    width: 40px;
  }

  .nc-timeline-content {
    padding: 20px 25px;
  }

  .nc-timeline-content h3 {
    font-size: 14px;
  }

  .nc-timeline-content ul li {
    font-size: 12px;
  }
}


body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--color-primary);
  /* Hintergrundfarbe des gesamten Body */
  touch-action: pan-y;
  /* nur vertikales Scrollen der Seite */
  overscroll-behavior-x: none;
  overflow-x: hidden;
  /* verhindert horizontales Scrollen der Seite */
}

h2 {
  color: var(--color-accent);
}

.slider,
.swiper,
.splide,
.carousel,
[data-slider] {
  touch-action: pan-y pan-x;
  /* overflow-x: auto;  nur, wenn du native scrollbare Reihen hast */
}



/* Header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--color-primary);
  backdrop-filter: var(--blur-effect);
  -webkit-backdrop-filter: var(--blur-effect);

  transition: background var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.header.scrolled {
  background: #ffffffc8;

}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
}

.logo img {
  height: 200px;
  width: auto;

}



/* Mobile Menü Icon in der Mitte */
.center-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu-icon {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--transition-speed) var(--transition-ease);
}

.mobile-menu-icon span {
  width: 22px;
  height: 2px;
  background: var(--color-secondary);
  display: block;
  transition: all var(--transition-speed) var(--transition-ease);
}

.mobile-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-icon.active span:nth-child(2) {
  opacity: 0;
}

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

/* Navigation Bar */
.nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--translucent-white);
  backdrop-filter: var(--blur-effect);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: max-height var(--transition-speed) var(--transition-ease), opacity var(--transition-speed) var(--transition-ease), transform var(--transition-speed) var(--transition-ease);
  z-index: 999;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
}

.nav.active {
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0);
  z-index: 999;
}

/* Ensures the nav grows to fit content */
.nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity var(--transition-speed) var(--transition-ease);
  list-style-type: none;
  padding-left: 0;
  z-index: 999;
}

.nav-list li {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 10px 0;
  transition: background-color var(--transition-speed) var(--transition-ease);
  opacity: 0;
  transform: translateY(-10px);
  animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list li a {
  display: block;
  padding: 10px 15px;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: color var(--transition-speed) var(--transition-ease), background-color var(--transition-speed) var(--transition-ease);
  font-size: var(--font-size-medium);
}

.nav-list li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}


/* Dropdown Menu */
.dropdown {
  background-color: var(--color-primary);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
  overflow-x: hidden;
}

.nav-list li:hover .dropdown,
.nav-list li:focus-within .dropdown {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  border-radius: 8px;
  background-color: var(--blur-effect);
}

.dropdown li {
  padding: 5px 15px;
  transition: background-color var(--transition-speed) var(--transition-ease);
}

.dropdown li a {
  padding: 10px 15px;
  display: block;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: var(--font-weight-light);
  transition: color var(--transition-speed) var(--transition-ease);
  font-size: var(--font-size-small);
}

.dropdown li a:hover {
  color: var(--color-accent);
}

.nav-list li a i {
  transition: transform 0.3s ease;
}

.nav-list li:hover a i {
  transform: rotate(180deg);
}

.nav-list li:hover a i {
  transform: rotate(180deg);
}

.nav-list li:not(:hover) a i {
  transform: rotate(0deg);
}

/* Button-Styling im Header */
.header-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--color-secondary);
  padding: 6px 14px;
  /* Reduziertes Padding */
  border-radius: 50px;
  /* Weniger abgerundete Ecken */
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
  font-size: 13px;
  /* Kleinere Schriftgröße */
  margin-left: 30px;
  /* Reduzierter linker Abstand */
}

.header-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0px 0px 6px var(--color-accent);
  /* Kleinere Schatten */
}



/* Allgemeiner Button-Stil */
.btn {
  display: inline-block;
  background-color: var(--button-background);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  border: 2px solid var(--button-background);
  font-size: var(--font-size-small);
}

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: 0px 0px 8px var(--button-background);
}


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

  25% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ---------------------------------------------------------
   Hero-Section Grundstruktur
   --------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  /* Vollbild-Höhe */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  overflow: hidden;
}

/* NEUE KLASSE FÜR DIE HERO-GREETING-BOX */
.hero-greeting {
  position: absolute;
  /* Abstand nach unten: wir nehmen die Header-Höhe + 20px */
  top: calc(var(--header-height, 60px) + 20px);

  /* Horizontale Zentrierung */
  left: 50%;
  transform: translateX(-50%);

  /* Z-Index hoch genug, um über dem hero::before-Gradient zu sein,
       aber (falls gewünscht) immer noch unter dem Header (der meist 999 oder 1000 hat). */
  z-index: 100;

  /* Styles anpassen nach Geschmack */
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.086);
  /* optional leichter dunkler Hintergrund */
  padding: 8px 16px;
  border-radius: 50px;
}



.hero-text {
  font-weight: 900;
}


/* Hintergrundbild im Hero */
.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: translateY(-20px);
  transition: transform 0.3s ease-out;
}

/* Animierter Gradient-Hintergrund im Hero (unter dem Inhalt) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  background-size: 200% 300%;
  filter: blur(30px);
  z-index: 0;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* ---------------------------------------------------------
     Hero-Slideshow Container
     --------------------------------------------------------- */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Ein einzelner Slide in der Slideshow */
.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  /* Startet außerhalb des Bildschirms rechts */
  width: 100%;
  height: 100%;
  padding: 20px;
  opacity: 0;
  transition: transform 0.8s ease, left 0.8s ease, opacity 0.8s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  /* du kannst justify-content anpassen, wenn du’s anders zentrieren willst */
}

/* Slide, das aktiv sichtbar ist */
.hero-slide.active {
  left: 0;
  /* Auf Position 0 rücken */
  opacity: 1;
  /* Volle Sichtbarkeit */
  transform: translateX(0);
}

/* Raus-Animiation nach links */
.hero-slide.slide-out-left {
  left: -100%;
  opacity: 0;
  transform: translateX(-100%);
}

/* Reinkommen von rechts */
.hero-slide.slide-in-right {
  left: 0;
  opacity: 1;
  transform: translateX(0);
}

/* ---------------------------------------------------------
     Inhalte innerhalb eines Slide
     --------------------------------------------------------- */
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-primary);
  max-width: 45%;
  /* Standard: 45% auf größeren Screens */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  /* Für Fade-In, wenn du es brauchst */
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Wenn der Hero sichtbar ist, aktiviere den Fade-In
     (wird z. B. via JS IntersectionObserver getoggelt) */
.hero-visible::before {
  opacity: 1;
  animation: gradientAnimation 40s ease infinite;
}

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

  25% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-visible .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
     Typografie in hero-content
     --------------------------------------------------------- */
.hero-content h1 {
  font-size: 35px;
  font-weight: var(--font-weight-black);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h4 {
  font-size: 20px;
  font-weight: var(--font-weight-black);
}

.hero-content p {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}


body.page-lasertag {
  --color-background: radial-gradient(circle at 30% 40%,
      #0fb400,
      #17770e,
      #063203,
      #041d03);
}


body.page-mcdonalds {
  --color-background: radial-gradient(circle at 30% 40%,
      #ffc108,
      #d44000,
      #f66121,
      #e91b00);
}

.mc-button {
  display: inline-flex;
  align-items: center;
  background-color: #f66121;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold, 600);
  margin-top: 1rem;
  border: 2px solid #f66121;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt */
.mc-button:hover {
  background-color: transparent;
  color: #f66121;
  box-shadow: 0 0 8px #f66121;
}

/* FontAwesome Icon im Button */
.mc-button-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}


.mc-button-container {
  text-align: center;
  /* Zentriert den Button horizontal */
  margin-top: 1rem;
}


@media (min-width: 780px) {

  .mc-button-container {
    text-align: left;
    /* Zentriert den Button horizontal */

  }
}








/* ---------------------------------------------------------
     Buttons im Hero-Bereich
     --------------------------------------------------------- */
.btn {
  display: inline-block;
  background-color: var(--button-background);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  border: 2px solid var(--button-background);
  font-size: 14px;
  margin-bottom: 8px;
  /* leichte Abstände zwischen Buttons */
}

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: 0px 0px 8px var(--button-background);
}

/* ---------------------------------------------------------
     Buttons im Hero-Bereich
     --------------------------------------------------------- */
.btn-hero {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  font-size: 14px;
  margin-bottom: 8px;
  /* leichte Abstände zwischen Buttons */
}

.btn-hero:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0px 0px 8px var(--color-primary);
}

/* ---------------------------------------------------------
     Scroll-Indikator (optional)
     --------------------------------------------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: px;
  z-index: 10;
  margin-bottom: 10px;
}

.scroll-arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(45deg);
  animation: arrowMove 1s infinite alternate;
  opacity: 0.8;
}

.scroll-arrow:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-arrow:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrowMove {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(8px) rotate(45deg);
  }
}

/* ---------------------------------------------------------
     Media Queries für Responsiveness
     --------------------------------------------------------- */

/* Beispiel Desktop - ab 1024px */
@media (min-width: 1024px) {

  /* Hier kannst du die hero-content Max-Breite begrenzen */
  .hero-slide .hero-content {
    max-width: 45%;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 1.2;
  }
}

/* Beispiel Tablet - 768px bis 1023px */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-slide .hero-content {
    max-width: 60%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
  }
}

/* Beispiel Mobile - unter 768px */
@media (max-width: 767px) {
  .hero-slide .hero-content {
    max-width: 90%;
    /* oder 100%, wenn du’s randbündig willst */
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content h4 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* Beispiel Very Small - unter 480px (optional) */
@media (max-width: 480px) {
  .hero-slide .hero-content {
    padding: 0px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content h4 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* Gradient Background */
.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  background-size: 400% 400%;
  filter: blur(30px);
  animation: gradientAnimation 15s ease infinite;
  z-index: -1;
}

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

  25% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Buttons im Hero-Bereich */
.hero-buttons .btn {
  display: inline-block;
  background-color: var(--button-background);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--button-background);
  font-size: var(--font-size-small);
}

.hero-buttons .btn:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: 0px 0px 8px var(--button-background);
}

/* Optional: Parallax-Effekt für das Hintergrundbild bei aktivierter Klasse */
.hero-visible .hero-image img {
  transform: translateY(0);
  /* Endposition */
}




/* Neue Informationssektion */
.zentrierte-info-sektion {
  padding: var(--zentrierte-spacing-large) var(--zentrierte-spacing-medium);
  max-width: 1200px;
  margin: 40px auto;
}

/* Wrapper mit Flexbox */
.zentrierte-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--zentrierte-spacing-large);
  opacity: 0;
  transform: translateY(20px);
  animation: zentrierteFadeInUp 1s var(--zentrierte-transition-ease) forwards;
  animation-delay: 0.3s;
}

/* Einzelne Informationskategorie */
.zentrierte-info-kategorie {
  text-align: center;
}

/* Überschriften */
.zentrierte-info-titel {
  font-size: var(--zentrierte-font-size-medium);
  font-weight: var(--zentrierte-font-weight-bold);
  margin-bottom: var(--zentrierte-spacing-small);
  color: var(--zentrierte-color-accent);

  padding-bottom: calc(var(--zentrierte-spacing-small) / 2);
}

/* Listenstil */
.zentrierte-info-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Listenpunkte */
.zentrierte-info-liste li {
  font-size: var(--zentrierte-font-size-small);
  font-weight: var(--zentrierte-font-weight-light);
  margin-bottom: var(--zentrierte-spacing-small);
  line-height: 1.6;
  color: #ffffffb2;
}

/* Labels innerhalb der Listen */
.zentrierte-info-label {
  font-weight: var(--zentrierte-font-weight-bold);
  color: #ffffff;
}

/* Animation für das Einblenden */
@keyframes zentrierteFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivität */

/* Größere Bildschirme (Tablets und Desktops) */
@media (min-width: 769px) {
  .zentrierte-info-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .zentrierte-info-kategorie {
    flex: 1;
    max-width: 32%;
    text-align: center;
    /* Immer zentriert */
  }

  .zentrierte-info-kategorie:not(:last-child) {
    margin-right: var(--zentrierte-spacing-medium);
  }

  .zentrierte-info-titel {
    font-size: var(--zentrierte-font-size-medium);
  }

  .zentrierte-info-liste li {
    font-size: var(--zentrierte-font-size-small);
  }
}

/* Kleine Bildschirme (Mobilgeräte) */
@media (max-width: 768px) {
  .zentrierte-info-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .zentrierte-info-kategorie {
    max-width: 100%;
    text-align: center;
  }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
  .zentrierte-info-sektion {
    padding: 20px 10px;
  }

  .zentrierte-info-titel {
    font-size: 24px;
    /* Anpassung auf kleinere Bildschirme */
  }

  .zentrierte-info-liste li {
    font-size: 14px;
  }
}





/* Footer */
/* ================================================================
   FOOTER – Redesign (pinker Hintergrund)
   ================================================================ */
.footer {
  background: #E6007E;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-family);
  border-top: none;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Top section: brand | nav grid | contact */
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 48px;
  padding: 60px 0 40px;
  align-items: flex-start;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-link {
  display: inline-block;
}

.footer-brand-logo {
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-row a:hover {
  background: #fff;
  border-color: #fff;
  color: #E6007E;
}

/* Nav grid */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: #fff;
}

/* Contact column */
.footer-contact-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.footer-contact-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-col address p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
}

.footer-contact-col address p i {
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  text-align: center;
}

.footer-contact-col address a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-col address a:hover {
  color: #fff;
}

/* Bottom bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-cookie-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--font-family);
}

.footer-cookie-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Tablet */
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .footer-brand-tagline {
    flex: 1;
    min-width: 120px;
  }

  .footer-social-row {
    margin-top: 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 28px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-brand-logo {
    height: 52px;
  }

  .footer-brand-tagline {
    font-size: 15px;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-social-row a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav-col h4 {
    font-size: 12px;
  }

  .footer-nav-col ul {
    align-items: center;
    gap: 12px;
  }

  .footer-nav-col ul li a {
    font-size: 15px;
  }

  .footer-contact-col {
    text-align: center;
  }

  .footer-contact-col address {
    align-items: center;
  }

  .footer-contact-col address p {
    font-size: 15px;
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0 20px;
  }

  .footer-bottom-bar p {
    font-size: 13px;
  }

  .footer-cookie-btn {
    font-size: 13px;
    padding: 9px 20px;
  }
}

/* Fixierte runde Buttons unten am Bildschirm */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.round-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--button-background);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0px 4px 10px var(--shadow-color);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  margin-right: 10px;
  margin-bottom: 20px;
}

.round-button i {
  font-size: 24px;
}

.round-button:focus {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.round-button:hover {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.round-button.clicked {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

/* Spezifischer Stil für den Roboter-Button mit Glow-Effekt */
.robot-button {
  position: relative;
  overflow: hidden;
  /* Verhindert Überlauf des Pseudo-Elements */
  border: none;
  outline: none;
  /* Entfernt den Standard-Fokusrahmen */
  box-shadow: none;
  /* Entfernt jegliche standardmäßige Schatten von Browsern */
  transition: transform 0.3s ease;
  -webkit-appearance: none;
  /* Entfernt Standardstile auf WebKit-basierten Browsern */
  -moz-appearance: none;
  /* Entfernt Standardstile auf Mozilla-basierten Browsern */
  appearance: none;
  /* Entfernt Standardstile auf allen Browsern */
  transition: all 0.5s ease;
}


.robot-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  background: radial-gradient(circle at 50% 50%, #ff59fc, #6a00ff, #ffd000, #9d00ff);
  background-size: 200% 200%;
  animation: glowAnimation 4s linear infinite;
  filter: blur(12px);
  z-index: -1;
  transform: translate(-50%, -50%);
}

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

  25% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* Scroll-to-Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  /* Blaues Hintergrundfarbe */
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-align: center;
  border: none;
  /* Keine Border */
  padding: 0;
  /* Kein Padding */
}

/* Visible State */
.scroll-top.show {
  display: flex;
  opacity: 1;
  animation: slideInBottom 0.5s forwards;
}

/* Hidden State */
.scroll-top.hide {
  animation: slideOutBottom 0.5s forwards;
  opacity: 0;
}

/* Icon styling */
.scroll-top i {
  font-size: 24px;
  color: #fff;
  /* Pfeilfarbe */
  text-align: center;

}

@keyframes slideInBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(50px);
    opacity: 0;
  }
}

.robot-button.move-up {
  transform: translateY(-80px);
}

.robot-button.move-down {
  transform: translateY(0);
}





/* Info Extra Section */
.info-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 20px;
  background-color: rgba(171, 171, 171, 0.025);
  border-radius: 15px;
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 5px var(--color-accent);
  max-width: 1200px;
  margin: 40px auto;
}

.info-item {
  text-align: center;
  padding: 20px;
  color: var(--color-secondary);
  font-family: 'Poppins', sans-serif;

}

.info-item h3 {
  font-size: 28px;
  /* Größere Schriftgröße für Überschriften */
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item p {
  font-size: 18px;
  /* Größere Schriftgröße für den Text */
  line-height: 1.6;
  font-weight: 300;
}

.portfolio {
  padding: 20px;
  /* Add padding to create space on the sides */
}

.Portfolio-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2.3rem;
  margin-top: 4.2rem;
}

/* Image Styling */
.row img {
  height: auto;
  width: 100%;
  border-radius: 28px;
  margin-bottom: 1.4rem;
  transition: transform 0.3s ease;
  transform-origin: center bottom;
}

.row img:hover {
  transform: perspective(1000px) rotateX(7deg);
}

/* Row Styling */
.row {
  background-color: white;
  border-radius: 28px;
  border: 1px solid transparent;
  box-shadow: 0 0 5px var(--color-accent);
  padding: 20px;
  transition: all 0.50s ease;
}

.main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.row h5 {
  font-size: 35px;
  margin-left: 10px;
  font-weight: 600;
  color: var(--color-accent);
}

.row i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 25px;
  background-color: transparent;
  color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--color-accent);
  margin-right: 10px;
}

.row h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.row pre {
  color: #4d4d4d;
}

.row:hover {
  border: 1px solid var(--color-accent);
  transform: translateY(-5px) scale(1.03);
}

.btn-row {
  display: inline-block;
  margin-left: 10px;
  background-color: var(--button-background);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--button-background);
  font-size: var(--font-size-small);
  margin-bottom: 10px;
}

.btn-row:hover {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: 0px 0px 8px var(--button-background);
}




/* Kontaktsektion */
.contact-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}

.contact-section h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--color-accent);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid var(--color-border);
  font-size: 1rem;
  outline: none;
  background: var(--color-primary);
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


:root[data-theme="dark"] .form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}


.form-group select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'><path%20fill='%23777'%20d='M2%200L0%202h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--color-secondary);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* animierendes Label (nach oben, wenn ausgefüllt) */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 0.8rem;
  background-color: var(--color-primary);
  padding: 0 5px;
}

.form-group select+label {
  top: -10px;
  font-size: 0.8rem;
  background-color: #fff;
  padding: 0 5px;
  left: 20px;
}

/* Schöne Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.custom-checkbox:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.custom-checkbox:checked::after {
  content: '✓';
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: -2px;
  left: 4px;
}

.checkbox-label {
  font-size: 1rem;
  color: var(--color-secondary);
  user-select: none;
  cursor: pointer;
}

.contact-btn {
  display: inline-block;
  background-color: var(--button-background);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--button-background);
  font-size: var(--font-size-small);
  margin-bottom: 10px;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: 0px 0px 8px var(--button-background);
}

.contact-btn:active {
  transform: scale(0.98);
}

/* Runde Buttons (Telefon etc.) */
.round-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.round-button.extra-button {
  width: 50px;
  height: 50px;
  background-color: var(--button-background);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.round-button.extra-button:hover {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: 0px 0px 8px var(--button-background);
  border: solid 2px var(--button-background);
  transform: scale(1.2);
}

.round-button.extra-button:active {
  transform: scale(0.95);
}

.round-button.extra-button i {
  font-size: 20px;
}

/* Erfolg- und Fehlermeldungen */
#form-messages {
  margin-bottom: 20px;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1rem;
  animation: fadeIn 0.5s ease forwards;
  margin-bottom: 1em;
}

.success-alert {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-alert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.error-alert ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.error-alert li {
  margin-bottom: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* KI-/Vorschlagsbox */
.suggestion-box {
  border: 1px solid #ccc;
  background: #fafafa;
  border-radius: 8px;
  padding: 1em;
  margin-bottom: 1em;
  display: none;
}

.suggestion {
  margin-bottom: 0.8em;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5em;
}

.suggestion:last-child {
  border-bottom: none;
}

.suggestion strong {
  color: #000;
}




/* Bewerbungs-Paneel */
.job-panel {
  position: fixed;
  top: 0;
  right: -200%;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: var(--color-primary, #fff);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.5s ease;
  padding: 60px 30px 30px 30px;
}

.job-panel.open {
  right: 0;
}

.job-panel h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--color-accent, #007bff);
  text-align: center;
}

.close-panel-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: var(--color-accent, #007bff);
  font-size: 1.5em;
  cursor: pointer;
}

.close-panel-btn i {
  color: var(--color-accent, #007bff);
}

.job-form {
  display: flex;
  flex-direction: column;
}

.job-form .btn {
  margin-top: 20px;
}

/* Footer im Bewerbungspanel */
.job-panel-footer {
  margin-top: 200px;
  text-align: center;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 20px;
}

.application-criteria {
  list-style-type: disc;
  padding-left: 20px;
  text-align: center;
  color: var(--color-secondary, #777);
}

.application-criteria li {
  margin-bottom: 10px;
}

/* File Upload */
.file-upload-group {
  position: relative;
}

.file-upload {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px dashed var(--color-border, #ccc);
  cursor: pointer;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload i {
  font-size: 2rem;
  margin-right: 15px;
  color: var(--color-accent, #007bff);
}

.file-upload:hover {
  border-color: var(--color-accent, #007bff);
}

/* Neue Klasse für den Text-Button */
.text-button {
  width: auto;
  /* Automatische Breite basierend auf dem Inhalt */
  padding: 10px 20px;
  /* Innenabstand für bessere Lesbarkeit */
  border-radius: 25px;
  /* Abgerundete Ecken für ein modernes Aussehen */
  font-size: 1rem;
  /* Angemessene Schriftgröße */
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  /* Verhindert das Umbrechen des Textes */
}

/* Optional: Anpassung der allgemeinen runden Buttons, um Platz für Text zu bieten */
.round-button.extra-button {
  width: auto;
  /* Entferne feste Breite */
  height: auto;
  /* Entferne feste Höhe */
  min-width: 120px;
  /* Mindestbreite für Konsistenz */
  height: 50px;
  /* Einheitliche Höhe */
  padding: 0 20px;
  /* Innenabstand */
  font-size: 1rem;
  /* Schriftgröße */
  border-radius: 25px;
  /* Pille-Form */
}

/* Entferne spezifische Stile für das Icon, wenn nicht benötigt */
.text-button i {
  display: none;
}


/* Responsives Design */
@media (max-width: 768px) {

  .contact-section,
  .job-panel {
    padding: 20px;
  }

  .close-panel-btn {
    top: 15px;
    left: 15px;
  }

  .round-buttons {
    gap: 15px;
  }

  .round-button.extra-button {
    width: 40px;
    height: 40px;
  }

  .round-button.extra-button i {
    font-size: 18px;
  }

  .contact-section h3,
  .job-panel h3 {
    font-size: 1.5rem;
  }
}



/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-accent);
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: none;
  /* Standardmäßig ausgeblendet */
  opacity: 0;
  /* Starten mit unsichtbarem Zustand */
  transition: opacity 0.3s ease, background-color 0.3s ease;
  z-index: 10000;
  /* Stellen Sie sicher, dass es über anderen Elementen angezeigt wird */
}

.scroll-top.show {
  display: block;
  opacity: 1;
  /* Sichtbar, wenn die `show` Klasse hinzugefügt wird */
}

.scroll-top:hover {
  background-color: var(--color-secondary);
  /* Ändern der Hintergrundfarbe beim Überfahren */
}



/* Zentrierter Text */
.center-text {
  text-align: center;
}

/* Navigation Buttons */
.nav-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.nav-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-icon-button {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-bottom: 5px;
  position: relative;
}

.nav-icon-button i {
  font-size: 24px;
}

.nav-icon-button:hover {
  background-color: var(--button-background);
  color: white;
  transform: scale(1.1);
}

.nav-text {
  font-size: 14px;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 17px;
}

.tooltip_header {
  position: absolute;
  bottom: 70px;
  /* Position über dem Button */
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: var(--font-size-small);
  transition: visibility 0s, opacity 0.3s ease-in-out;
  box-shadow: 0px 4px 10px var(--shadow-color);
  z-index: 10001;
}

.nav-icon-button:hover .tooltip_header,
.nav-icon-button:focus .tooltip_header {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
  /* Leichtes Hochgleiten beim Anzeigen */
}




/* Tooltip Styling für die Navigation */
.nav-tooltip {
  position: absolute;
  top: 50%;
  left: 100%;
  /* Tooltip rechts neben dem Element */
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: var(--font-size-small);
  transition: visibility 0.2s, opacity 0.2s ease-in-out;
  box-shadow: 0px 4px 10px var(--shadow-color);
  z-index: 10001;
  margin-left: 8px;
}

.nav-list li:hover .nav-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
  /* Leichtes Verschieben beim Anzeigen */
}

.contact-section {
  max-width: 600px;
  margin: 50px auto;
  background-color: var(--color-primary);
  padding: 30px;
  border-radius: 16px;

}

.contact-section h3 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  color: var(--color-accent);
  text-align: center;
}

.contact-section p {
  font-size: var(--font-size-base);
  margin: 8px 0;
  color: var(--color-secondary);
}

.contact-section b {
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
}

.contact-section img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 20px;
}

.contact-info {
  background-color: var(--color-background);
  padding: 20px;
  border-radius: 12px;
  color: var(--color-primary);
  text-align: center;
}








/* Container for the event calendar and button */
.event-calendar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

/* Button to toggle the event calendar panel */
.toggle-panel-btn {
  background-color: var(--button-background);
  color: var(--color-primary);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-panel-btn span {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.toggle-panel-btn:hover {
  background-color: var(--color-hover);
  color: var(--color-accent);
}

/* Event calendar panel */
.event-calendar-panel {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background-color: var(--color-primary);

  transition: right 0.3s ease, box-shadow 0.3s ease;
  overflow-y: auto;
  z-index: 1000;
}

.event-calendar-panel.open {
  right: 0;
  box-shadow: -10px 0 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .event-calendar-panel {
    max-width: 80%;
  }

  .toggle-panel-btn {
    font-size: 0.9em;
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .event-calendar-panel {
    max-width: 100%;
  }

  .toggle-panel-btn {
    font-size: 0.85em;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .toggle-panel-btn {
    font-size: 0.8em;
    padding: 6px 8px;
  }
}

/* Panel header with a close button */
.panel-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  position: relative;
}

.panel-header h2 {
  margin: 0 auto;
  /* Center the header text */
  font-size: 1.5em;
}

.close-panel-btn {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5em;
  cursor: pointer;
}

.calendar-container {
  padding: 20px;
}

.event-cards-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Event card styling */
.event-card {
  background-color: var(--color-secondary);
  padding: 15px;
  border-radius: 8px;

  animation: fadeInUp 0.4s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: var(--color-primary);
}

.event-card p {
  margin: 5px 0;
  color: var(--color-primary);
}

.event-card button {
  padding: 10px;
  background-color: var(--button-background);
  color: var(--color-primary);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.event-card button:hover {
  background-color: var(--color-hover);
  color: var(--color-accent);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}












/* Allgemeine Klassen für die Animation */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Über uns Sektion */
.ueberuns-section {
  padding: var(--spacing-large) var(--spacing-medium);
  background-color: var(--color-primary);
  text-align: center;
}

.ueberuns-section h2,
.ueberuns-section p,
.ueberuns-section .ueberuns-image {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.ueberuns-section h2.visible,
.ueberuns-section p.visible,
.ueberuns-section .ueberuns-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.ueberuns-section h2 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--spacing-medium);
}

.ueberuns-section p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  color: var(--zentrierte-color-secondary);
  max-width: 800px;
  margin: 0 auto var(--spacing-large);
  line-height: 1.6;
}

.ueberuns-section .ueberuns-image {
  max-width: 1000px;
  margin: 0 auto;
}

.ueberuns-section .ueberuns-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.5s var(--transition-ease);
}

.ueberuns-section .ueberuns-image img:hover {
  transform: scale(1.05);
}

/* Unsere Werte Sektion */
.werte-section {
  padding: var(--spacing-large) var(--spacing-medium);
  background-color: var(--color-primary);
  text-align: center;
}

.werte-section h2 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--spacing-medium);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.werte-section h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.werte-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-medium);
}

.wert-item {
  flex: 1 1 calc(33.333% - var(--spacing-medium));
  max-width: calc(33.333% - var(--spacing-medium));
  background-color: #fff;
  border-radius: 15px;
  padding: var(--spacing-small);
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.5s var(--transition-ease);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.wert-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.wert-item:hover {
  transform: translateY(-10px);
}

.wert-item i {
  font-size: 48px;
  color: var(--zentrierte-color-accent);
  margin-bottom: var(--spacing-small);
}

.wert-item h3 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--zentrierte-color-text);
  margin-bottom: var(--spacing-small);
}

.wert-item p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  color: var(--zentrierte-color-secondary);
  line-height: 1.6;
}

/* Team Sektion */
.team-section {
  padding: var(--spacing-large) var(--spacing-medium);
  background-color: var(--color-primary);
  text-align: center;
  overflow-y: hidden;
  /* Verhindert vertikales Scrollen */
}

.team-section h2 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--spacing-medium);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.team-section h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-members {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  /* Verhindert vertikales Scrollen innerhalb der Mitglieder */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--spacing-medium);
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.team-members::-webkit-scrollbar {
  display: none;
  /* Safari und Chrome */
}

.team-member {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 80%;
  /* Passt die Größe an, damit links und rechts etwas sichtbar ist */
  max-width: 300px;
  /* Maximale Breite des Teammitglieds */
  margin: 0 var(--spacing-small);
  background-color: #fff;
  border-radius: 15px;
  padding: var(--spacing-small);
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.5s var(--transition-ease), box-shadow 0.5s var(--transition-ease);
  text-align: center;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-member:hover {
  box-shadow: 0 8px 15px var(--shadow-color);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: var(--spacing-small);
}

.team-member h3 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--zentrierte-color-text);
  margin-bottom: var(--spacing-small);
}

.team-member p {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-light);
  color: var(--zentrierte-color-secondary);
  margin-bottom: var(--spacing-small);
}

/* Responsives Design für größere Bildschirme */
@media (min-width: 1290px) {
  .team-members {
    justify-content: center;
    overflow-x: visible;
  }

  .team-member {
    width: calc(25% - var(--spacing-medium));
    max-width: none;
    margin: var(--spacing-small);
  }
}



/* FAQ Sektion */
.faq-section {
  padding: var(--spacing-large) var(--spacing-medium);
  background-color: var(--color-primary);
  text-align: center;
}

.faq-section h2 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--spacing-medium);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.faq-section h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: var(--spacing-small);
  box-shadow: 0 2px 5px var(--shadow-color);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  padding: var(--spacing-small) var(--spacing-medium);
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--zentrierte-color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  font-size: var(--font-size-medium);
  color: var(--zentrierte-color-accent);
  transition: transform var(--transition-speed) var(--transition-ease);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s var(--transition-ease);
  padding: 0 var(--spacing-medium);
}

.faq-answer p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  color: var(--zentrierte-color-secondary);
  padding: var(--spacing-small) 0;
  text-align: left;
}



.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsives Design */
@media (max-width: 1024px) {

  .wert-item {
    flex: 1 1 calc(50% - var(--spacing-medium));
    max-width: calc(50% - var(--spacing-medium));
  }
}

@media (max-width: 768px) {

  .wert-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: var(--font-size-base);
  }

  .faq-question i {
    font-size: var(--font-size-base);
  }
}






.tech-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.tech-content {
  text-align: center;
  margin-bottom: 30px;
}

.tech-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.tech-content p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.6;
}

.tech-button {
  width: 100%;
  text-align: center;
}

.custom-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--button-background);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: solid 2px var(--button-background);
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  /* Verhindert das Unterstreichen */
}

.custom-button:hover {
  color: var(--button-background);
  background-color: var(--color-primary);
  text-decoration: none;
  /* Stellt sicher, dass auch beim Hover kein Unterstrich erscheint */
}


@media (min-width: 768px) {
  .tech-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
  }

  .tech-content {
    text-align: center;
    max-width: 50%;
  }

  .tech-content h3 {
    font-size: 2.5rem;
  }

  .tech-content p {
    font-size: 1.1rem;
  }

  .tech-button {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .tech-content h3 {
    font-size: 3rem;
  }

  .tech-content p {
    font-size: 1.2rem;
  }

  .custom-button {
    font-size: 1.2rem;
  }
}

.address-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Address-section fade-in elements are always visible – no scroll animation needed here */
.address-section .fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.address-content {
  text-align: center;
  margin-bottom: 30px;

}

.address-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 1200px;
  color: var(--color-accent);
}

.address-content p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.6;
}

.address-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (min-width: 768px) {
  .address-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
  }

  .address-content {
    text-align: left;
    margin-bottom: 0;
    max-width: 50%;
  }

  .address-content h3 {
    font-size: 2.5rem;
  }

  .address-content p {
    font-size: 1.1rem;
  }

  .address-image {
    max-width: 45%;
  }

  .address-image img {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .address-content h3 {
    font-size: 3rem;
  }

  .address-content p {
    font-size: 1.2rem;
  }
}












/* Pixel Gallery – Clean Controls */
.pixel-gallery {
  --pixel-stage-offset-mobile: -2.5rem;
  --pixel-stage-offset-tablet: -3rem;
  --pixel-stage-offset-desktop: -3.75rem;
  --pad-x: clamp(1rem, 4vw, 3rem);
  --controls-fg: var(--color-secondary, #222);
  --controls-bg: rgba(255, 255, 255, .92);
  --controls-border: 1px solid rgba(21, 21, 21, .12);
  --shadow: 0 10px 25px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, .18);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.pixel-gallery__stage {
  position: relative;
  max-width: 1400px;
  margin: var(--pixel-stage-offset-mobile) auto 0;
  padding: 0 var(--pad-x);
}

.pixel-gallery__viewport {
  overflow: visible;
}

.pixel-gallery__track {
  list-style: none;
  margin: 0;
  /* mehr bottom space für Dots (und mobile Controls) */
  padding: 0 0 clamp(3.75rem, 7vw, 4.5rem);
  display: flex;
  gap: clamp(.75rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  scroll-behavior: smooth;
}

.pixel-gallery__track::-webkit-scrollbar {
  display: none;
}

.pixel-gallery__slide {
  flex: 0 0 clamp(220px, 68vw, 320px);
  scroll-snap-align: center;
  transition: transform .4s ease, filter .4s ease;
}

.pixel-gallery__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3/4.5;
  background: #050505;
  transform: translate3d(0, 0, 0);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s cubic-bezier(.22, 1, .36, 1);
}

.pixel-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

@media (hover:hover) {
  .pixel-gallery__card:hover img {
    transform: scale(1.05);
  }
}

.pixel-gallery__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.1rem 1.25rem 1.35rem;
  color: #fff;
  display: flex;
  gap: .35rem;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, .85) 100%);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.pixel-gallery__slide.is-active .pixel-gallery__caption,
.pixel-gallery__card:hover .pixel-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.pixel-gallery__caption-title {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pixel-gallery__caption-text {
  font-size: .95rem;
  line-height: 1.4;
  opacity: .85;
}

/* ===== Dots: immer unten zentriert ===== */
.pixel-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(.5rem, 2vw, 1rem);
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}

.pixel-gallery__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width .25s var(--transition-ease, ease), background .25s var(--transition-ease, ease), transform .2s ease;
}

.pixel-gallery__dot:hover {
  transform: scale(1.08);
}

.pixel-gallery__dot.is-active {
  width: 28px;
  background: #ffffff;
}

/* ===== Pfeile: Mobile unten rechts als Pill, Desktop rechts vertikal schwebend ===== */
.pixel-gallery__controls {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .5rem;
  bottom: clamp(.5rem, 2vw, 1rem);
  right: calc(var(--pad-x) - .25rem);
  padding: .25rem;
  border-radius: 999px;
  background: var(--controls-bg);
  border: var(--controls-border);
  box-shadow: var(--shadow);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* Buttons */
.pixel-gallery__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--controls-fg);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pixel-gallery__arrow:focus-visible {
  outline: 2px solid var(--controls-fg);
  outline-offset: 2px;
}

.pixel-gallery__arrow:hover {
  background: rgba(0, 0, 0, .06);
  transform: translateY(-1px);
}

/* Desktop: Pfeile rechts mittig als vertikaler Pill, dezent bis Hover */
@media (min-width:900px) {
  .pixel-gallery__controls {
    top: 50%;
    bottom: auto;
    right: calc(var(--pad-x) - .25rem);
    transform: translateY(-50%);
    flex-direction: column;
    padding: .35rem;
    opacity: .55;
  }

  .pixel-gallery__controls:hover {
    opacity: 1;
    box-shadow: var(--shadow-lg);
  }
}

/* Responsive Slidebreiten */
@media (min-width:600px) {
  .pixel-gallery__slide {
    flex-basis: clamp(240px, 48vw, 320px);
  }
}

@media (min-width:900px) {
  .pixel-gallery__slide {
    flex-basis: clamp(260px, 32vw, 320px);
  }
}

@media (min-width:1200px) {
  .pixel-gallery__slide {
    flex-basis: clamp(280px, 26vw, 320px);
  }
}

/* Stage-Offsets */
@media (min-width:900px) {
  .pixel-gallery__stage {
    margin-top: var(--pixel-stage-offset-tablet);
  }
}

@media (min-width:1200px) {
  .pixel-gallery__stage {
    margin-top: var(--pixel-stage-offset-desktop);
  }
}







/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--translucent-white);
  backdrop-filter: var(--blur-effect);
  -webkit-backdrop-filter: var(--blur-effect);
  box-shadow: 0 -2px 10px var(--shadow-color);
  padding: var(--spacing-medium);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed) var(--transition-ease);
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cookie-content {
  max-width: 600px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}


.cookie-icon {
  position: absolute;
  top: -50px;
  /* Mehr Platz nach unten */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  animation: bounceIn 0.6s;
}


.cookie-icon i {
  color: white;
  font-size: 30px;
}

.cookie-content p {
  color: var(--zentrierte-color-text);
  font-size: var(--font-size-small);
  margin: 20px 0;
  animation: fadeIn 1s ease-in-out;
}

.cookie-content p a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-small);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeIn 1.2s ease-in-out;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: var(--font-size-small);
  cursor: pointer;
  transition: background-color var(--transition-speed) var(--transition-ease), transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
  display: flex;
  align-items: center;
  text-align: center;
  gap: 5px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-btn:hover {
  background-color: #e060bf;
  /* Dunkler beim Hover */
  transform: scale(1.05);
}

#manage-settings {
  background-color: transparent;
  color: var(--zentrierte-color-text);
  border: 2px solid var(--color-accent);
}

#manage-settings:hover {
  background-color: rgba(251, 0, 255, 0.1);
}

#decline {
  background-color: transparent;
  color: var(--zentrierte-color-text);
  border: 2px solid var(--color-error);
}

#decline:hover {
  background-color: rgba(255, 0, 0, 0.1);
}

/* Cookie Settings Styles */
.cookie-settings {
  width: 100%;
  margin-top: var(--spacing-medium);
  display: none;
  /* Anfangs versteckt */
  flex-direction: column;
  align-items: center;
  /* Links ausrichten */
  animation: fadeIn 0.5s forwards;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings h4 {
  margin-bottom: var(--spacing-small);
  color: var(--zentrierte-color-text);
  text-align: center;
}

.cookie-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  max-width: 500px;
  justify-content: space-between;
  /* Links rechts ausrichten */
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--color-accent);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--color-accent);
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.cookie-option label {
  font-size: var(--font-size-small);
  color: var(--zentrierte-color-text);
  margin-left: 10px;
}

.cookie-option label {
  font-size: var(--font-size-small);
  color: var(--zentrierte-color-text);
}

/* Reopen Cookie Banner Button Styles */
.open-cookie-banner {
  display: block;
  /* Stelle sicher, dass der Button als Block-Element dargestellt wird */
  margin: 0 auto;
  /* Zentriert den Button horizontal */

  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background-color var(--transition-speed) var(--transition-ease), transform var(--transition-speed) var(--transition-ease), width 0.3s;
  z-index: 10001;
  font-size: var(--font-size-small);
  margin-top: 40px;
  margin-bottom: 20px;
}


.reopen-cookie-banner:hover {
  background-color: #e060bf;
  transform: scale(1.05);
  width: 150px;
  /* Vergrößern beim Hover */
}

.reopen-cookie-banner i {
  font-size: 16px;
}

/* Hide Reopen Button when Banner is active */
.cookie-banner.show+.reopen-cookie-banner {
  display: none;
}









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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Globale Box-Sizing Einstellung */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.gallery-section {
  padding: 50px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* Sicherstellen von 20px Padding auf beiden Seiten */
}

.gallery-controls {
  /* Entferne die Sticky-Eigenschaft */
  /* position: sticky; */
  /* top: 60px; */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Zentriert die Elemente */
  align-items: center;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  /* Leicht transparent für bessere Sichtbarkeit */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  /* Sicherstellen, dass es über anderen Elementen liegt */
  padding: 10px 20px;
  border-radius: 10px;
  gap: 20px;
  /* Abstand zwischen den Elementen */
}

.search-box {
  flex: 1 1 300px;
  /* Flexibel mit Basisbreite */
  min-width: 200px;
  /* Mindestbreite, um die Lesbarkeit zu gewährleisten */
  position: relative;
  /* Für die absolute Positionierung der Suggestions */
}

#search-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s ease;
}

#search-input:focus {
  border-color: #E6007E;
}

.suggestions {
  position: absolute;
  /* Absolut positioniert */
  top: 100%;
  /* Direkt unter dem Input-Feld */
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1001;
  /* Höher als .gallery-controls */
}

.suggestions.active {
  display: block;
}

.suggestions li {
  padding: 10px 20px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #f0f0f0;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  /* Zentriert die Buttons innerhalb des Containers */
  flex: 1 1 300px;
  /* Flexibel mit Basisbreite */
  min-width: 200px;
  /* Mindestbreite */
}

.filter-btn {
  padding: 10px 20px;
  background-color: #E6007E;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 150px;
  /* Flexibel, aber mit einer Basisbreite */
  max-width: 200px;
  /* Begrenze die maximale Breite */
  text-align: center;
  font-size: 14px;
  /* Angepasste Schriftgröße für kleinere Bildschirme */
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 20, 145, 0.4), transparent);
  transition: all 650ms;
}

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

.filter-btn.active {
  background-color: #E6007E;
  box-shadow: 0px 0px 8px #E6007E;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  animation: fadeIn 1s ease;
}

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  /* Verhindert unteres Leerzeichen */
  transition: transform 0.5s ease;
  border-radius: 10px;
}

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

.gallery-item:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  /* Dunkler Hintergrund für bessere Lesbarkeit */
  color: #fff;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsives Design */

/* Große Bildschirme (Standard) */
@media (min-width: 1025px) {
  .gallery-controls {
    justify-content: space-between;
  }

  .filter-btn {
    flex: 1 1 auto;
    /* Buttons passen sich an */
    min-width: 120px;
  }
}

/* Mittlere Bildschirme */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery-controls {
    justify-content: center;
    /* Zentriert die Elemente */
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    flex: 1 1 calc(33.333% - 10px);
    /* Drei Buttons pro Zeile */
    min-width: 100px;
  }
}

/* Kleine Bildschirme */
@media (max-width: 768px) and (min-width: 481px) {
  .gallery-controls {
    justify-content: center;
    /* Zentriert die Elemente */
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 10px);
    /* Zwei Buttons pro Zeile */
    min-width: 100px;
  }

  .gallery-grid {
    column-count: 2;
    /* Reduziere die Anzahl der Spalten für kleinere Bildschirme */
  }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
  .gallery-controls {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .search-box,
  .filter-buttons {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    flex: 1 1 45%;
    /* Zwei Buttons pro Zeile */
    max-width: 200px;
    padding: 10px 15px;
    font-size: 14px;
  }

  #search-input {
    font-size: 14px;
    padding: 10px 15px;
  }

  .gallery-item-info {
    padding: 8px;
    font-size: 14px;
  }

  .gallery-grid {
    column-count: 1;
    /* Eine Spalte für sehr kleine Bildschirme */
  }
}





/* Allgemeine Einstellungen */


.slideshow-container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  background-color: white;


}

.slideshow-header {
  padding: 30px;

}

.slideshow-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  color: #1d1d1f;
}

.cta-button {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

.cta-button .play-icon {
  margin-left: 8px;
}

.slides {
  position: relative;
  display: flex;
  justify-content: center;
  /* Zentriert die Slides horizontal */
  align-items: center;
  /* Zentriert die Slides vertikal, falls nötig */
}

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

.active-slide {
  opacity: 1;
  position: relative;
}

.slide img,
.slide video {
  width: 90%;
  height: auto;
  border-radius: 15px;
  /* Hier die Abrundung der Ecken */
  display: block;
  margin: 0 auto;
  /* Zentriert das Bild/Video innerhalb der Slide */
}

.text-overlay {
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  color: #1d1d1f;
  font-size: 1.5rem;
  padding: 25px;
  text-align: left;
  line-height: 1.6;
  margin: 20px;
  border-radius: 12px;
}

.slideshow-controls {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 8px;
  background-color: #c6c6c6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.active-dot {
  background-color: var(--color-accent);
}

.play-pause-btn {
  position: absolute;
  top: 23px;
  right: 30px;
  font-size: 24px;
  width: 50px;
  /* Breite des Buttons */
  height: 50px;
  /* Höhe des Buttons */
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  /* Macht den Button rund */
  cursor: pointer;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Zentriert den Inhalt */
}


.play-pause-btn i {
  pointer-events: none;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .slideshow-header h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .text-overlay {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .slideshow-header h1 {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 0.8rem;
  }

  .text-overlay {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slideshow-header h1 {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 0.7rem;
  }

  .text-overlay {
    font-size: 0.9rem;
  }
}

/* Allgemeine Regeln für größere Bildschirme */
@media (min-width: 1200px) {
  .slideshow-container {
    max-width: 600px;
    /* Verhindere, dass die Slideshow auf großen Bildschirmen zu groß wird */
  }

  .text-overlay {
    max-width: 90%;
    /* Halte die Text-Box schmal, auch auf großen Bildschirmen */
  }
}







/* Speisekarte Sektion */
.menu-section {
  padding: var(--spacing-large) var(--spacing-medium);

}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  /* Zentriert den Button */
  margin-bottom: var(--spacing-medium);
  position: relative;
  z-index: 2;
}

.dropdown-container {
  position: relative;
}

.download-btn {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 14px 28px;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  cursor: pointer;
  font-size: var(--font-size-medium);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn i {
  margin: 0 8px;
}

.download-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0px 0px 8px var(--color-primary);
}

.download-btn .fa-chevron-down {
  transition: transform 0.3s ease;
}

.download-btn .rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  /* Zentriert das Dropdown unter dem Button */
  background-color: var(--color-primary);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  animation: dropdownAnimation 0.3s ease forwards;
  min-width: 220px;
}

.dropdown-menu a {
  color: var(--color-secondary);
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  transition: background-color 0.3s ease;
}

.dropdown-menu a i {
  margin-right: 10px;
  color: var(--color-accent);
}

.dropdown-menu a:hover {
  background-color: var(--color-hover);
  color: var(--color-accent);
}

@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translateY(-10px) translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

/* Menü Kategorie */
.menu-category {
  margin-bottom: var(--spacing-large);
  text-align: center;
}

.menu-category h2 {
  font-size: var(--font-size-large);
  color: var(--color-accent);
  margin-bottom: var(--spacing-medium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-category h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-category h2 i {
  margin-right: 10px;
}

/* Swipebare Bilder */
.menu-items {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: var(--spacing-medium);
  padding: var(--spacing-small);
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.menu-items::-webkit-scrollbar {
  display: none;
  /* Safari und Chrome */
}

.menu-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 80%;
  /* Passt die Größe an, damit links und rechts etwas sichtbar ist */
  max-width: 300px;
  /* Maximale Breite der Bilder */
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.5s var(--transition-ease);
}

.menu-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}



/* Separate Klasse für nur ein Bild */
.single-image {
  justify-content: center;
  /* Bild zentrieren */
  overflow-x: hidden;
  /* Swiping deaktivieren */
}

.single-image .menu-item {
  width: 100%;
  /* Volle Breite für das Bild */
  max-width: 400px;
  /* Optional: Maximale Breite für zentriertes Bild */
}




/* Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  max-width: 80%;
  max-height: 80%;
  animation: zoomIn 0.5s;
  border-radius: 15px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 20px;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: color 0.3s ease;
  cursor: pointer;
  z-index: 2001;
  background-color: var(--button-background);
}



#caption {
  margin-top: 20px;
  align-items: baseline;
  color: #ccc;
  text-align: center;
  font-size: var(--font-size-medium);
}

/* Fade-up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Responsive Styles */
@media (max-width: 5000px) {
  .Portfolio-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0 15px;
    /* Add margins on the sides */
  }

  .row h5 {
    font-size: 22px;
  }

  .row h4 {
    font-size: 19px;
  }

  .header {
    justify-content: space-between;
  }

  .header .logo {
    max-width: 25%;
  }

  .header .header-btn {
    font-size: var(--font-size-small);
    padding: 6px 12px;
    margin-right: 20px;
  }

  .header .logo img {
    max-height: 40px;
  }
}




/* Responsive Styles */
@media (max-width: 2000px) {
  .Portfolio-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0 15px;
    /* Add margins on the sides */
  }

  .row h5 {
    font-size: 22px;
  }

  .row h4 {
    font-size: 19px;
  }

  .header {
    justify-content: space-between;
  }

  .header .logo {
    max-width: 25%;
  }

  .header .header-btn {
    font-size: var(--font-size-small);
    padding: 6px 12px;
    margin-right: 20px;
  }

  .header .logo img {
    max-height: 40px;
  }
}


@media (max-width: 1200px) {
  .Portfolio-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0 15px;
    /* Add margins on the sides */
  }

  .row h5 {
    font-size: 22px;
  }

  .row h4 {
    font-size: 19px;
  }

  .header {
    justify-content: space-between;
  }

  .header .logo {
    max-width: 25%;
  }

  .header .header-btn {
    font-size: var(--font-size-small);
    padding: 6px 12px;
    margin-right: 20px;
  }

  .header .logo img {
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }

  .header .logo {
    max-width: 25%;
  }

  .header .header-btn {
    font-size: 12px;
    padding: 6px 12px;
    margin-right: 2px;
  }

  .header .logo img {
    max-height: 40px;
    margin-left: -15px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* old footer classes removed – handled by new footer CSS */

  .fixed-buttons {
    right: 10px;
    bottom: 10px;
  }

  .round-button {
    width: 50px;
    height: 50px;
  }

  .round-button i {
    font-size: 20px;
  }

  .tooltip {
    font-size: 12px;
    padding: 8px 12px;
    bottom: 80px;
  }

  .tooltip {
    bottom: 60px;
    font-size: var(--font-size-small);
  }



  .Portfolio-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0 15px;
    /* Add margins on the sides */
  }

  .row h5 {
    font-size: 22px;
  }

  .row h4 {
    font-size: 19px;
  }

  .row i {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {

  .Portfolio-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 10px;
    /* Adjust side margins for tablets */
  }

  .row {
    padding: 15px;
  }

  .row h5 {
    font-size: 25px;
  }

  .row h4 {
    font-size: 18px;
  }

  .row i {
    margin-left: 20px;
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
}


@media (max-width: 450px) {
  .header {
    justify-content: space-between;
    background-color: t;
  }

  .header .logo {
    max-width: 25%;
  }

  .header-btn {
    font-size: 8px;
    padding: 6px 1px;
    margin-left: 10px;
  }

  .header .logo img {
    max-height: 40px;
    margin-left: -15px;
  }

}





/* Impressum Sektion */
.impressum-section {
  padding: var(--spacing-large) var(--spacing-medium);
  background-color: var(--color-primary);
  color: var(--zentrierte-color-text);
  max-width: 1200px;
  margin: 0 auto;
  margin-left: 20px;
  margin-right: 20px;
}

.impressum-section h1 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-align: center;
  margin-bottom: var(--spacing-medium);
}

.impressum-section h2 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-small);
}

.impressum-section h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--zentrierte-color-text);
  margin-top: var(--spacing-small);
  margin-bottom: var(--spacing-small);
}

.impressum-section p,
.impressum-section address {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--zentrierte-color-secondary);
  margin-bottom: var(--spacing-small);
}

.impressum-section a {
  color: var(--color-accent);
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .impressum-section {
    padding: var(--spacing-medium) var(--spacing-small);
  }

  .impressum-section h1 {
    font-size: 28px;
  }

  .impressum-section h2 {
    font-size: 24px;
  }

  .impressum-section h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .impressum-section h1 {
    font-size: 24px;
  }

  .impressum-section h2 {
    font-size: 20px;
  }

  .impressum-section h3 {
    font-size: 18px;
  }
}



/* Responsive Styling for Tablet and Desktop */
@media (min-width: 768px) {
  .hero-content {
    max-width: 40%;
    /* Reduce width for a cleaner look */
    margin-left: 50px;
    /* Move content further right */
  }

}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 35%;
    /* Further reduction for widescreen */
    margin-left: 100px;
    /* Increase right spacing */
  }


}




/* Background Blur Overlay */
.dsbowl-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0px);
  /* Initial state */
  -webkit-backdrop-filter: blur(0px);
  /* Initial state for Safari */
  background: rgba(255, 255, 255, 0.4);
  z-index: 9999;
  opacity: 0;
  transition: backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease, opacity 0.5s ease;
}

.dsbowl-overlay.active {
  display: block;
  backdrop-filter: blur(10px);
  /* Final state */
  -webkit-backdrop-filter: blur(10px);
  /* Final state for Safari */
  opacity: 1;
}

/* Updated DSBOWL News Highlight Styles */
.dsbowl-news-highlight {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 650px;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  overflow: hidden;
}

.dsbowl-news-highlight.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: slideIn 0.6s ease-out forwards;
}

.dsbowl-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(270deg, #ff00dd, #ffae00);
  animation: dsgradientAnimation 10s ease infinite;
  background-size: 400% 400%;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.dsbowl-news-header h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.close-ds-news-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.close-ds-news-btn:hover {
  color: #e0e0e0;
}

.dsbowl-news-content {
  padding: 25px;
  max-height: 65vh;
  overflow-y: auto;
}

.dsbowl-news-section {
  margin-bottom: 25px;
}

.dsbowl-news-section h3 {
  font-size: 1.3rem;
  color: var(--section-title-color, #333);
  margin-bottom: 12px;

  padding-bottom: 5px;
}

.dsbowl-news-articles {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}

.dsbowl-news-article {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, opacity 0.3s;
}

.dsbowl-news-article h4 {
  font-size: 1.1rem;
  margin: 0 0 5px;
}

.dsbowl-news-article p {
  font-size: 0.95rem;
  color: #666;
}

.dsbowl-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--button-background);
  color: #fff;
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(230, 0, 255, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.dsbowl-more-btn:hover {
  background-color: #ffffff;
  color: var(--button-background);
  border: 2px solid var(--button-background);
}

/* Modern Animation */
@keyframes slideIn {
  0% {
    transform: translate(-50%, -60%) scale(0.85);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


/***************************
 * NEUE HIGHLIGHTS (DS-HIGHLIGHTS)
 ***************************/

/* Hülle um die Highlights */
.ds-highlights {
  /* du kannst hier optional Padding etc. ergänzen */
  margin: 2rem auto;
  max-width: 1200px;
  text-align: center;
}

/* Container für die Highlights in einer Zeile, bis wir bei ~700px sind */
.ds-highlights-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* Damit sie umbrechen können */
  margin-top: 1rem;
}

/* Einzelnes Highlight-Item */
.ds-highlights-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Kreis mit Zahl */
.ds-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-accent, #fb00ff);
  color: var(--color-primary, #fff);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold, 700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Bei sehr kleinem Viewport unter ~700px werden die Highlights untereinander angeordnet */
@media (max-width: 700px) {
  .ds-highlights-container {
    flex-direction: column;
    align-items: center;
  }
}

/***************************
  * NEUES INSTAGRAM-GRID (DS-INSTAGRAM)
  ***************************/

/* Wrapper der Instagram-Sektion */
.ds-instagram {
  margin: 3rem auto;
  max-width: 900px;
  /* Maximale Breite erhöht für bessere Darstellung */
  text-align: center;
  padding: 0 1rem;
  /* Padding für kleine Bildschirme */
  background-color: v;
}

/* Überschrift */
.ds-instagram h2 {
  margin-bottom: 1rem;
  color: var(--color-accent, #fb00ff);
}

/* 3x3 Grid, immer drei Spalten */
.ds-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
  margin: 0 auto;
  /* Zentrierung */
  width: 100%;
  /* Vollbreite innerhalb des Containers */
  max-width: 900px;
  /* Festlegen der maximalen Breite für Desktop */
}

/* Einzelnes Instagram-Item */
.ds-instagram-item {
  position: relative;
  overflow: hidden;
}

/* Die Bilder im Grid */
.ds-instagram-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Overlay, das von unten hochfährt */
.ds-instagram-overlay {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* halbtransparentes Schwarz */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: bottom 0.2s ease;
  /* Übergangszeit verkürzt */
  border-radius: 8px;
}

/* Overlay zeigt sich beim Hover oder Aktivierung */
.ds-instagram-item:hover .ds-instagram-overlay,
.ds-instagram-item.active .ds-instagram-overlay {
  bottom: 0;
}

/* Inhalt im Overlay */
.ds-instagram-overlay-content {
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
}

/* FontAwesome Instagram-Logo */
.ds-instagram-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Scrollender Text (Marquee-Effekt) */
.ds-instagram-scrolling-text {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 200px;
  margin: 0 auto;
}

.ds-instagram-scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  /* Animation immer definieren, aber pausieren */
  animation: ds-marquee 12s linear infinite;
  animation-play-state: paused;
}

/* Animation auf Hover/Aktivierung */
.ds-instagram-item:hover .ds-instagram-scrolling-text span,
.ds-instagram-item.active .ds-instagram-scrolling-text span {
  animation-play-state: running;
}

/* Langsamere Marquee-Animation */
@keyframes ds-marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Der Button unter dem Grid */
.ds-instagram-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--button-background, #ff14c4);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold, 600);
  margin-top: 1rem;
  border: 2px solid var(--button-background, #ff14c4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt */
.ds-instagram-button:hover {
  background-color: transparent;
  color: var(--button-background, #ff14c4);
  box-shadow: 0 0 8px var(--button-background, #ff14c4);
}

/* FontAwesome Icon im Button */
.ds-instagram-button-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Verhindert ein zu großes Layout auf sehr kleinen Bildschirmen */
@media (max-width: 400px) {
  .ds-instagram {
    padding: 0 0.5rem;
  }
}



/* 
  =========================================
  MODAL STYLES – nutzt deine :root Variablen
  =========================================
*/
/* ──────────────────────────────
   Overlay-Hintergrund
   ────────────────────────────── */
.reservation-modal {
  position: fixed;
  inset: 0;
  /* top/left/right/bottom = 0 */
  z-index: 9999;
  display: none;
  /* per JS auf flex setzen */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  /* ▼ Optional: ganzen Overlay scrollbar machen
    overflow-y: auto;
    */
}

/* ──────────────────────────────
   Modal-Container
   ────────────────────────────── */
.reservation-modal-content {
  background: var(--color-primary, #fff);
  color: var(--color-secondary, #151515);
  width: 90%;
  max-width: 600px;
  padding: var(--spacing-medium, 25px);
  border-radius: 12px;
  position: relative;
  font-family: var(--font-family, sans-serif);
  box-shadow: 0 10px 25px var(--shadow-color, rgba(0, 0, 0, 0.2));
  animation: scaleIn var(--transition-speed, 0.3s) ease forwards;

  /* ▼ NEU – begrenzen & scrollen */
  max-height: calc(100vh - 40px);
  /* 20 px Luft oben + unten */
  overflow-y: auto;
  /* interne Scrollbar */
  overscroll-behavior: contain;
  /* verhindert Body-Scroll */
  -webkit-overflow-scrolling: touch;
  /* weiches iOS-Scroll */
}

/* Scale-In-Animation */
@keyframes scaleIn {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ──────────────────────────────
   Close-Button
   ────────────────────────────── */
.reservation-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #999;
  transition: color var(--transition-speed, 0.3s);
}

.reservation-modal-close:hover {
  color: var(--color-secondary, #151515);
}

/* ──────────────────────────────
   Inhalt & Controls
   ────────────────────────────── */
.reservation-modal-content h2 {
  margin: 0 0 var(--spacing-small, 15px);
  font-size: var(--font-size-medium, 20px);
  font-weight: var(--font-weight-bold, 600);
}

.reservation-note {
  font-size: var(--font-size-small, 14px);
  line-height: 1.4;
  margin-bottom: var(--spacing-medium, 25px);
}

.reservation-list {
  margin: 0 0 var(--spacing-medium, 25px) 1.4rem;
  padding: 0;
  list-style: disc;
}

.reservation-list li {
  margin-bottom: var(--spacing-small, 15px);
  font-size: var(--font-size-small, 14px);
  line-height: 1.5;
}

/* Checkbox */
.reservation-checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-medium, 25px);
  font-size: var(--font-size-small, 14px);
}

.reservation-checkbox-container input[type="checkbox"] {
  accent-color: var(--color-accent, #E6007E);
  width: 1.2rem;
  height: 1.2rem;
  margin-right: var(--spacing-small, 15px);
  cursor: pointer;
}

/* Button-Leiste */
.reservation-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-small, 15px);
}

.reservation-btn {
  padding: .8rem 1.4rem;
  border: none;
  border-radius: 50px;
  font-size: var(--font-size-small, 14px);
  font-weight: var(--font-weight-bold, 600);
  cursor: pointer;
  transition: background-color var(--transition-speed, .3s);
}

.reservation-btn-cancel {
  background: #ccc;
  color: #333;
}

.reservation-btn-cancel:hover {
  background: #aaa;
}

.reservation-btn-accept {
  background: var(--color-accent, #E6007E);
  color: #fff;
}

.reservation-btn-accept:disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

.reservation-btn-accept:not(:disabled):hover {
  background: #c4006e;
}

/* ──────────────────────────────
   Responsive – kleinere Geräte
   ────────────────────────────── */
@media (max-width:600px) {
  .reservation-modal-content {
    width: 95%;
    padding: var(--spacing-small, 15px);
  }

  .reservation-modal-close {
    top: .5rem;
    right: .5rem;
  }

  .reservation-modal-content h2 {
    font-size: calc(var(--font-size-medium, 20px)*1.1);
  }

  .reservation-note,
  .reservation-list li {
    font-size: var(--font-size-base, 16px);
  }

  .reservation-btn {
    padding: var(--spacing-small, 15px) var(--spacing-medium, 25px);
  }
}

/* 
  ==================================
  MODAL-STYLES für die Pakete-Seite
  ==================================
*/

/* Overlay-Hintergrund (dunkel) */
.paket-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* Per JS auf 'flex' setzen */
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Container-Inhalt des Modals */
.paket-modal-content {
  background: var(--color-primary, #494949);
  color: var(--color-secondary, #151515);
  width: 90%;
  max-width: 600px;
  padding: var(--spacing-medium, 25px);
  border-radius: 12px;
  position: relative;
  font-family: var(--font-family, sans-serif);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: paketScaleIn 0.3s ease forwards;
  /* Animations-Effekt */
}

/* Kleiner Scale-Effekt beim Erscheinen */
@keyframes paketScaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* X-Button (oben rechts) */
.paket-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #999;
  transition: color 0.3s;
}

.paket-modal-close:hover {
  color: var(--color-secondary, #151515);
}

/* Überschrift */
.paket-modal-content h2 {
  margin-top: 0;
  font-size: var(--font-size-medium, 20px);
  font-weight: var(--font-weight-bold, 600);
}

/* Absatz / Auflistung */
.paket-modal-paragraph {
  margin-bottom: var(--spacing-small, 15px);
  line-height: 1.4;
}

.paket-modal-list {
  list-style: disc;
  margin: var(--spacing-small, 15px) 0 var(--spacing-medium, 25px) 1.3rem;
  padding: 0;
}

.paket-modal-list li {
  margin-bottom: var(--spacing-small, 15px);
  font-size: var(--font-size-small, 14px);
  line-height: 1.4;
}

/* Footer-Bereich im Modal (für Button) */
.paket-modal-footer {
  display: flex;
  justify-content: flex-end;
}

/* Schließen/Bestätigen-Button */
.paket-close-btn {
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-color: var(--color-accent, #E6007E);
  color: #fff;
  font-size: var(--font-size-small, 14px);
  font-weight: var(--font-weight-bold, 600);
  transition: background-color 0.3s ease;
}

.paket-close-btn:hover {
  background-color: #c4006e;
  /* dunklere Variante */
}

/* 
    =================================
    RESPONSIVE-ANPASSUNGEN 
    =================================
  */
@media (max-width: 600px) {
  .paket-modal-content {
    width: 95%;
    padding: var(--spacing-small, 15px);
  }

  .paket-modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .paket-modal-content h2 {
    font-size: calc(var(--font-size-medium, 20px) * 1.1);
  }

  .paket-modal-list li {
    font-size: var(--font-size-base, 16px);
  }

  .paket-close-btn {
    padding: 0.6rem 1rem;
  }
}



/* 
   =================================
   Gemeinsamer Container: 
   Stellt beide Sektionen 
   nebeneinander (Desktop) 
   oder untereinander (Mobile) dar.
   =================================
*/
.info-sections-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* Damit beide Sektionen zentriert sind */
  flex-wrap: wrap;
  /* Bei zu wenig Platz brechen die Sektionen auf die nächste Zeile um */
  margin: 20px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
}

@media (max-width: 768px) {

  /* Unter 768px werden die Sektionen untereinander angezeigt */
  .info-sections-container {
    flex-direction: column;
    align-items: center;
  }
}

/* 
     =================================
     Original-Styles für MyDSBowl 
     (unverändert)
     =================================
  */
.mydsbowl-info {
  width: calc(100% - 40px);
  max-width: 600px;

  padding: 60px 20px;
  position: relative;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.mydsbowl-info h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.mydsbowl-info p {
  max-width: 500px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  position: relative;
}

.mydsbowl-info button.btn-row {
  padding: 12px 30px;
  background-color: transparent;
  color: white;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.mydsbowl-info button.btn-row:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0px 8px rgba(255, 255, 255, 0.623);
}

/* 
     =======
     Gradient 
     =======
  */
.moving-gradient {
  background: linear-gradient(130deg, #ffb300, #e921f3, #1c33ff);
  background-size: 300% 300%;
  animation: swirl2 10s ease-in-out infinite;
}

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

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*
    =========
    Eckbilder 
    =========
  */
.image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.corner-image {
  position: absolute;
  width: 150px;
  height: auto;
  opacity: 0.9;
  /* optional: leichte Transparenz */
}

.corner-image.top-left {
  top: 0;
  left: 0;
  transform-origin: center;
  transform: translate(-40px, -30px) rotate(180deg);
}

.corner-image.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(30%, 20%);
}

/* 
     =================================
     Neue Sektion (McDonald’s), 
     gleicher Look, andere Klassen
     =================================
  */
.mcd-info {
  width: calc(100% - 40px);
  max-width: 600px;

  padding: 60px 20px;
  position: relative;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Überschrift, Text, Button */
.mcd-info h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.mcd-info p {
  max-width: 500px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  position: relative;
}

.mcd-info button.btn-row-mcd,
.mcd-info a.btn-row-mcd {
  padding: 12px 30px;
  background-color: transparent;
  color: white;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.mcd-info button.btn-row-mcd:hover,
.mcd-info a.btn-row-mcd:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0px 8px rgba(255, 255, 255, 0.623);
}

/* Anderer Farbverlauf? Falls du denselben möchtest, ändere diesen Block entsprechend */
.moving-gradient-mcd {
  background: linear-gradient(135deg,
      #ffc300,
      /* Golden */
      #ff3f00
      /* Rötlich */
    );
  background-size: 300% 300%;
  animation: swirl-mcd 10s ease-in-out infinite;
}

@keyframes swirl-mcd {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Eckbilder der McDonald’s-Sektion */
.image-container-mcd {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.corner-image-mcd {
  position: absolute;
  width: 150px;
  height: auto;
  opacity: 0.9;
}

.corner-image-mcd.top-left-mcd {
  top: 0;
  left: 0;
  transform-origin: center;
  transform: translate(-40px, -30px) rotate(180deg);
}

.corner-image-mcd.bottom-right-mcd {
  bottom: 0;
  right: 0;
  transform: translate(30%, 20%);
}

/* 
     =================================
     Neues Panel (McDonald’s)
     ähnlicher Code wie dein settings-panel,
     aber mit neuen Klassen/IDs.
     =================================
  */
/* =========================================== */
/* PANEL-GRUNDLAYOUT (wie gehabt, minimal)     */
/* =========================================== */
.panel-mcd {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  margin: 0;
  padding: 0;
}

.panel-mcd.open {
  right: 0;
}

/* Header */
.panel-mcd-header {
  background-color: #f2f2f2;
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.panel-mcd-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.close-mcd-panel {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/* Inhalt */
.panel-mcd-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  box-sizing: border-box;
}

/* =========================================== */
/* SECTION: PAKETE                             */
/* =========================================== */
.mcd-packages-section {
  margin-bottom: 40px;
}

.mcd-packages-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  color: #333;
}

/* Container für die Pakete: Flex-Layout */
.packages-container {
  display: flex;
  flex-wrap: wrap;
  /* damit die Pakete umbrechen, wenn kein Platz */
  gap: 20px;
  /* Abstand zwischen den Paketen */
  justify-content: center;

}

/* ==== EINE PAKET-BOX (unverändert) ==== */
.mcd-package {
  width: 100%;
  max-width: 350px;
  /* oder 300px? Passe nach Wunsch an */
  margin: 0;
  border: none;

  overflow: hidden;
  border-radius: 16px;
  margin-left: 10px;
  margin-right: 10px;


}

/* OBERER TEIL: animierter Farbverlauf + PNG */
.package-top-gradient {
  background: linear-gradient(135deg, #E6007E, #FFAE00);
  background-size: 300% 300%;
  animation: swirl 10s ease-in-out infinite;
  text-align: center;
  margin: 0;
  padding: 0;
}

.package-top-gradient h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 1.6rem;
  color: #fff;
}

.package-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* UNTERER TEIL: weiß, Buttons, Text */
.package-bottom-white {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.toggle-details-btn {
  background-color: #fff;
  color: #333;
  border: 2px solid #E6007E;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.toggle-details-btn:hover {
  background-color: #E6007E;
  color: #ffffff;
}

/* Ausklapp-Container */
.package-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin: 0;
}

.package-details.open {
  max-height: 350px;
  /* Anpassen, falls viel Text */
  opacity: 1;
  margin-top: 10px;
}

.package-details p {
  margin: 0 0 15px;
  color: #444;
  font-size: 0.95rem;
}

.round-info-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E6007E;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  transition: transform 0.2s;
}

.round-info-btn:hover {
  transform: scale(1.1);
}

/* Keyframes für animierten Verlauf */
@keyframes swirl {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* =========================================== */
/* SECTION: BOWLING-SPIELE                     */
/* =========================================== */
.mcd-bowling-section {
  text-align: center;
  margin-bottom: 40px;
}

.mcd-bowling-section h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #333;
}

.mcd-bowling-section p {
  max-width: 600px;
  margin: 0 auto 20px auto;
  color: #444;
  line-height: 1.5;
}

.mcd-bowling-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* RESPONSIVE: schmale Bildschirme */
@media (max-width: 768px) {
  .panel-mcd-content {
    padding: 0 10px 40px;
  }

  .packages-container {
    flex-direction: column;
    /* Pakete untereinander */
    align-items: center;
  }


}

/* RESPONSIVE: schmale Bildschirme */
@media (min-width: 1100px) {


  .mydsbowl-info {
    width: calc(100% - 40px);
    max-width: 600px;

    padding: 60px 20px;
    position: relative;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  .mcd-info {
    width: calc(100% - 40px);
    max-width: 400px;

    padding: 60px 20px;
    position: relative;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
}





















/* Anderer Farbverlauf? Falls du denselben möchtest, ändere diesen Block entsprechend */
.moving-gradient-dealz {
  background: linear-gradient(135deg,
      #ffc300,
      /* Golden */
      #e6006b,
      /* Golden */
      #e600c4
      /* Rötlich */
    );
  background-size: 300% 300%;
  animation: swirl-mcd 10s ease-in-out infinite;
}

@keyframes swirl-mcd {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.moving-gradient-m2m {
  background: linear-gradient(135deg, #2F28FF, #e6006b, #ffc300);
  background-size: 300% 300%;
  animation: swirl-mcd 10s ease-in-out infinite;
}

/* Footer Farbvarianten */
.footer--green {
  background: #12b800 !important;
}

.footer--mcd {
  background: #ffa500 !important;
}

/* Werbeprogramm-Gradient */
.moving-gradient-werbung {
  background: linear-gradient(135deg, #0f0f0f, #1a1a2e, #16213e, #0f3460);
  background-size: 300% 300%;
  animation: swirl-mcd 10s ease-in-out infinite;
}

/* MyDSBowl pill button – kein Unterstrich */
.mydsbowl-pill-btn {
  text-decoration: none;
}









/* ========== Button zum Öffnen ========== */
.dsb-open-btn {
  /* Dein DS Bowl Style (Farbverlauf etc.) */
  background: linear-gradient(135deg, #ff00fb, #EFAC00, #E6007E, #2F28FF);
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.dsb-open-btn:hover {
  transform: scale(1.05);
}

/* ========== Fly-In Panel von rechts ========== */
.summer-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease, right 0.6s ease;
  z-index: 9999;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}

.summer-panel.open {
  right: 0;
  transform: translateX(0);
}

.summer-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.summer-panel-header h2 {
  font-size: 1.5rem;
  color: #E6007E;
}

.close-btn {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

/* ========== MyDSPro-Statusbereich ========== */
.mydspro-section {
  padding: 0 16px 16px;
  border-bottom: 1px solid #ccc;
}

#mydspro-status-text {
  margin-bottom: 10px;
  color: #444;
}

.dsb-small-btn {
  background: #E6007E;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* ========== Grid für die Days ========== */
.summer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  padding: 16px;
}

.day-card {
  position: relative;
  width: 80px;
  height: 100px;
  perspective: 800px;
}

.day-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
}

/* Front & Back */
.day-front,
.day-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 3px solid #E6007E;
  border-radius: 8px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #E6007E;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.day-back {
  background: #ffecf6;
  transform: rotateY(180deg);
  font-size: 1rem;
  color: #333;
}

.day-inner.flipped {
  transform: rotateY(180deg);
}

/* Hover-Effekt -> Karte anheben leicht */
.day-card:hover .day-inner {
  transform: scale(1.03) rotateY(0deg) !important;
}

/* Gesperrt */
.day-inner.locked {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========== Reward-Panel (unten hochfahren) ========== */
.reward-panel {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 0 0;
  transition: all 0.8s ease;
  z-index: 10000;
  padding: 16px;
  backdrop-filter: blur(6px);
}

.reward-panel.open {
  bottom: 0;
  animation: bounceInUp 1s ease;
}

@keyframes bounceInUp {
  0% {
    transform: translateY(100%);
  }

  60% {
    transform: translateY(-10%);
  }

  80% {
    transform: translateY(5%);
  }

  100% {
    transform: translateY(0);
  }
}

.reward-header {
  display: flex;
  justify-content: flex-end;
}

.reward-close-btn {
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

/* Inhalt */
.reward-content {
  text-align: center;
  margin-top: 10px;
}

.reward-image {
  max-width: 120px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#reward-title {
  font-size: 1.4rem;
  color: #E6007E;
}

#reward-text {
  color: #444;
  margin: 10px 0;
}

/* E-Mail Formular / MyDSPro Claim */
.email-form,
.mydspro-claim-section {
  margin-top: 16px;
}

.email-form label {
  display: block;
  margin-bottom: 6px;
}

.email-form input {
  width: 80%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#claim-btn {
  background: #E6007E;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

#mydspro-claim-result {
  margin-top: 10px;
  font-weight: bold;
  color: green;
}

/* ========== Confetti Canvas ========== */
.confetti-canvas {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hidden {
  display: none !important;
}





@media (min-width: 1100px) {

  h2 {
    font-size: 55px;
    margin-bottom: 40px;
  }
}

@media (min-width: 900px) {

  h2 {
    font-size: 80px;
    margin-bottom: 40px;
  }
}


h2 {
  font-weight: 800;
  font-size: 35px;
  margin-bottom: 40px;
}






@media (min-width: 1100px) {

  h3 {
    font-size: 55px;
    margin-bottom: 40px;
  }
}

@media (min-width: 900px) {

  h3 {
    font-size: 80px;
    margin-bottom: 40px;
  }
}








.index-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--button-background, #ff14c4);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold, 600);
  margin-top: 1rem;
  border: 2px solid var(--button-background, #ff14c4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt */
.index-button:hover {
  background-color: transparent;
  color: var(--button-background, #ff14c4);
  box-shadow: 0 0 8px var(--button-background, #ff14c4);
}

/* FontAwesome Icon im Button */
.index-button-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}


.index-button-container {
  text-align: center;
  /* Zentriert den Button horizontal */
  margin-top: 1rem;
}


@media (min-width: 780px) {

  .index-button-container {
    text-align: left;
    /* Zentriert den Button horizontal */

  }
}




.lmx-button {
  display: inline-flex;
  align-items: center;
  background-color: #12b800;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold, 600);
  margin-top: 1rem;
  border: 2px solid #12b800;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt */
.lmx-button:hover {
  background-color: transparent;
  color: #12b800;
  box-shadow: 0 0 8px #12b800;
}

/* FontAwesome Icon im Button */
.lmx-button-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}


.lmx-button-container {
  text-align: center;
  /* Zentriert den Button horizontal */
  margin-top: 1rem;
}


@media (min-width: 780px) {

  .lmx-button-container {
    text-align: left;
    /* Zentriert den Button horizontal */

  }
}














/* Darkmode-Variante über Attribut an <html> (siehe JS) */
:root[data-theme="dark"] {
  --color-primary: #292929;
  --color-secondary: #f4f4f4;
  --color-accent: #E6007E;
  --color-hover: #e6e6e6;
  --zentrierte-color-text: #f4f4f4;
  --zentrierte-color-secondary: #c9c9c9;
  --translucent-white: rgba(13, 13, 13, 0.8);


}


/* Darkmode */
:root[data-theme="dark"] .ds-highlights-item p {
  color: var(--color-secondary);
}

:root[data-theme="dark"] .faq-item {
  background-color: #404040
}




:root[data-theme="dark"] .header.scrolled {
  background: var(--color-primary);

}


:root[data-theme="dark"] .paket-item {
  background-color: #393939;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  padding: 20px;
  position: relative;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  color: #ffffff;
}


:root[data-theme="dark"] .paket-note {

  color: #9c9c9c;

}

:root[data-theme="dark"] .section-intro {
  color: #cccccc;
}




/* ===== Dark-Mode Toggle Button ===== */
.theme-toggle {
  position: fixed;
  /* schwebend */
  right: 10px;
  /* Abstand zum Rand */
  bottom: 50px;
  /* sitzt über scroll-top (typisch 24px + Buttonhöhe + Gap) */
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.theme-toggle:active {
  transform: translateY(0);
}

/* SVG Icons im Button */
.theme-toggle svg {
  width: 22px;
  height: 22px;
  transition: opacity .18s ease, transform .18s ease;
}

/* Standard: Sonne sichtbar, Mond versteckt */
.theme-toggle .icon-sun {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle .icon-moon {
  opacity: 0;
  transform: scale(.8);
  position: absolute;
}

/* Im Darkmode: Mond sichtbar, Sonne versteckt */
:root[data-theme="dark"] .theme-toggle .icon-sun {
  opacity: 0;
  transform: scale(.8);
  position: absolute;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
  opacity: 1;
  transform: scale(1);
}

/* Falls du eine Buttons-Sektion nutzt, verhindere Overlap */
.fixed-buttons {
  pointer-events: none;
}

.fixed-buttons>* {
  pointer-events: auto;
}
































:root {
  /* Haupt-Farben & Variablen */
  --main-color: #E6007E;
  /* Magenta-Pink */
  --bg-color: #fafafa;
  /* Hintergrund */
  --text-color: #333;
  /* Standard Text */
  --heading-color: var(--main-color);
  /* Überschriften = Pink */
  --note-color: #666;
  /* Kleinere Hinweise */
  --border-color: #ddd;
  /* Tabellenrahmen */
  --shadow-color: rgba(0, 0, 0, 0.1);
  --max-width: 1200px;



  /* Abstände & Größen */
  --section-padding: 40px;
  --small-text-size: 0.8rem;
  --normal-text-size: 1rem;
  --heading-font-size: 2rem;
  --paket-title-size: 1.5rem;
  /* leicht kleiner, damit Button nicht überlappt */
  --transition-speed: 0.3s;

  /* Button-Styles */
  --button-size: 42px;
  --button-bg: var(--main-color);
  --button-color: #fff;
  --button-hover-scale: 1.1;
}








/* =====================================
     TITEL FÜR JEDE SEKTION
     ===================================== */
.section-title {
  font-size: var(--heading-font-size);
  text-transform: uppercase;
  color: var(--heading-color);
  /* Ab jetzt pink */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

/* Zentrierter Einleitungstext in Sektionen */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: var(--normal-text-size);
  color: var(--text-color);
}

/* =====================================
     SEKTIONEN (Bowling, Spark, etc.)
     ===================================== */
.bowling-section,
.spark-section,
.lasertag-section,
.kinder-section,
.special-section,
.price-section {
  padding: var(--section-padding) 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* =====================================
     PAKETE - CONTAINER & ITEMS
     ===================================== */
.pakete-container {
  display: grid;
  grid-gap: 30px;
  /* Flexibles Grid für Desktop & Mobile: */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 20px;
}

.paket-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  padding: 20px;
  position: relative;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.paket-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Paket-Überschrift */
.paket-h3 {
  color: var(--main-color);
  font-size: var(--paket-title-size);
  margin-bottom: 8px;

  /* Hier sorgen wir für genügend Platz nach rechts,
       damit der Reservieren-Button nicht den Text überlagert */
  padding-right: 55px;
  word-wrap: break-word;
  /* Umbrüche bei langen Worten */
  overflow-wrap: break-word;
}

/* Kleinere Hinweise (statt Klammern) */
.paket-note {
  font-size: var(--small-text-size);
  color: var(--note-color);
  margin-bottom: 10px;
}

/* Zeilen ohne Bullet Points */
.paket-line {
  margin-bottom: 5px;
  font-size: var(--normal-text-size);
}

.paket-preis {
  font-weight: bold;
  margin: 10px 0 5px 0;
  font-size: var(--normal-text-size);
}

/* =====================================
     RESERVIEREN-BUTTON IM PAKET
     ===================================== */
.reserve-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: var(--button-size);
  height: var(--button-size);
  background: #E6007E;
  color: var(--button-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transform: scale(0);
  transition: transform var(--transition-speed) ease;
  z-index: 2;
}

.reserve-button:hover {
  transform: scale(var(--button-hover-scale));
}

/* Auf Hover/touch des Pakets: Button einblenden */
.paket-item:hover .reserve-button,
.paket-item:active .reserve-button {
  transform: scale(1);
}

/* =====================================
     PREIS-TABELLE
     ===================================== */
.price-table-wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px var(--shadow-color);
}

/* Zusätzlicher Wrapper für horizontales Scrollen bei schmalen Screens */
.price-table-responsive {
  width: 100%;
  overflow-x: auto;
  /* Horizontales Scrollen, falls nötig */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  min-width: 600px;
  /* Verhindert extremes Zusammenquetschen */
}

.price-table thead {
  background: var(--main-color);
  color: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  /* Damit die Zeilen nicht umbrechen */
}

.sub-th {
  display: block;
  font-size: var(--small-text-size);
  opacity: 0.9;
  margin-top: 3px;
}

.price-hinweis {
  font-size: 0.9rem;
  color: var(--note-color);
  line-height: 1.4;
  margin-bottom: 10px;
}

.price-hinweis.small {
  font-size: 0.8rem;
  color: #999;
}

.price-abschluss {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
}

/* =====================================
     EINFACHE FADE-IN-UP ANIMATION
     ===================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards ease;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
     RESPONSIVE ANPASSUNGEN
     ===================================== */
@media (min-width: 768px) {
  .pakete-container {
    grid-template-columns: 1fr;
  }

  .price-table th,
  .price-table td {
    font-size: 0.8rem;
    padding: 8px;
  }



}

















/* Außenrahmen: volle Breite, mit Seitenabstand */
.ds-feature-section {
  width: 100%;
}

.ds-feature-box {
  width: calc(100% - 60px);
  margin: 30px auto;
  position: relative;
  color: #fff;
  overflow: visible;
  border-radius: 16px;
  padding: 60px 20px;

  /* bewegter Gradient */
  background: linear-gradient(135deg, #2f28ff, #e6007e, #efac00);
  background-size: 300% 300%;
  animation: dsGradient 18s ease infinite;

  /* Pattern-Overlay per Variablen */
  --pattern-url: none;
  /* z.B. url('assets/patterns/dots-light.svg') */
  --pattern-size: 160px;
  /* px | % | clamp() | vw */
  --pattern-opacity: .18;
  /* 0–1 */
  --pattern-blend: normal;
  /* normal | overlay | soft-light | screen ... */
  isolation: isolate;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Pattern-Overlay */
.ds-feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;

  background-image: var(--pattern-url);
  background-repeat: repeat;
  background-size: var(--pattern-size);
  background-position: center;

  opacity: var(--pattern-opacity);
  mix-blend-mode: var(--pattern-blend);
}

/* Inhalt über dem Overlay */
.ds-feature-box>* {
  position: relative;
  z-index: 1;
}

/* Headline + Subtext IN der Box */
.ds-feature-head.in-box {
  text-align: center;
  margin-bottom: 18px;
  margin-top: -30px;
}

.ds-feature-title {
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
}

.ds-feature-sub {
  margin-top: 6px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
}

/* Grid: 1/2/4 Spalten */
.ds-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .ds-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-feature-box {
    --pattern-size: 180px;
  }
}

@media (min-width: 960px) {
  .ds-feature-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .ds-feature-box {
    padding: 70px 28px;
    --pattern-size: 220px;
  }
}

/* =========================
   Kacheln (Link als Block)
   ========================= */
.ds-card {
  display: block;
  text-decoration: none;
  background: transparent;
  /* Start: transparent – heben auf Hover/Active ab */
  color: #fff;
  border-radius: 14px;
  padding: 12px;

  position: relative;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
  outline: none;
}

/* Medienbereich – KEIN Hintergrund; Bilder werden NIE beschnitten */
.ds-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: clamp(150px, 28vw, 220px);
  /* verhindert winzige Bilder auf Mobil */
  padding: 0;
}

.ds-card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* nie croppen */
  display: block;
}

/* Typografie – enger zwischen Titel & Satz */
.ds-card-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.22;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .35);
  text-align: center;
}

.ds-card-text {
  margin-top: 2px;
  line-height: 1.45;
  text-align: center;
  color: #f4f4f4;
}

/* Tooltip (standardmäßig versteckt) */
.card-tooltip {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%) translateY(6px);

  color: #fff;
  font-size: .85rem;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .15s ease, transform .15s ease, background .15s ease, color .15s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  background: rgba(0, 0, 0, .88);
}

/* ===== Desktop-Hover ===== */
@media (hover: hover) {
  .ds-card:hover {
    background: #ffffff;
    color: #0f0f12;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .14);
  }

  .ds-card:hover .ds-card-title,
  .ds-card:hover .ds-card-text {
    text-shadow: none;
    color: #111;
  }

  .ds-card:hover .card-tooltip {
    background: #f4f4f4;
    color: #000000;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: none;
  }
}

/* ===== Touch-Active (1:1 wie Hover) ===== */
.ds-card.active {
  background: #ffffff;
  color: #0f0f12;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .14);
}

.ds-card.active .ds-card-title,
.ds-card.active .ds-card-text {
  text-shadow: none;
  color: #111;
}

.ds-card.active .card-tooltip {
  background: #f4f4f4;
  color: #000000;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: none;
}

/* Optionaler Darkmode-Feinschliff via data-theme */
:root[data-theme="dark"] .ds-feature-sub {
  color: rgba(255, 255, 255, .9);
}













/* ==============================
   PARTNER • CLEAN DS STYLE
   ============================== */

.partners-pro {
  width: calc(100% - 60px);
  margin: 30px auto;
  padding: 0 16px;
}

.partners-pro__head {
  text-align: center;
  margin-bottom: 28px;
}

.partners-pro__title {
  /* orientiert an deinen Überschriften (fett/zentriert) */
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 35px);
  line-height: 1.15;
  color: var(--color-secondary, #151515);
  margin: 0 0 6px;
}

.partners-pro__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--zentrierte-color-secondary, #555555);
  margin: 0;
}

/* Responsive Grid */
.partners-pro__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card – weißes Panel + pinke Border */
.partners-pro__card {
  background: #ffffff;
  border: 2px solid var(--color-accent, #E6007E);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

@media (hover:hover) {
  .partners-pro__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
    border-color: var(--color-accent, #E6007E);
  }
}

/* LOGO: eigener, quadratischer Platz – kein Überlappen, kein Reinragen */
.partners-pro__logo {
  /* fester, quadratischer Bereich */
  aspect-ratio: 1 / 1;
  /* Breite responsiv; passt sich der Card an */
  width: clamp(120px, 80%, 180px);
  /* Abstand zum Text darunter */
  margin: 6px auto 14px;
  /* zentrieren */
  display: grid;
  place-items: center;
  /* Sicherstellen, dass nichts rausläuft */
  overflow: hidden;
}

/* Bild skaliert rein, bleibt square, verzerrt nicht */
.partners-pro__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* keine Verzerrung */
  display: block;
}


/* Texte */
.partners-pro__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  color: var(--color-secondary, #151515);
  margin: 4px 0 8px;
}

.partners-pro__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--zentrierte-color-secondary, #555555);
  margin: 0 0 16px;
  padding: 0 6px;
}

/* Eigener schwarzer Button (abgerundet), neutral zum Rest der Seite */
.partners-pro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.partners-pro__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.partners-pro__btn:active {
  transform: none;
}

/* Very small tweak */
@media (max-width:380px) {
  .partners-pro__logo {
    height: 100px;
  }
}

/* Darkmode – wenn du data-theme="dark" setzt */
[data-theme="dark"] .partners-pro__title {
  color: #f4f4f4;
}

[data-theme="dark"] .partners-pro__card {
  background: #0f0f11;
  border-color: var(--color-accent, #E6007E);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

[data-theme="dark"] .partners-pro__name {
  color: #f4f4f4;
}

[data-theme="dark"] .partners-pro__desc {
  color: #c9c9c9;
}

[data-theme="dark"] .partners-pro__btn {
  background: #000;
  border-color: #000;
  color: #fff;
}











/* Nur auf Lasertag-Seite: M2MAXX Farben anders */
body.page-lasertag .m2mxm-spiele {
  --m2mxm-pink: #12b800;
  /* Beispiel: Lasertag-Pink */
  --m2mxm-border: #12b800;
  /* optional passend */
  --m2mxm-black: #0f0f12;
  /* optional */
}




/* ===== M2MAX SPIELE – Variablen & Reset nur für diese Sektion ===== */
.m2mxm-spiele {
  --m2mxm-pink: #ff2d9b;
  --m2mxm-black: #111;
  --m2mxm-text: #1a1a1a;
  --m2mxm-muted: #6b6b6b;
  --m2mxm-bg: #fff;
  --m2mxm-border: #ffe0f0;
  --m2mxm-radius-xl: 20px;
  --m2mxm-radius-lg: 16px;
  --m2mxm-radius-md: 12px;
  --m2mxm-radius-sm: 10px;
  --m2mxm-gap: 16px;
  --m2mxm-speed: .28s;

  -webkit-tap-highlight-color: transparent;
}

.m2mxm-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: clamp(16px, 3vw, 32px);
}

/* ===== Headline & Lead ===== */
.m2mxm-section-title {
  margin: 0 0 8px 0;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--m2mxm-black);
  letter-spacing: -.015em;
}

.m2mxm-section-lead {
  margin: 0 0 18px 0;
  color: var(--m2mxm-muted);
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  line-height: 1.45;
}

/* ===== Tabs / Buttons ===== */
.m2mxm-tabs {
  margin: .8rem 0 1.1rem
}

.m2mxm-tabs-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.m2mxm-tabs-list::-webkit-scrollbar {
  display: none
}

/* Mobil: erster Button sofort links (keine Spacer) */
.m2mxm-tabs-list::before,
.m2mxm-tabs-list::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  scroll-snap-align: none;
}

@media (min-width: 960px) {
  .m2mxm-tabs-list {
    justify-content: flex-start;
    scroll-snap-type: none;
    padding-left: 0;
  }

  .m2mxm-tabs-list::before,
  .m2mxm-tabs-list::after {
    width: 0;
  }
}

.m2mxm-tab {
  -webkit-user-select: none;
  user-select: none;
  scroll-snap-align: center;
  /* Auf Auswahl wird zentriert */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: var(--m2mxm-pink);
  border: 2px solid var(--m2mxm-pink);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--m2mxm-speed) ease, color var(--m2mxm-speed) ease, border-color var(--m2mxm-speed) ease, transform var(--m2mxm-speed) ease;
  text-decoration: none;
}

.m2mxm-tab:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--m2mxm-pink) 40%, white);
  outline-offset: 2px;
}

.m2mxm-tab[aria-selected="true"] {
  background: var(--m2mxm-pink);
  color: #fff;
  border-color: var(--m2mxm-pink);
  transform: none;
}

/* ===== Card (Detail) ===== */
.m2mxm-card {
  border: 2px solid var(--m2mxm-pink);
  background: var(--m2mxm-bg);
  border-radius: var(--m2mxm-radius-xl);
  padding: 14px;
  overflow: hidden;
}

@media (min-width: 960px) {
  .m2mxm-card {
    margin-top: 28px;
  }

  /* mehr Luft oben zu Tabs/Headline */
}

.m2mxm-card-inner {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

/* Desktop: Text links, Bild rechts */
@media (min-width: 960px) {
  .m2mxm-card-inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Bild – nie abschneiden: contain */
.m2mxm-card-media {
  border-radius: var(--m2mxm-radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
}

.m2mxm-card-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* NICHT croppen */
  max-height: 260px;
  /* mobil */
}

@media (min-width: 960px) {
  .m2mxm-card-media img {
    max-height: 380px;
  }

  /* desktop */
}

/* Text */
.m2mxm-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 1;
  /* mobil oben */
}

.m2mxm-card-media {
  order: 2;
}

/* mobil unten */

.m2mxm-title {
  margin: 2px 0 2px 0;
  font-size: clamp(2rem, 2.1vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--m2mxm-black);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  .m2mxm-title {
    font-size: 2.6rem;
  }
}

@media (min-width: 1200px) {
  .m2mxm-title {
    font-size: 2.8rem;
  }
}

.m2mxm-desc {
  margin: 0;
  color: var(--m2mxm-text);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== Meta (Icons + Labels) — equal spacing, icon top, label centered under it ===== */
.m2mxm-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gleiche Spaltenbreite => gleicher Abstand */
  column-gap: 18px;
  row-gap: 6px;
  padding: 6px 0 0;
  margin: 0 0 14px 0;
  list-style: none;
  align-items: start;
  /* Items oben ausrichten */
  justify-items: center;
  /* Zentriert jedes Item innerhalb seiner Spalte */
}

.m2mxm-meta li {
  display: grid;
  grid-template-rows: auto auto;
  /* oben Icon, darunter Label */
  justify-items: center;
  /* Label unter Icon zentriert */
  align-items: start;
  gap: 8px;
  width: 100%;
}

.m2mxm-circle {
  width: 54px;
  height: 54px;
  border: 2px solid var(--m2mxm-pink);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--m2mxm-pink);
}

.m2mxm-label {
  font-size: .95rem;
  color: var(--m2mxm-black);
  text-align: center;
  /* unter Icon zentriert */
  line-height: 1.25;
}

/* ===== Mobile: alles zentrieren (Titel, Text, Meta) ===== */
@media (max-width: 959.98px) {
  .m2mxm-card-body {
    align-items: center;
    text-align: center;
  }

  .m2mxm-title,
  .m2mxm-desc {
    text-align: center;
  }

  .m2mxm-meta {
    justify-items: center;
    /* Icons/Labels zentriert */
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ===== Desktop-Feinschliff für .m2mxm-meta ===== */
@media (min-width: 960px) {
  .m2mxm-meta {
    /* Grid selbst zentrieren und oben mehr Luft */
    margin-top: 30px;
    /* vorher 0 auto 14px */
    margin-left: -15px;
    max-width: 400px;
    /* verhindert riesige Spalten-Abstände */
    justify-content: center;
    /* Grid-Inhalt zentrieren */
    justify-items: center;
    /* jedes Item zentriert */
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    column-gap: -6px;
    /* kleinerer Abstand zwischen den 3 Icons */
    row-gap: -8px;
  }

  /* verhindert unnötiges Strecken der Items über die ganze Spalte */
  .m2mxm-meta li {
    width: auto;
  }
}


/* ===== Animations: Karte raus / rein ===== */
.m2mxm-card {
  position: relative
}

.m2mxm-card-inner.is-exiting {
  animation: m2mxm-slide-out var(--m2mxm-speed) ease both
}

.m2mxm-card-inner.is-entering {
  animation: m2mxm-slide-in calc(var(--m2mxm-speed) + .04s) ease both
}

@keyframes m2mxm-slide-out {
  0% {
    opacity: 1;
    transform: translateX(0)
  }

  100% {
    opacity: 0;
    transform: translateX(-24px)
  }
}

@keyframes m2mxm-slide-in {
  0% {
    opacity: 0;
    transform: translateX(28px)
  }

  100% {
    opacity: 1;
    transform: translateX(0)
  }
}




h3 {
  line-height: 1.2;
}







/* Sektion-Rahmen */
.dsb-partner-section {
  padding: clamp(3rem, 5vw, 4rem) 1.5rem;
  background: var(--color-accent);
  /* Basis-Hintergrund wie deine anderen Sektionen */
}

.dsb-partner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Head-Bereich oben */
.dsb-partner-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.dsb-partner-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
}

.dsb-partner-title {
  font-size: clamp(1.8rem, 3vw, 2.rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.dsb-partner-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* Grid für die Partner-Karten */
.dsb-partner-grid {
  margin-top: clamp(2rem, 4vw, 2.6rem);
  display: grid;
  margin: 20px;

  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .dsb-partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Karten-Design – Accent Color als Hintergrund */
.dsb-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-radius: 1.4rem;
  text-align: center;
  text-decoration: none;
  background-color: white;
  color: #000;

  /* Accent-Gradient: nutzt deine CSS-Variable, falls vorhanden */

  /* leichter „Glass“-Overlay fürs Logo / Text */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.192);
  border: 1px solid rgba(255, 255, 255, 0.16);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
}

.dsb-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.217);
  border-color: rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

/* Logo-Bereich – sorgt dafür, dass die Logos nicht riesig werden */
.dsb-partner-logo-wrap {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;

  /* leichte, dunkle Fläche damit helle Logos gut lesbar bleiben */
  padding: 0.5rem 0.7rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0);
}

.dsb-partner-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Partner-Texte in der Karte – bewusst klein gehalten */
.dsb-partner-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
}

.dsb-partner-tagline {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.85);
}

/* Mobile Feintuning */
@media (max-width: 480px) {
  .dsb-partner-card {
    padding: 0.9rem 0.8rem;
    border-radius: 1.2rem;
  }

  .dsb-partner-logo {
    max-width: 130px;
  }
}

/* ================================================================
   MEGA MENU - McDonald's NZ Style Navigation
   ================================================================ */

/* Header Layout Adjustments */
.header-spacer {
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 20px;
}

/* Reservieren Button Slide Animation */
.reservieren-btn {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

.header.menu-open .reservieren-btn {
  transform: translateX(-60px);
}

/* Mega Menu Toggle Button */
.mega-menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mega-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Close Text Animation */
.close-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.35s ease 0.1s,
    max-width 0.35s ease;
}

.header.menu-open .close-text {
  opacity: 1;
  max-width: 100px;
}

/* Header Background Change when Menu Open */
.header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

/* ================================================================
   MEGA MENU OVERLAY
   ================================================================ */
.mega-menu-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: #ffffff;
  display: flex;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Body Lock when Menu is Open */
body.menu-locked {
  overflow: hidden;
}

/* ================================================================
   MEGA MENU LEFT SIDE (45% - Categories)
   ================================================================ */
.mega-menu-left {
  width: 45%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 80px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  overflow: hidden;
}

/* ================================================================
   BOWLING BALL ANIMATION
   ================================================================ */
@keyframes rollIn {
  0% {
    transform: translate(-150%, 80%) rotate(0deg);
    opacity: 0;
  }

  30% {
    opacity: 0.08;
  }

  100% {
    transform: translate(-20%, 20%) rotate(390deg);
    opacity: 0.12;
  }
}

@keyframes rollOut {
  0% {
    transform: translate(-20%, 20%) rotate(720deg);
    opacity: 0.12;
  }

  100% {
    transform: translate(-150%, 80%) rotate(80deg);
    opacity: 0;
  }
}

.bowling-ball-graphic {
  position: absolute;
  bottom: -20%;
  left: -15%;
  font-size: clamp(280px, 45vw, 550px);
  color: var(--color-accent);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate(-150%, 80%) rotate(0deg);
}

.mega-menu-overlay.active .bowling-ball-graphic {
  animation: rollIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}

.mega-menu-overlay:not(.active) .bowling-ball-graphic {
  animation: rollOut 0.5s ease forwards;
}

/* ================================================================
   CATEGORY LIST (Left Side)
   ================================================================ */
.mega-menu-categories {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.mega-category span {
  position: relative;
}

.mega-category i {
  font-size: 0.5em;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease,
    transform 0.25s ease;
}

/* Active/Hovered Category */
.mega-category:hover,
.mega-category.active {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.03);
}

.mega-category:hover i,
.mega-category.active i {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   MEGA MENU RIGHT SIDE (55% - Sub-links)
   ================================================================ */
.mega-menu-right {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 80px 40px 60px;
  background: #ffffff;
}

/* Sub-links Container */
.mega-menu-sublinks {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sublink-group {
  display: none;
  flex-direction: column;
  gap: 12px;
  animation: fadeInRight 0.3s ease forwards;
}

.sublink-group.active {
  display: flex;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sublink-group a {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  transition: color 0.2s ease,
    transform 0.2s ease;
}

.sublink-group a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.sublink-group a:hover {
  color: var(--color-accent);
  transform: translateX(8px);
}

.sublink-group a:hover::after {
  width: 40px;
}

/* ================================================================
   MyDSBowl SECTION (Bottom Right)
   ================================================================ */
.mega-menu-mydsbowl {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mydsbowl-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.mydsbowl-title .gradient-text {
  background: linear-gradient(135deg, #E6007E, #ff4da6, #EFAC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mydsbowl-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pill-shaped Buttons */
.mydsbowl-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #E6007E 0%, #ff4da6 50%, #E6007E 100%);
  background-size: 200% 100%;
  color: white;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
}

.mydsbowl-pill-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 126, 0.4);
}

.mydsbowl-pill-btn:active {
  transform: translateY(0);
}

.mydsbowl-pill-btn i {
  font-size: 16px;
}

/* ================================================================
   RESPONSIVE DESIGN - MEGA MENU
   ================================================================ */
@media (max-width: 1024px) {
  .mega-menu-left {
    padding: 40px 30px 40px 50px;
  }

  .mega-menu-right {
    padding: 40px 50px 30px 40px;
  }

  .mega-category {
    font-size: clamp(24px, 3.5vw, 36px);
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .mega-menu-overlay {
    flex-direction: column;
    overflow-y: auto;
  }

  .mega-menu-left,
  .mega-menu-right {
    width: 100%;
    height: auto;
  }

  .mega-menu-left {
    padding: 30px 25px;
    min-height: 50vh;
  }

  .mega-menu-right {
    padding: 30px 25px;
  }

  .bowling-ball-graphic {
    font-size: clamp(200px, 60vw, 350px);
    bottom: -10%;
    left: -20%;
  }

  .mega-category {
    font-size: 28px;
    padding: 10px 16px;
  }

  .sublink-group a {
    font-size: 18px;
    padding: 10px 0;
  }

  .mydsbowl-buttons {
    flex-direction: column;
  }

  .mydsbowl-pill-btn {
    width: 100%;
    justify-content: center;
  }

  /* Adjust header for mobile */
  .header-right {
    gap: 10px;
    margin-right: 15px;
  }

  .header.menu-open .reservieren-btn {
    transform: translateX(-50px);
  }

  .reservieren-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .mega-menu-left {
    padding: 20px 20px;
    min-height: 45vh;
  }

  .mega-menu-right {
    padding: 20px 20px;
  }

  .mega-category {
    font-size: 24px;
    padding: 8px 12px;
  }

  .bowling-ball-graphic {
    font-size: 180px;
  }

  .close-text {
    font-size: 12px;
  }

  .header.menu-open .reservieren-btn {
    transform: translateX(-40px);
  }
}

/* ================================================================
   MEGA MENU IMPROVEMENTS - V2
   ================================================================ */

/* Right side content alignment - always at top */
.mega-menu-sublinks {
  justify-content: flex-start;
  padding-top: 20px;
}

/* Sublink Description Text */
.sublink-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
  max-width: 400px;
}

/* Sublink list wrapper */
.sublink-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sublink-list a {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sublink-list a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.sublink-list a:hover {
  color: var(--color-accent);
  transform: translateX(8px);
}

.sublink-list a:hover::after {
  width: 40px;
}

/* ================================================================
   IMPROVED BOWLING BALL - Larger, Calmer, More Visible
   ================================================================ */
@keyframes bowlingBallFadeIn {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }

  100% {
    opacity: 0.25;
    transform: rotate(85deg);
  }
}

@keyframes bowlingBallFadeOut {
  0% {
    opacity: 0.25;
    transform: rotate(85deg);
  }

  100% {
    opacity: 0;
    transform: rotate(0deg);
  }
}

.bowling-ball-graphic {
  position: absolute;
  bottom: -35%;
  left: -30%;
  font-size: clamp(550px, 65vw, 950px);
  color: var(--color-accent);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: rotate(0deg);
}

.mega-menu-overlay.active .bowling-ball-graphic {
  animation: bowlingBallFadeIn 0.4s ease-out forwards;
}

.mega-menu-overlay:not(.active) .bowling-ball-graphic {
  animation: bowlingBallFadeOut 0.2s ease forwards;
}

/* ================================================================
   CATEGORY STYLING - All Black, Others Fade on Hover
   ================================================================ */
.mega-category {
  display: flex;
  align-items: center;
  padding: 14px 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #000000;
  text-decoration: none;
  background: transparent !important;
  border-radius: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.mega-category span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-category span i {
  font-size: 0.45em;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-category:hover span i,
.mega-category.active span i {
  opacity: 1;
  transform: translateX(4px);
}

/* When hovering menu, fade non-hovered categories */
.mega-menu-categories:hover .mega-category:not(:hover) {
  opacity: 0.35;
}

/* Active category always visible */
.mega-menu-categories:hover .mega-category.active:not(:hover) {
  opacity: 0.5;
}

/* ================================================================
   MOBILE SUB-ITEMS (Hidden on Desktop)
   ================================================================ */
.mobile-subitems {
  display: none;
}

/* ================================================================
   MEGA MENU BOTTOM SECTION (News + MyDSBowl)
   ================================================================ */
.mega-menu-bottom {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

/* DSBowl News Section */
.dsbowl-news-section {
  flex: 1;
}

.news-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-boxes {
  display: flex;
  gap: 12px;
}

.news-box {
  flex: 1;
  background: linear-gradient(135deg, #f8f8f8, #fff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-tag {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.news-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* ================================================================
   IMPROVED MyDSBowl SECTION
   ================================================================ */
.mega-menu-mydsbowl {
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mydsbowl-headline {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 16px 0;
  color: #000;
  text-align: left;
}

.mydsbowl-headline .gradient-text {
  background: linear-gradient(135deg, #E6007E, #ff4da6, #EFAC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mydsbowl-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.mydsbowl-description {
  font-size: 13px;
  color: #666;
  margin: 0;
  max-width: 300px;
  line-height: 1.5;
  text-align: left;
}

/* ================================================================
   RESPONSIVE MEGA MENU V2
   ================================================================ */
@media (max-width: 1200px) {
  .mega-menu-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .news-boxes {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {

  /* Hide desktop sublinks, show mobile subitems */
  .mega-menu-right {
    display: none;
  }

  .mega-menu-left {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .mega-menu-overlay {
    flex-direction: column;
  }

  /* Mobile Sub-items - Show on mobile */
  .mobile-subitems {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0 6px 20px;
    width: 100%;
  }

  .mega-category.expanded .mobile-subitems {
    display: flex;
  }

  .mobile-subitem {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .mobile-subitem:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  /* Categories as expandable on mobile */
  .mega-category {
    flex-wrap: wrap;
    font-size: 22px;
    padding: 12px 16px;
  }

  .mega-category.expanded .category-arrow {
    transform: rotate(90deg);
  }

  /* Bowling ball smaller on mobile */
  .bowling-ball-graphic {
    font-size: clamp(200px, 50vw, 300px);
    bottom: auto;
    top: 10%;
    left: -15%;
    opacity: 0.1;
  }

  /* Mobile MyDSBowl section at bottom of left side */
  .mega-menu-left::after {
    content: '';
    display: block;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .mega-category {
    font-size: 20px;
    padding: 10px 14px;
  }

  .mobile-subitem {
    font-size: 14px;
    padding: 8px 14px;
  }

  .bowling-ball-graphic {
    font-size: 180px;
  }
}

/* ================================================================
   FINAL REFINEMENTS - V3
   ================================================================ */

/* White background for entire overlay */
.mega-menu-overlay {
  background: #ffffff;
}

/* White background on left side */
.mega-menu-left {
  background: #ffffff;
}

/* Right side also white - no framed box */
.mega-menu-right {
  background: transparent;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  padding: 60px 80px 40px 60px;
}

/* Framed box ONLY for bottom section (News + MyDSBowl) */
.mega-menu-bottom {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 30px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* MyDSBowl buttons aligned to left */
.mydsbowl-buttons {
  justify-content: flex-start;
}

.mega-menu-mydsbowl {
  text-align: left;
}

/* Allow bowling ball to overflow across entire overlay */
.mega-menu-overlay {
  overflow: visible;
}

.mega-menu-left {
  overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .mega-menu-right {
    padding: 40px 50px 30px 40px;
  }

  .mega-menu-bottom {
    border-radius: 16px;
    padding: 20px 24px;
  }
}

/* Desktop bottom section - solid white background */
.mega-menu-bottom {
  background: #ffffff;
  position: relative;
  z-index: 5;
}

/* Hide mobile bottom section on desktop */
.mobile-bottom-section {
  display: none;
}

/* ================================================================
   MEGA MENU ENTRANCE/EXIT ANIMATION
   ================================================================ */
.mega-menu-overlay {
  transform: translateY(-100%);
  transition: transform 0.25s ease-out, opacity 0.2s ease-out, visibility 0.25s;
}

.mega-menu-overlay.active {
  transform: translateY(0);
}

/* ================================================================
   BOWLING BALL - Per Breakpoint Sizing (Never cut off)
   ================================================================ */
/* Desktop: Large ball, well positioned */
.bowling-ball-graphic {
  font-size: clamp(450px, 50vw, 700px);
  bottom: -25%;
  left: -20%;
}

/* Tablet */
@media (max-width: 1024px) {
  .bowling-ball-graphic {
    font-size: clamp(350px, 45vw, 500px);
    bottom: -20%;
    left: -22%;
  }
}

/* ================================================================
   MOBILE MENU - Complete Implementation V3
   ================================================================ */
@media (max-width: 768px) {

  /* Hide close text on mobile - only show X */
  .close-text {
    display: none !important;
  }

  /* Reduce header spacing on mobile */
  .header-right {
    gap: 8px;
    margin-right: 12px;
  }

  .reservieren-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .header.menu-open .reservieren-btn {
    transform: translateX(-10px);
  }

  /* Hide desktop right side and bottom */
  .mega-menu-right,
  .mega-menu-bottom {
    display: none;
  }

  /* Overlay - flex column */
  .mega-menu-overlay {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-height));
  }

  /* Main content area - scrollable, takes remaining space */
  .mega-menu-left {
    width: 100%;
    flex: 1;
    padding: 24px 20px;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* Bowling ball - positioned within content area - MUCH LARGER and further down/left */
  .bowling-ball-graphic {
    position: absolute;
    bottom: -50px;
    left: -35%;
    font-size: clamp(350px, 70vw, 550px);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
  }

  /* Categories container */
  .mega-menu-categories {
    position: relative;
    z-index: 10;
    gap: 12px;
    display: flex;
    flex-direction: column;
  }

  /* Category styling - VERY LARGE and bold */
  .mega-category {
    font-size: 32px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  }

  .mega-category span {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mega-category span i {
    font-size: 0.5em;
    transition: transform 0.2s ease;
  }

  /* ================================================================
     DRILL-DOWN ANIMATION - Fade left
     ================================================================ */
  .mega-menu-categories.drilled-down .mega-category:not(.expanded) {
    transform: translateX(-40px);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.3s;
  }

  .mega-category.expanded {
    transform: translateX(0);
  }

  .mega-category.expanded::before {
    content: '←';
    display: inline-block;
    margin-right: 16px;
    font-size: 28px;
    opacity: 0.6;
    cursor: pointer;
    animation: fadeInArrow 0.3s ease forwards;
  }

  @keyframes fadeInArrow {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }

    to {
      opacity: 0.6;
      transform: translateX(0);
    }
  }

  .mega-category.expanded span i {
    display: none;
  }

  /* Mobile sub-items - appear BELOW the category */
  .mobile-subitems {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0 10px 0;
    width: 100%;
    animation: fadeInUp 0.3s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mega-category.expanded .mobile-subitems {
    display: flex;
  }

  .mobile-subitem {
    display: block;
    font-size: 22px;
    /* Larger sub-links */
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 16px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Separator line */
    transition: all 0.2s ease;
  }

  .mobile-subitem:last-child {
    border-bottom: none;
  }

  .mobile-subitem:hover,
  .mobile-subitem:active {
    color: var(--color-accent);
    padding-left: 28px;
    background: rgba(0, 0, 0, 0.02);
  }

  /* Hide desktop News on mobile */
  .dsbowl-news-section {
    display: none;
  }

  /* ================================================================
     MOBILE BOTTOM SECTION - Fixed at bottom
     ================================================================ */
  .mobile-bottom-section {
    display: block;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    flex-shrink: 0;
    z-index: 100;
    overflow-y: auto;
    max-height: 45vh;
  }

  /* MyDSBowl */
  .mobile-mydsbowl {
    margin-bottom: 24px;
  }

  .mobile-mydsbowl-title {
    font-size: 26px;
    /* Larger title */
    font-weight: 900;
    margin: 0 0 8px 0;
    color: #000;
  }

  .mobile-mydsbowl-title .gradient-text {
    background: linear-gradient(135deg, #E6007E, #ff4da6, #EFAC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .mobile-mydsbowl-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
    max-width: 90%;
  }

  .mobile-mydsbowl-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
  }

  .mydsbowl-pill-btn.mobile-pill {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 180px;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* News */
  .mobile-news {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
  }

  .mobile-news-title {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-news-boxes {
    display: flex;
    gap: 12px;
  }

  .mobile-news-box {
    flex: 1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s;
  }

  .mobile-news-box:active {
    background: #eee;
    transform: scale(0.98);
  }

  .mobile-news-tag {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .mobile-news-text {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
  }
}

/* ================================================================
   SMALLER MOBILE SCREENS (480px)
   ================================================================ */
@media (max-width: 480px) {
  .mega-category {
    font-size: 28px;
    padding: 12px 0;
  }

  .mobile-subitem {
    font-size: 18px;
    padding: 14px 10px;
  }

  .bowling-ball-graphic {
    font-size: clamp(300px, 80vw, 450px);
    left: -40%;
    bottom: -30px;
  }

  .mobile-bottom-section {
    padding: 20px;
  }

  .mobile-mydsbowl-title {
    font-size: 24px;
  }

  .mobile-mydsbowl-desc {
    font-size: 13px;
  }

  .mobile-news-text {
    font-size: 12px;
  }

  .mydsbowl-pill-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ================================================================
   VERY SMALL HEIGHT SCREENS
   ================================================================ */
@media (max-height: 600px) and (max-width: 768px) {
  .mobile-bottom-section {
    max-height: 35vh;
    padding: 12px 16px;
  }

  .mega-category {
    font-size: 22px;
    padding: 8px 0;
  }

  .mobile-subitem {
    font-size: 16px;
    padding: 12px 16px;
  }

  .bowling-ball-graphic {
    font-size: 180px;
    opacity: 0.15;
  }
}

/* =================================================================
   FINAL POLISH FIXES (Automated)
   1. Bowling Ball: Slower animation, larger, lower.
   2. Sub-items: Visible without hiding siblings.
   3. Buttons: Width fix.
   ================================================================= */

/* Smooth out transitions for everything (soften) */
* {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  /* Soft ease */
}



/* Mobile Sub-items Accordion Logic */
/* Ensure drilled-down hiding is overridden just in case JS didn't fully catch it */
.mega-menu-categories.drilled-down .mega-category:not(.expanded) {
  transform: none !important;
  opacity: 1 !important;
  position: relative !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

/* MyDSBowl Buttons Fix - Mobile */
@media (max-width: 768px) {
  .mydsbowl-pill-btn.mobile-pill {
    flex: 0 1 auto !important;
    /* Don't stretch */
    width: auto !important;
    min-width: 0 !important;
    padding: 10px 18px !important;
  }

  .mobile-mydsbowl-buttons {
    gap: 12px;
    justify-content: flex-start;
  }
}

/* =================================================================
   FINAL ADJUSTMENTS (FIXED BALL, NO NEWS, ACCORDION)
   ================================================================= */

/* 1. HIDE NEWS ON MOBILE */
@media (max-width: 768px) {
  .mobile-news {
    display: none !important;
  }

  /* Since news is hidden, bottom section is smaller. 
       Ball needs to be adjusted in Media Queries below. */
}

/* 2. FIXED BACKGROUND BALL (SCROLL CONTRIB FIX) */
/* Make the scrollable container transparent so we see the ball behind it */
.mega-menu-left {
  background: transparent !important;
  /* Ensure z-index allows interaction */
  z-index: 5;
}

/* The overlay provides the white background */
.mega-menu-overlay {
  background: #ffffff !important;
  position: fixed;
  /* Ensure it is fixed viewport */
}

/* The ball is now a child of overlay (via HTML script update) */
.bowling-ball-graphic {
  position: absolute !important;
  z-index: 1 !important;
  /* Behind text */
  pointer-events: none;
  /* Default desktop/tablet positioning (can be overridden) */
}

/* 3. REMOVE HOVER TRANSPARENCY FADE */
/* We simply override the opacity change rules for siblings */
.mega-menu-categories:hover .mega-category:not(:hover),
.mega-menu-categories:focus-within .mega-category:not(:focus-within) {
  opacity: 1 !important;
  color: inherit !important;
}

/* 4. ACCORDION & ARROW ROTATION (NO MOVE) */
.mega-category.expanded::before {
  display: none !important;
  /* Remove the "Back" arrow if we are doing accordion */
}

/* Revert arrow hiding on expanded, and rotate it instead */
.mega-category.expanded span i {
  display: inline-block !important;
  transform: rotate(90deg);
}

/* 5. MOBILE BALL POSITIONING (EASY CONFIG) */
@media (max-width: 768px) {
  .bowling-ball-graphic {
    /* USER: ADJUST THESE VALUES TO MOVE BALL */
    left: -40% !important;
    /* Horizontal Position */
    bottom: -5% !important;
    /* Vertical Position */
    font-size: 650px !important;
    /* Size */

    opacity: 0.18 !important;
    transform: rotate(15deg);
    /* Optional rotation */
  }
}

@media (max-width: 480px) {
  .bowling-ball-graphic {
    /* S.MOBILE VALUES */
    left: -50% !important;
    bottom: -5% !important;
    font-size: 450px !important;
  }
}

/* Desktop Correction for Overlay Context (Visual Fix) */
@media (min-width: 1025px) {
  .bowling-ball-graphic {
    left: -12% !important;
    bottom: -38% !important;
    right: auto !important;
    /* Let animation control opacity */
    font-size: 900px !important;
  }
}

/* =================================================================
   FINAL MOBILE POLISH V4
   1. Ball Size/Opacity Sync
   2. Font Weight
   3. Stability
   ================================================================= */

@media (max-width: 768px) {

  /* 1. Ball Updates */
  .bowling-ball-graphic {
    font-size: 600px !important;
    /* Slightly larger */
    opacity: 0.18 !important;
    /* Match standard animation end state to avoid snap */
    /* Ensure position is stable */
    left: -40% !important;
    bottom: -5% !important;
    transform: rotate(15deg) !important;
    /* Fixed rotation, no wild spins on mobile if desired? */
    /* If we want it to 'fly in', we need animation. 
           But if 'opacity' is !important, it might override animation fade-in?
           No, !important overrides the keyframe value application usually.
           Let's use 'animation-fill-mode: forwards' and ensure the final state matches.
           If we set opacity: 0.25 !important here, it might start at 0.25 instantly if not carefully managed.
           
           Better: Remove !important from opacity here, and rely on the animation to set final opacity.
           And set the Fallback to 0.25.
        */
    opacity: 0;
    /*  Start hidden, let animation bring it in */
    animation: bowlingBallFadeInMobile 1s ease-out forwards;
  }

  /* Dedicated Mobile Animation to ensure smoothness */
  @keyframes bowlingBallFadeInMobile {
    0% {
      opacity: 0;
      transform: rotate(0deg) translate(-20px, 20px);
    }

    100% {
      opacity: 0.18;
      /* Target Opacity */
      transform: rotate(15deg) translate(0, 0);
    }
  }

  /* 2. Bolder Fonts on Expand */
  .mega-category.expanded span {
    font-weight: 600 !important;
    /* Make category text bold */
    color: #000 !important;
  }

  .mobile-subitem {
    font-size: 20px !important;
    /* Slightly larger/clearer */
    font-weight: 500 !important;
    /* Thicker font */
  }

  /* 3. Prevent Jumping */
  .mega-category {
    transform: none !important;
    /* Stop any X/Y shifts on click */
  }

  /* Ensure subitems don't cause jumpy scroll */
  .mega-menu-categories {
    transition: height 0.3s ease;
    /* If feasible, but flex usually handles it */
  }
}

/* RE-OVERRIDE ANIMATION FOR FLICKER FIX */
@keyframes bowlingBallFadeInMobile {
  0% {
    opacity: 0;
    /* Ensure it starts at the same rotation as end state */
    transform: rotate(70deg);
  }

  100% {
    opacity: 0.18;
    transform: rotate(70deg);
  }
}

/* Ensure the element has the rotation set statically too */
@media (max-width: 768px) {
  .bowling-ball-graphic {
    transform: rotate(70deg) !important;
  }

  /* Font adjustments if replace didn't work above (Fallback) */
  .mega-category.expanded span {
    font-weight: 600 !important;
  }

  .mobile-subitem {
    font-weight: 500 !important;
  }
}

/* =================================================================
   MOBILE FINAL POLISH
   ================================================================= */

/* Smoother ball opacity - remove !important so animation controls it */
@media (max-width: 768px) {
  .bowling-ball-graphic {
    /* Slightly larger */
    font-size: 580px !important;
    /* Opacity controlled by animation, not forced */
    opacity: 0.18;
    /* Position stays the same */
    left: -40% !important;
    bottom: -5% !important;
    transform: rotate(70deg);
  }

  /* Bolder sub-item text */
  .mobile-subitem {
    font-weight: 700 !important;
  }

  /* No jumping - remove order CSS if present */
  .mega-category {
    order: 0.18 !important;
  }

  .mega-category.expanded {
    order: 0.18 !important;
  }
}

@media (max-width: 480px) {
  .bowling-ball-graphic {
    font-size: 480px !important;
    /* Slightly larger than before */
    opacity: 0.18;
  }
}

/* Smooth ball animation on mobile - linear fade */
@media (max-width: 768px) {
  .mega-menu-overlay.active .bowling-ball-graphic {
    animation: mobileBalIFadeIn 0.5s ease-out forwards;
  }

  @keyframes mobileBalIFadeIn {
    from {
      opacity: 0;
      transform: rotate(0deg);
    }

    to {
      opacity: 0.18;
      transform: rotate(70deg);
    }
  }
}

/* =================================================================
   FINAL TWEAK: Make MyDSBowl Section Compact (Closer/Higher)
   ================================================================= */
@media (max-width: 768px) {
  .mobile-bottom-section {
    padding: 14px 20px !important;
    /* Reduced from 24px */
  }

  .mobile-mydsbowl {
    margin-bottom: 0 !important;
    /* Remove extra margin since News is hidden */
  }

  .mobile-mydsbowl-title {
    margin-bottom: 4px !important;
    /* Tighter title */
  }

  .mobile-mydsbowl-desc {
    margin-bottom: 12px !important;
    /* Tighter description */
  }
}