/* ====== Header ====== */
.site-header {
  background: var(--beige-color);
  color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  width: 100%;
  max-width: 340px;
  /* margin-bottom: 15px; */
}

.logo.start {
  margin-bottom: -18px;
}

.menu-button {
  position: absolute;
  background-color: #fff;
  right: 8px;
  top: 48px;
  border: 3px solid var(--dark-color);
  box-shadow: 0 4px 0 var(--dark-color);
  border-radius: 15px;
  font-size: 1.5rem;
  color: var(--main-color);
  padding: 0.5rem 0.75rem;
  cursor: url('img/cursor.png'), auto;
  overflow: hidden;
  z-index: 1300;
}

.menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--dark-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.menu-button img {
  border-radius: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Mobile navigation (hidden by default, toggled via .open) */
.mobile-nav {
  display: block;
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  left: 0;
  right: 0;
  background: var(--beige-color);
  z-index: 1200;
  padding: 1rem 1.5rem 4rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}


.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav li {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav.open li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open li:nth-child(1) { transition-delay: 0.02s; }
.mobile-nav.open li:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav.open li:nth-child(3) { transition-delay: 0.08s; }
.mobile-nav.open li:nth-child(4) { transition-delay: 0.11s; }
.mobile-nav.open li:nth-child(5) { transition-delay: 0.14s; }
.mobile-nav.open li:nth-child(6) { transition-delay: 0.17s; }
.mobile-nav.open li:nth-child(7) { transition-delay: 0.2s; }

.mobile-nav a {
  display: block;
  padding: 0px 1.5rem 12px;
  border-bottom: 2px solid var(--dark-color);
  border-left: none;
  color: var(--dark-color);
  text-decoration: none;
  font-variation-settings:
    'wght'600,
    'wdth'120;
  font-size: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-nav a[aria-current="page"] {
  color: var(--dark-color);
  text-decoration: none;
  text-shadow: none;
  cursor: url('img/cursor.png'), auto;
}

.mobile-nav a[aria-current="page"]{
  color: var(--main-color);
  text-decoration: none;
  text-shadow: none;
  cursor: url('img/cursor.png'), auto;
}

.mobile-nav .nav-icon {
  display: none;
}

/* ====== Hero ====== */
.default-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: calc(100% - 32px);
  background-color: #7B3155;
  background-image: url('img/header.png');
  background-image: image-set(
    url('img/header.webp') type('image/webp'),
    url('img/header.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  max-width: 2500px;
  margin: 0 auto;
  height: 160px;
  border: 3px solid var(--dark-color);
  border-radius: 24px;
}

.default-header .logo {
  height: 150px;
  display: block;
  position: absolute;
}

.hero-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  width: calc(100% - 32px);
  background-color: #7B3155;
  margin: 0 auto;
  margin-bottom: -20px;
  height: 64vw;
  max-height: 250px;
  border: 3px solid var(--dark-color);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  overflow: hidden;
}

.hero-header-bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  line-height: 0;
}

.hero-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-header > :not(.hero-header-bg) {
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 32px);
  margin: 0 auto;
  background: linear-gradient(180deg, #F7EFDF 0%, #F7EFDF 50%, #FAE3B7 100%);
  border: 3px solid var(--dark-color);
  border-radius: 24px;
  position: relative;
  z-index: 11;
}

.hero-date {
  font-size: 34px;
  color: var(--dark-color);
  font-variation-settings:
    'wght'600,
    'wdth'120;
  margin-bottom: 0;
}

.hero-year {
  display: block;
  font-size: 24px;
  color: var(--dark-color);
  font-variation-settings:
    'wght'600,
    'wdth'125;
  margin-top: -12px;
}

.hero-location {
  color: var(--dark-color);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Desktop: Hero texts left, countdown right (mobile keeps existing stacked layout) */
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 2rem 2.5rem;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  .hero-date {
    margin-bottom: 0;
    text-align: left;
  }

  .hero-year {
    margin-top: -6px;
    text-align: left;
  }

  .hero-location {
    text-align: left;
  }

  .section.location {
  margin-top: 56px;
}

  .section.action {
  margin-bottom: 56px;
}

  /* Countdown stays to the right of the text, but the pair is centered in the hero */
  .countdown {
    margin-left: 0;
    margin-top: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .hero-cta-row {
    order: 3;
    flex: 0 0 100%;
    margin-top: 32px;
  }

  .cta-link-hero {
    width: 100%;
    max-width: 500px;
    margin-top: 0;
  }

  .countdown-item {
    width: 72px;
    aspect-ratio: 1;
  }
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(135deg, #F7D9A8 0%, #F5C68C 100%);
  border: 3px solid var(--dark-color);
  border-radius: 12px;
  padding: 12px;
  width: 66px;
  aspect-ratio: 1;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-variation-settings:
    'wght'600,
    'wdth'125;
  color: var(--dark-color);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.875rem;
  font-variation-settings:
    'wght'500,
    'wdth'123;
  color: var(--dark-color);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--dark-color);
  border-radius: 14px;
  box-shadow: 0 4px 0 var(--dark-color);
  font-variation-settings: 'wght'600, 'wdth'120;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  isolation: isolate;
}

.cta-link::before {
  content: none;
}

.cta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 var(--dark-color);
  color: #fff;
  text-decoration: none;
}

.cta-link-hero {
  margin-top: 32px;
  background: var(--main-color);
  color: #FFFFFF;
  width: 100%;
}

.cta-link-hero::after {
  content: "";
  position: absolute;
  inset: -3px -3px -7px -3px;
  background-color: var(--main-color);
  border-radius: 16px;
  border: none;
  box-shadow: none;
  z-index: -1;
  pointer-events: none;
  animation: ctaPulse 1.9s ease-in-out infinite;
}

.cta-link-fees {
  margin-top: 32px;
  background: var(--main-color);
  color: #ffffff;
  width: 100%;
  max-width: 350px;
}

.hero-cta-row {
  width: 100%;
  max-width: 275px;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* ====== Grid ====== */
.grid-two {
  display: flex;
  flex-direction: column;
  /* display: grid; */
  /* gap: 2rem; */
}

/* ====== Shared Page Intro ====== */
.page-hero {
  text-align: center;
}

.page-intro {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
}

.infos-hours {
  background: #F5E7CE;
}

.infos-hours-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.infos-hours-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.infos-hour {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.infos-hour-day {
  font-variation-settings: 'wght'650, 'wdth'120;
}

.infos-hour-time {
  background: #FFFFFF;
  border: 2px solid var(--dark-color);
  border-radius: 999px;
  padding: 6px 18px;
  /* box-shadow: 0 3px 0 var(--dark-color); */
  font-variation-settings: 'wght'600, 'wdth'120;
  font-size: 0.95rem;
}

.infos-hours-image img {
  border-radius: 18px;
  border: 3px solid var(--dark-color);
  box-shadow: 8px 6px 0 var(--dark-color);
  object-fit: cover;
}

.infos-fees {
  text-align: center;
}

.infos-fees-list {
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.infos-fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: #F3E4CC;
  border: 2px solid var(--dark-color);
  border-radius: 16px;
  padding: 10px 16px;
  /* box-shadow: 0 4px 0 var(--dark-color); */
  font-variation-settings: 'wght'600, 'wdth'120;
}

.infos-fee-price {
  background: var(--main-color);
  color: #ffffff;
  border: 2px solid var(--dark-color);
  border-radius: 12px;
  padding: 4px 12px;
  min-width: 64px;
  text-align: center;
  font-variation-settings: 'wght'500, 'wdth'120;
}

.infos-more {
  padding-bottom: 32px;
}

.infos-raumplan img{
  margin-top: 48px;
}

.infos-cards {
  margin-top: 20px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.infos-card {
  background: #FFFAF0;
  border: 2px solid var(--dark-color);
  border-radius: 18px;
  padding: 16px 16px 40px;
  /* box-shadow: 0 6px 0 var(--dark-color); */
  display: grid;
  gap: 12px;
  align-content: start;
}

.infos-card h3{
display: block;
  text-align: center;
}

.infos-card-icon {
  background: var(--hell);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 10px 14px;
  width: 100%;
  height: 115px;
  margin: 0 auto;
}

.infos-card-icon img {
  height: 100%;
}

.infos-card h3 {
  margin: 0;
  text-align: center;
}

.infos-card p {
  margin: 0;
  font-size: 0.95rem;
}

.infos-card a {
  color: var(--main-color);
  text-decoration: underline;
}

/* ====== FAQ Page ====== */
.faq-page {
  display: grid;
  justify-items: center;
  padding-bottom: 64px;
}

.faq-item {
  border: 2px solid var(--dark-color);
  border-radius: 14px;
  background: #FFFFFF;
  padding: 0;
  box-shadow: 0 3px 0 var(--dark-color);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-variation-settings: 'wght'600, 'wdth'120;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-variation-settings: 'wght'700, 'wdth'120;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 0.95rem;
}


/* ====== Program Card ====== */
.program-page {
  padding-bottom: 48px;
}

.program-empty-state {
  margin: 64px auto 0;
  max-width: 760px;
  background: #F7E8D0;
  border: 3px solid var(--dark-color);
  border-radius: 26px;
  padding: 28px 24px;
  text-align: center;
}

.program-empty-state p {
  margin: 0;
  font-size: 1.05rem;
  font-variation-settings: 'wght'500, 'wdth'112;
}

.program-days {
  margin-top: 48px;
}

.program-day {
  margin-top: 28px;
  padding: 20px 16px 16px;
  border: 2px solid var(--dark-color);
  border-radius: 28px;
}

.program-day + .program-day {
  margin-top: 36px;
}

.program-day-header {
  position: sticky;
  top: 78px;
  z-index: 40;
  margin: -4px 0 18px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.program-day-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--dark-color);
  background: #fff;
  box-shadow: 0 3px 0 var(--dark-color);
  color: var(--dark-color);
  text-shadow: none;
  font-size: 1.35rem;
  line-height: 1.2;
}

.program-day-freitag {
  background: #FFF4E6;
}

.program-day-samstag {
  background: #F6F6FF;
}

.program-day-sonntag {
  background: #EEF9F2;
}

.program-day-other {
  background: #F8F1F8;
}

.program-timeline {
  --timeline-line: #E6D5B8;
  position: relative;
  display: grid;
  /* gap: 32px; */
  margin-top: 0;
  padding: 12px 0 24px;
  justify-content: center;
  align-items: start;
}

.program-timeline::before,
.program-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.program-timeline::before {
  background: var(--timeline-line);
}

.program-timeline::after {
  bottom: auto;
  height: var(--timeline-progress, 0%);
  background: var(--main-color);
}

.program-slot {
  /* position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px; */
}

.program-slot.left {
  /* justify-items: end; */
  /* padding-right: calc(50% + 24px); */
}

.program-slot.right {
  /* justify-items: start; */
  /* padding-left: calc(50% + 24px); */
}

.program-connector {
  position: absolute;
  top: 46px;
  left: 50%;
  width: 48px;
  height: 0;
  border-top: 3px solid var(--dark-color);
  transform: translateX(-50%);
}

.program-connector::after {
  /* content: "";
  position: absolute;
  top: -9px;
  right: -16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F0C16A;
  border: 3px solid var(--dark-color); */
  /* box-shadow: 3px 3px 0 var(--dark-color); */
}

.program-slot.left .program-connector {
  transform: translateX(calc(-50% - 24px));
}

.program-slot.right .program-connector {
  transform: translateX(calc(-50% + 24px));
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F7E8D0;
  border: 3px solid var(--dark-color);
  border-radius: 26px;
  box-shadow: 0px 6px 0 var(--dark-color);
  padding: 40px 24px 24px;
  width: min(320px, 100%);
}

.program-card h2 {
justify-content: left;
}

.program-card-time {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 3px solid var(--dark-color);
  font-variation-settings: 'wght'600, 'wdth'120;
  font-size: 0.95rem;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: max-content;
  max-width: calc(100% - 32px);
  justify-content: center;
}

.program-card-title {
  margin: 16px 0 10px;
  font-size: 1.75rem;
  font-variation-settings: 'wght'650, 'wdth'125;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.program-card-event-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 12px;
  margin: 0 0 10px;
  border-radius: 999px;
  border: 2px solid var(--dark-color);
  font-size: 0.82rem;
  font-variation-settings: 'wght'620, 'wdth'120;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.program-card-event-type.event-type-spielesession {
  background: #36B086;
  color: #fff;
}

.program-card-event-type.event-type-turnier {
  background: #EA4227;
  color: #fff;
}

.program-card-event-type.event-type-penandpaper {
  background: #4E67D8;
  color: #fff;
}

.session-event-type {
  margin: 0 auto 18px;
}

.session-card-event-type {
  margin: 4px 0 10px;
}

.session-card .session-card-event-type {
  align-self: flex-start;
}

.program-card-event-type.event-type-spielesession,
.program-card-event-type.event-type-turnier,
.program-card-event-type.event-type-penandpaper {
  border-color: var(--dark-color);
}

.program-card-meta p {
  margin: 4px 0;
  font-size: 0.98rem;
}

.program-card-availability {
  margin: 16px 0 20px;
  display: grid;
  gap: 8px;
  font-variation-settings: 'wght'600, 'wdth'120;
}

.program-card-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 2px solid var(--dark-color);
  overflow: hidden;
}

.program-card-progress span {
  display: block;
  height: 100%;
  background: var(--main-color);
  border-right: 2px solid var(--dark-color);
}

.program-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--main-color);
  border: 2px solid var(--dark-color);
  border-radius: 14px;
  color: #FFFFFF;
  text-decoration: none;
  font-variation-settings: 'wght'600, 'wdth'120;
  box-shadow: 0 4px 0 var(--dark-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  cursor: url('img/pointer.png'), auto;
}

.program-card-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 var(--dark-color);
}

.program-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}

.program-card-image img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: 2px solid var(--dark-color);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  object-fit: cover;
}

@media (min-width: 830px) {
  .program-day-header {
    display: flex;
    justify-content: center;
  }

  .program-timeline {
    /* --timeline-gap: 140px; */
    /* background-color: #3a1436; */
    grid-template-columns: repeat(2, minmax(320px, 520px));
    align-items: start;
    justify-items: center;
    /* justify-content: center;
    column-gap: var(--timeline-gap);
    row-gap: 40px; */
  }

  .program-column {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .program-column.right {
    margin-top: 80px;
  }

  .program-slot {
    margin-bottom: 0;
  }

  .program-connector {
    left: auto;
    width: calc(var(--timeline-gap) / 2);
    transform: translateX(0);
  }

  .program-slot.left .program-connector {
    right: 0;
  }

  .program-slot.right .program-connector {
    left: 0;
  }

  .program-card {
    width: 320px;
    padding: 40px 26px 26px;
  }

  .program-card-image {
    margin-bottom: auto;
  }

  .program-card-image img {
    height: 150px;
  }
}

@media (max-width: 830px) {
  .program-day {
    padding: 18px 12px 12px;
    border-radius: 20px;
  }

  .program-day-header {
    top: 24px;
    margin-bottom: 12px;
  }

  .program-day-label {
    min-width: 148px;
    padding: 7px 14px;
    font-size: 1.1rem;
  }

  .program-timeline {
    display: block;
  }

  .program-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .program-column.right {
    margin-top: 0;
  }

  .program-timeline::before,
  .program-timeline::after {
    content: none;
  }

  .program-slot {
    justify-items: center;
    padding-left: 0;
  }

  .program-slot.left,
  .program-slot.right {
    padding-right: 0;
    padding-left: 0;
  }

  .program-connector {
    display: none;
  }

  .program-connector::after {
    right: -14px;
  }
}

/* ====== Session Detail ====== */
.session-page {
  padding: 16px 16px 72px;
}

.session-page h1 {
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.session-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 32px;
  color: var(--dark-color);
}

.session-breadcrumb a {
  text-decoration: none;
  font-variation-settings: 'wght'600, 'wdth'120;
}

.session-hero {
  display: grid;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}

.session-card {
  position: relative;
  display: grid;
  gap: 16px;
  background: #F7E8D0;
  border: 3px solid var(--dark-color);
  border-radius: 26px;
  box-shadow: 0px 6px 0 var(--dark-color);
  padding: 28px 24px 24px;
}

.session-card-time {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.session-card-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 2px solid var(--dark-color);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.session-card-meta p {
  margin: 4px 0;
  font-size: 0.98rem;
}

.session-card-availability {
  margin-top: 8px;
  display: grid;
  gap: 8px;
  font-variation-settings: 'wght'600, 'wdth'120;
}

.anmeldeformular{
  color: var(--main-color);
    font-variation-settings:
    'wght'600,
    'wdth'100;
}

.session-scroll-button {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-52px);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid var(--dark-color);
  background: var(--main-color);
  color: #FFFFFF;
  font-size: 24px;
  font-variation-settings: 'wght'700, 'wdth'125;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 var(--dark-color);
  margin-top: -10px;
  margin-left: 24px;
  cursor: url('img/pointer.png'), auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.session-quote {
  margin: 0;
  padding: 18px 20px;
  background: #FFF4E0;
  border: 3px solid var(--dark-color);
  border-radius: 16px;
  color: var(--dark-color);
  font-variation-settings: 'wght'600, 'wdth'120;
  box-shadow: 0px 6px 0 var(--dark-color);
  margin-bottom: 6vh;
}

.session-registration-intro {
  font-variation-settings: 'wght'550, 'wdth'115;
}

.session-registration {
  margin-top: 8px;
}

.session-form-title {
  justify-content: flex-start;
  margin-bottom: 18px;
  font-size: 2rem;
}

.session-form {
  display: grid;
  gap: 24px;
}



.session-form input:focus-visible,
.session-form select:focus-visible {
  box-shadow: var(--focus-ring);
}

.session-form .form-row {
  display: grid;
  gap: 12px;
}

.session-form .form-note {
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 980px) {
  .session-hero {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 40px;
  }

  .session-card {
    position: sticky;
    top: 120px;
  }

  .session-form-card {
    max-width: 520px;
  }
}

@media (min-width: 700px) {
  .session-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .session-breadcrumb {
    flex-wrap: wrap;
  }

  .session-form-card {
    padding: 24px 18px 28px;
    border-radius: 22px;
    box-shadow: 6px 6px 0 var(--dark-color);
  }

  .session-submit {
    width: 100%;
    justify-self: stretch;
  }
}

/* ====== Styled Card ====== */
.styled-card {
  display: flex;
  flex-direction: column;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.styled-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.styled-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.styled-card-accent-one,
.styled-card-accent-two,
.styled-card-accent-three {
  height: 16px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top: 2px solid var(--dark-color);
  border-left: 2px solid var(--dark-color);
  border-right: 2px solid var(--dark-color);
  margin-top: -8px;
}

.styled-card-accent-one {
  background: #FFC212;
}

.styled-card-accent-two {
  background: #E01974;
}

.styled-card-accent-three {
  background: #4a3244;
}

.styled-card-content {
  margin-top: -8px;
  background: radial-gradient(circle at 100% 100%, #fffaf0 0, #fffaf0 6px, transparent 6px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #fffaf0 0, #fffaf0 6px, transparent 6px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #fffaf0 0, #fffaf0 6px, transparent 6px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #fffaf0 0, #fffaf0 6px, transparent 6px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#fffaf0, #fffaf0) 50% 50%/calc(100% - 4px) calc(100% - 16px) no-repeat,
    linear-gradient(#fffaf0, #fffaf0) 50% 50%/calc(100% - 16px) calc(100% - 4px) no-repeat,
    linear-gradient(0deg, transparent 0%, #4a3244 100%);
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  margin: -40px 12px 32px;
}

.styled-card-content p {
  margin: 0.5rem 0;
  color: #4A3244;
  font-size: 0.95rem;
  line-height: 1.6;
}

.styled-card-content strong {
  font-weight: 700;
}

/* ====== Newsletter ====== */


#mc_embed_signup{
  /* background:#fff; false;clear:left;  */
  /* font:14px Helvetica,Arial,sans-serif;  */
  /* width: 600px; */
}

#mc_embed_shell .mc-field-group {
  width: min(500px, 100%);
  margin-inline: auto;
  text-align: left;
  margin-top: 24px;
}

#mc_embed_shell .mc-field-group label{
  display: block;
  text-align: left !important;
  margin-top: 24px;
  margin-bottom: 8px;
}

#mc_embed_shell .mc-field-group input[type="email"] {
  width: 100%;
}

#mc_embed_shell .optionalParent {
  width: min(500px, 100%);
  margin-inline: auto;
}

#mc_embed_shell .optionalParent .clear.foot {
  text-align: left;
}

#mc_embed_shell #mc-embedded-subscribe {
  margin-left: 0;
}

#mc_embed_shell .response {
  margin-top: 20px;
  width: min(500px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--main-color);
  background-color: #fff8f0;
  border-radius: 12px;
  border: 2px solid var(--main-color);
  padding: 12px;
}

.mc_fieldset.gdprRequired.mc-field-group{
border: none;
padding: 0;
}

#mc_embed_shell .mc_fieldset.gdprRequired.mc-field-group label.checkbox.subfield {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: left;
}

#mc_embed_shell .mc_fieldset.gdprRequired.mc-field-group label.checkbox.subfield span {
  display: block;
  text-align: left;
  line-height: 1.35;
}

.datenschutz-hinweis{
  font-size: 12px;
  line-height: 12px;
  margin-top: 24px;
}

.refferal_badge{
  width: 220px;
  height: 40px;
  display: block;
  margin-top: 12px;
  transition: opacity 0.2s ease;
}

#mc_embed_shell .optionalParent .clear.foot p {
  margin: 12px 0 0;
  text-align: center;
}

#mc_embed_shell .optionalParent .clear.foot p span {
  display: inline-block;
}

#mc_embed_shell .optionalParent .clear.foot p a {
  display: inline-block;
  text-decoration: none;
}

#mc_embed_shell .optionalParent .clear.foot p a::before {
  content: none;
}

#mc_embed_shell .optionalParent .clear.foot p a:hover {
  color: inherit;
}

#mc_embed_shell .optionalParent .clear.foot p a:hover .refferal_badge {
  opacity: 0.4;
}









.newsletter-form {
  display: grid;
  margin-top: 24px;
  gap: 8px;
  max-width: 500px;
  margin-inline: auto;
  text-align: left;
  justify-items: start;
  align-items: start;
}

/* .section-newsletter .newsletter-form label[for=email],
.contact-field label {
  font-weight: 600;
} */

.checkbox {
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
  align-items: flex-start;
  vertical-align: middle;
}

.checkbox span {
  display: block;
  line-height: 1.3;
  font-weight: 400;
}

.checkbox a {
  display: inline;
  padding: 0 0.15em;
  line-height: inherit;
  vertical-align: baseline;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
  position: relative;
  display: inline-block;
  background: #FFFFFF;
  border: 2px solid var(--dark-color);
  border-radius: 6px;
  cursor: url('img/pointer.png'), auto;
  transition: background-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 2px 0 var(--dark-color);
}

input[type="checkbox"]::after {
  content: "";
  width: 10px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transition: transform 0.12s ease;
  display: block;
}

input[type="checkbox"]:checked {
  background: var(--main-color);
  border-color: var(--dark-color);
  box-shadow: 0 4px 0 var(--dark-color);
}

input[type="checkbox"]:checked::after {
  transform: translate(-50%, -66%) rotate(-45deg) scale(1);
}

input[type="checkbox"]:focus-visible {
  box-shadow: var(--focus-ring-soft);
}

@media (min-width: 900px) {
  /* center the block horizontally but keep inner content left-aligned */
  .section-newsletter .container {
    max-width: 760px;
    margin-inline: auto;
    display: block;
    text-align: center;
  }

  .section-newsletter .newsletter-form {
    justify-items: start;
    align-items: start;
    text-align: left;
  }

  .section-newsletter .newsletter-form input,
  .section-newsletter .newsletter-form label{
    text-align: left;
  }

  .section-newsletter .newsletter-form input:not([type="checkbox"]){
    width: 400px;
  }
}

/* Desktop: split styled-card — image fully contained left, text right */
@media (min-width: 900px) {
  .styled-card {
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-height: 340px;
    gap: 0;
    border-radius: 16px;
  }

  /* Variant: image on the right */
  .styled-card.image-right {
    flex-direction: row-reverse;
  }

  .styled-card.image-right .styled-card-image {
    border-radius: 0;
  }

  .styled-card.image-right .styled-card-content {
    border-radius: 16px 0 0 16px;
  }

  .styled-card-image {
    width: 50%;
    height: 50%;
    overflow: hidden;
    border-radius: 32px;
    margin: 0 24px;
  }

  .styled-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
    display: block;
  }

  .styled-card-content {
    width: 50%;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background: none;
    margin-top: 0;
    border-radius: 0 16px 16px 0;
  }

  .styled-card-accent-one,
  .styled-card-accent-two,
  .styled-card-accent-three {
    display: none;
  }
}

/* INPUTS */

.newsletter-form input:not([type="checkbox"]),
.session-form input:not([type="checkbox"]),
.newsletter-form input[type="email"],
.session-form select,
.contact-field input,
.contact-field textarea,#mce-EMAIL {
  background: #FFFFFF;
  width: 100%;
  border: 2px solid var(--dark-color);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--mainfont), system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--dark-color);
  box-shadow: 0 3px 0 var(--dark-color);
}

#mce-EMAIL {
  max-width: 500px;
}

.newsletter-form button,
.contact-submit,
.session-submit,
#mc-embedded-subscribe {
  background: var(--main-color);
  border: 2px solid var(--dark-color);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--dark-color);
  color: #fff;
  cursor: url('img/pointer.png'), auto;
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  font-variation-settings: 'wght'600, 'wdth'125;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form button {
  width: 100%;
  max-width: 400px;
  margin-top: 24px;
  padding: 0.75rem;
  font-size: 22px;
}

.newsletter-form button:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 0 var(--dark-color);
}

/* ====== Kontakt ====== */
.contact-form {
  display: flex;
  justify-content: center;
}

.form-status {
  width: min(760px, 100%);
  margin: 0;
  padding: 12px 16px;
  border: 2px solid var(--dark-color);
  border-radius: 12px;
  font-variation-settings: 'wght'560, 'wdth'110;
}

.form-status-success {
  background: #d7f2cf;
}

.form-status-error {
  background: #ffe1e1;
}



/* ====== CARDSECTION ====== */

.contact-card, .session-form-card, .faq-panel {
  width: min(760px, 100%);
  background: #F3E4CC;
  border: 3px solid var(--dark-color);
  border-radius: 28px;
  /* box-shadow: 0 6px 0 var(--dark-color); */
  padding: 40px 20px 36px;
  display: grid;
  gap: 24px;
}

.faq-panel {
  gap: 0;
}


.contact-field,
.session-form .form-field{
  display: grid;
  gap: 4px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  box-shadow: var(--focus-ring);
}

.contact-submit,.session-submit,#mc-embedded-subscribe {
  width: 300px;
  justify-self: start;
  padding: 12px 26px;
  font-size: 20px;
}

#mc-embedded-subscribe {
margin-top: 24px;
}

.contact-submit:hover,.session-submit:hover,#mc-embedded-subscribe:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 var(--dark-color);
}

.contact-submit:active,.session-submit:active,#mc-embedded-subscribe:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--dark-color);
}

@media (max-width: 640px) {
  .section-newsletter h2,
  .section-newsletter .newsletter-text {
    display: block;
    text-align: center;
  }

  #mc_embed_shell #mc-embedded-subscribe,
  .newsletter-form button {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  #mc_embed_shell #mc-embedded-subscribe {
    display: block;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
  }
}

@media (min-width: 641px) and (max-width: 899px) {
  .section-newsletter h2,
  .section-newsletter .newsletter-text {
    display: block;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  #mc_embed_shell #mc-embedded-subscribe {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (min-width: 900px) {
  #mc_embed_shell #mc-embedded-subscribe {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-link-hero::after {
    animation: none;
  }
}

/* ====== Footer ====== */
.site-footer {
  display: flex;
  flex-direction: column;
  background: #3a1436;
  color: white;
  list-style-type: none;
  margin-top: auto;
}

.site-footer ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.site-footer li:not(:last-child)::after {
  content: '';
  display: block;
  width: 269px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
}

.site-footer li {
  position: relative;
  margin: 12px 0;
}

.site-footer li:hover a {
  color: var(--main-color);
}

.footer-grid .logo {
  margin: 0 auto;
}

.site-footer a {
  color: var(--dunkelbeige-color);
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.04em;
  font-variation-settings:
    'wght'600,
    'wdth'120;
}

.site-footer .socials .social-title {
  display: flex;
  flex-direction: column;
  color: var(--hell);
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05rem;
  font-variation-settings:
    'wght'500,
    'wdth'125;
  margin: 0 0 12px;
}

.site-footer .socials {
  background: hsl(306, 50%, 12%);
  padding: 14px 16px 56px;
}

.social-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hell);
  border: 3px solid var(--dark-color);
  box-shadow: 0 4px 0 var(--dark-color);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  padding: 6px;
  text-decoration: none;
}

.social-button svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Hero split: text left, video right on desktop. Mobile stacks. */
.hero-split {
  align-items: center;
}

.hero-split .text {
  text-align: center;
}

.video-wrapper {
  width: 100%;
}

.video-desktop {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.video-mobile {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 829px) {
  body.page-start .video-wrapper {
    display: none;
  }
}

.social-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 var(--dark-color);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.back-to-top {
  --btt-offset-x: -8px;
  --btt-offset-y: -16px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 3px solid var(--dark-color);
  background: var(--main-color);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-variation-settings: 'wght'700, 'wdth'120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  box-shadow: 0 4px 0 var(--dark-color);
  cursor: url('img/pointer.png'), auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(
    var(--btt-offset-x),
    calc(var(--btt-offset-y) + 12px)
  );
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}

.back-to-top::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -10px;
  border: 3px solid #fff8f0;
  border-radius: 999px;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(var(--btt-offset-x), var(--btt-offset-y));
}

.back-to-top.is-visible:hover {
  transform: translate(var(--btt-offset-x), calc(var(--btt-offset-y) - 4px));
  box-shadow: 0 8px 0 var(--dark-color);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--main-color);
  outline-offset: 3px;
}
/* ====== Marquee ====== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--beige-color);
  padding: 32px 0;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 80s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin-right: 2rem;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 2px;
  vertical-align: middle;
  color: #F0CD9D;
  font-variation-settings:
    'wght'640,
    'wdth'125;
  text-shadow:
    0px 3px 0px var(--dark-color),
    1px 1px 1px var(--dark-color),
    1px -1px 1px var(--dark-color),
    -1px 1px 1px var(--dark-color),
    -1px -1px 1px var(--dark-color);
}

.marquee-content img {
  height: 1.2rem;
  vertical-align: middle;
  margin-right: 2rem;
  display: inline-block;
  border-radius: 0;
}

.marquee-container.is-paused .marquee-content {
  animation-play-state: paused;
}

.marquee-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid var(--dark-color);
  background: var(--beige-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: url('img/pointer.png'), auto;
  box-shadow: 0px 4px 0px 0px var(--dark-color);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.marquee-toggle:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0px 4px 0px 0px var(--dark-color);
}

.marquee-toggle:focus-visible {
  outline: 3px solid var(--main-color);
  outline-offset: 3px;
}

.marquee-toggle-icon {
  display: block;
}

.marquee-toggle-icon--pause {
  width: 14px;
  height: 14px;
  position: relative;
}

.marquee-toggle-icon--pause::before,
.marquee-toggle-icon--pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: var(--dark-color);
  border-radius: 1px;
}

.marquee-toggle-icon--pause::before {
  left: 0;
}

.marquee-toggle-icon--pause::after {
  right: 0;
}

.marquee-toggle-icon--play {
  width: 0;
  height: 0;
  border-left: 12px solid var(--dark-color);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  display: none;
  margin-left: 2px;
}

.marquee-toggle[aria-pressed="true"] .marquee-toggle-icon--pause {
  display: none;
}

.marquee-toggle[aria-pressed="true"] .marquee-toggle-icon--play {
  display: block;
}

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

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

@keyframes jiggle {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(1deg);
  }

  75% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

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

  25% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(0) rotate(1deg);
  }

  75% {
    transform: translateY(0) rotate(-1deg);
  }

  100% {
    transform: translateY(-16px) rotate(0deg);
  }
}

  .desktop-nav {
    display: none;
  }

/* ====== Desktop ====== */
@media (min-width: 830px) {

  .back-to-top {
    right: 24px;
    bottom: 24px;
  }

    .mobile-nav {
    display: none !important;
  }

  .logo {
  max-height: 300px;
  max-width: 800px;
  width: auto;
  margin-bottom: 30px;
}


.logo.start {
  margin-bottom: 0px;
}

.default-header {
  height: 190px;
  border-bottom: none;
}

.grid-two {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.grid-two.right {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}


  h1 {
    font-size: 40px;
  }

  .site-header {
    margin: 24px 24px 0 24px;
  }

  .hero-header,
  .hero {
    width: 100%;
    max-height: 365px;
  }

  .hero {
    flex-wrap: wrap;
  }

  .hero .hero-cta-row {
    order: 3;
    flex: 0 0 100%;
    margin-top: 4px;
    justify-content: center;
    max-width: 100%;

  }



  .hero .cta-link-hero {
    width: min(100%, 300px);
    margin: 0;
    align-self: center;
  }

  .header-inner {
    padding: 0;
  }

  .grid-two {
    align-items: center;
  }

  .section-dark .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    display: flex;
  }

  .site-footer nav {
    flex-direction: row;
  }

  .menu-button {
    display: none;
  }

  .hero-split .text {
    max-width: 640px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-split {
    justify-content: center;
  }

  .video-wrapper {
    display: none;
  }

  .video-desktop {
    display: none;
    aspect-ratio: 16 / 9;
  }

  .video-mobile {
    display: none;
  }

  .site-footer ul {
    flex-direction: row;
    gap: 3rem;
  }

  .site-footer li:not(:last-child)::after {
    display: none;  
    width: 1px;
    height: 29px;
  }

  .desktop-nav {
    display: block;
    margin-top: -4px;
    position: relative;
    z-index: 10;
  }

    .desktop-nav.start {
    margin-bottom: 15px;
  }

  .desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .desktop-nav li,
  .nav-shadow li {
    margin: 0;
    margin-left: -12px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .desktop-nav li {
    transition: transform 0.5s ease;
  }

  .desktop-nav li:hover a {
    color: rgba(0, 0, 0, 0.6);
    text-shadow: none;
  }

  .desktop-nav li:nth-child(1) {
    z-index: 12;
  }

  .desktop-nav li:nth-child(2) {
    z-index: 10;
  }

  .desktop-nav li:nth-child(3) {
    z-index: 8;
  }

  .desktop-nav li:nth-child(4) {
    z-index: 6;
  }

  .desktop-nav li:nth-child(5) {
    z-index: 4;
  }

  .desktop-nav li:nth-child(6) {
    z-index: 2;
  }

  .desktop-nav a,
  .nav-shadow a {
    display: block;
    padding: 2px 1.5rem;
    border: 2px solid var(--dark-color);
    border-left: none;
    text-decoration: none;
    font-variation-settings:
      'wght'600,
      'wdth'120;
    font-size: 16px;
  }

  .desktop-nav a {
    color: var(--beige-color);
    letter-spacing: 0.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-shadow:
      1px 1px 1px var(--dark-color),
      1px -1px 1px var(--dark-color),
      -1px 1px 1px var(--dark-color),
      -1px -1px 1px var(--dark-color);
  }

  .desktop-nav .interaction-element {
    display: none;
  }

  .desktop-nav li:nth-child(1) a {
    background: #F8B713;
  }

  .desktop-nav li:nth-child(2) a {
    background: #88B534;
  }

  .desktop-nav li:nth-child(3) a {
    background: #EA4227;
  }

  .desktop-nav li:nth-child(4) a {
    background: #AB5DA7;
  }

  .desktop-nav li:nth-child(5) a {
    background: #36B086;
  }

  .desktop-nav li:nth-child(6) a {
    background: #36B086;
  }

  .nav-icon {
    height: 34px;
    display: block;
    border-radius: 0;
    flex-shrink: 0;
  }

  .nav-shadow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 0px;
    pointer-events: none;
  }

  .nav-shadow li:nth-child(1) {
    z-index: 11;
  }

  .nav-shadow li:nth-child(2) {
    z-index: 9;
  }

  .nav-shadow li:nth-child(3) {
    z-index: 7;
  }

  .nav-shadow li:nth-child(4) {
    z-index: 5;
  }

  .nav-shadow li:nth-child(5) {
    z-index: 3;
  }

  .nav-shadow li:nth-child(6) {
    z-index: 1;
  }

  .nav-shadow a {
    color: var(--dark-color);
  }

  .nav-shadow li:nth-child(1) a {
    background: #926c0d;
  }

  .nav-shadow li:nth-child(2) a {
    background: #577422;
  }

  .nav-shadow li:nth-child(3) a {
    background: #952918;
  }

  .nav-shadow li:nth-child(4) a {
    background: #743f71;
  }

  .nav-shadow li:nth-child(5) a {
    background: #267e5f;
  }

  .nav-shadow li:nth-child(6) a {
    background: #267e5f;
  }
}
