@font-face {
    font-family: 'Merienda';
    src: url('fonts/Merienda-Regular.woff2') format('woff2'),
         url('fonts/Merienda-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root {

@font-face {
    font-family: 'Merienda';
    src: url('fonts/Merienda-Regular.woff2') format('woff2'),
         url('fonts/Merienda-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.site-title {
    font-family: 'Merienda', sans-serif;
}


  --primary: #6a3fb8;
  --accent: #bfa2ff;
  --bg: #f7f5ff;
  --card: #fff;
  --text: #1b0b2a;
  --muted: #5b4772;
  --header-height: 220px;
  --max-width: 1000px;
  --radius: 14px;
  --nav-color: #6a3fb8;
  --shadow-1: 0 8px 22px rgba(106, 63, 184, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #efeaff 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding: 1rem;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.85));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(64, 20, 120, 0.12);
  overflow: auto;
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(106, 63, 184, 0.06);
  }
  50% {
    box-shadow: 0 12px 28px rgba(106, 63, 184, 0.15);
  }
}

.site-banner {
  position: relative;
  height: var(--header-height);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}








.site-footer {
  padding: 10px 0; /* Weniger Abstand oben und unten */
  text-align: center;
}

.impressum-compact {
  margin-bottom: 5px;
}

/* Titel des Impressums kleiner machen */
.impressum-compact h2 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  text-transform: uppercase;
}

/* Textinhalt verkleinern und Abstände entfernen */
.impressum-compact p {
  font-size: 0.75rem; /* Deutlich kleinere Schrift */
  margin: 0;
  line-height: 1.4;
}

/* Das Copyright-Label ebenfalls klein halten */
small {
  font-size: 0.7rem;
  color: #666;
}

.footer-divider {
  margin: 10px auto;
  opacity: 0.3;
}














.site-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(106, 63, 184, 0.35), rgba(191, 162, 255, 0.15));
  mix-blend-mode: multiply;
}

.site-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;

  font-family: 'Merienda', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0.5rem 1rem;
  animation: float 4s ease-in-out infinite;
} 


.site-banner-simple {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(106, 63, 184, 0.12), rgba(191, 162, 255, 0.05));
  flex-shrink: 0;
}

.site-banner-simple.with-banner {
  height: auto;
  min-height: 280px;
}

.site-banner-simple.with-banner img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.page-title {
  font-family: Merienda, cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  background: linear-gradient(90deg, rgba(106, 63, 184, 0.95), rgba(191, 162, 255, 0.85));
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(106, 63, 184, 0.12);
  animation: float 4s ease-in-out infinite;
  text-align: center;
  position: relative;
  z-index: 2;
}

.site-banner-simple.with-banner .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 0.75rem 1rem;
  position: relative;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-switcher {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0.5rem 1rem;
  justify-content: flex-end;
  width: 100%;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 0;
  outline: none;
  position: relative;
}

.lang-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  font-weight: 400;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn img {
  width: 30px;
  height: auto;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: block;
}

.lang-btn:hover img {
  transform: scale(1.1);
  opacity: 1 !important;
}

.lang-btn[aria-pressed="false"] img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.lang-btn[aria-pressed="true"] img {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 0 10px rgba(212, 165, 255, 0.4);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(106, 63, 184, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease;
  display: inline-block;
}

nav a.active {
  box-shadow: 0 8px 18px rgba(106, 63, 184, 0.2);
  background: var(--primary);
  color: #fff;
}

nav a:focus, nav a:hover {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 10px 20px rgba(106, 63, 184, 0.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.page-banner-placeholder {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(191, 162, 255, 0.15), rgba(255, 255, 255, 0.5));
  border-bottom: 2px dashed rgba(106, 63, 184, 0.2);
}

.page-banner-placeholder img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(106, 63, 184, 0.1);
}

.placeholder-banner {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(191, 162, 255, 0.2), rgba(106, 63, 184, 0.1));
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

main {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

article {
  background: transparent;
  border-radius: 12px;
  padding: 0.75rem 0.25rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.85));
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(106, 63, 184, 0.06);
  border: 1px solid rgba(106, 63, 184, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.info-card:hover {
  box-shadow: 0 12px 28px rgba(106, 63, 184, 0.12);
}

p {
  margin: 0.6rem 0;
  font-size: 1rem;
  color: var(--text);
}

strong {
  font-weight: 700;
  color: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(106, 63, 184, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.5s ease-out backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.15s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }
.pricing-card:nth-child(4) { animation-delay: 0.25s; }
.pricing-card:nth-child(5) { animation-delay: 0.3s; }
.pricing-card:nth-child(6) { animation-delay: 0.35s; }

.pricing-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(106, 63, 184, 0.15);
}

.video-card:hover {
  transform: none;
  box-shadow: 0 16px 32px rgba(106, 63, 184, 0.15);
}

.no-bullet::before {
  display: none;
}

.pricing-card figure {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(191, 162, 255, 0.15), rgba(255, 255, 255, 0.9));
  border-radius: 10px;
  padding: 8px;
  min-height: 180px;
  border: 2px dashed rgba(106, 63, 184, 0.2);
}

.pricing-card img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.placeholder-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.video-card {
  grid-column: 1 / -1;
}

.video-card .video-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.video-card figure {
  min-height: 280px;
  border: 2px dashed rgba(106, 63, 184, 0.2);
  background: linear-gradient(180deg, rgba(27, 11, 42, 0.05), rgba(106, 63, 184, 0.08));
}

.video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 3, 40, 0.08);
  background: #000;
  display: block;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(106, 63, 184, 0.04);
  color: var(--muted);
  animation: fadeInUp 0.5s ease-out;
}

dl {
  margin: 0;
}

dt {
  font-weight: 700;
  color: var(--text);
  margin: 0.8rem 0 0.4rem 0;
  font-size: 1.05rem;
}

dt:first-child {
  margin-top: 0;
}

dd {
  margin: 0 0 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.contact-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  padding-left: 0;
}

.contact-list::before {
  display: none;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 6px 18px rgba(106, 63, 184, 0.15);
}

.contact-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(106, 63, 184, 0.25);
}

.contact-button:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-button.discord {
  background: linear-gradient(90deg, #5865F2, #6a3fb8);
}

.contact-button.email {
  background: linear-gradient(90deg, #D44638, #ff8a80);
}

.contact-button svg {
  height: 20px;
  width: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.contact-info {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(191, 162, 255, 0.1), rgba(255, 255, 255, 0.5));
  border-radius: 10px;
  border: 1px solid rgba(106, 63, 184, 0.1);
}

.contact-info p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px dashed rgba(106, 63, 184, 0.1);
  background: linear-gradient(180deg, transparent, rgba(191, 162, 255, 0.05));
  flex-shrink: 0;
}

.copyright-footer {
  font-size: 0.75rem;
  color: #d4c5e8;
  margin-top: 0.5rem;
  font-weight: 300;
}

a:focus, button:focus {
  outline: 3px solid rgba(191, 162, 255, 0.6);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  width: auto;
  height: auto;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}

@media (max-width: 720px) {
  :root {
    --header-height: 160px;
  }

  nav {
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 255, 0.98));
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(64, 20, 120, 0.15);
    border-radius: 0 0 16px 16px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .site-title {
    font-size: 1.6rem;
    padding: 0.4rem 0.6rem;
  }

  .site-banner-simple {
    height: 100px;
  }

  article {
    flex-direction: column;
  }

  .info-card {
    flex: 1 1 100%;
  }

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

  .contact-list {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }




}
