@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDejqqbE_R7w.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDejqqbE_R7w.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDejqqbE_R7w.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/cormorantgaramond/v16/co3pmX5slCNuHLi8bLeY9MK7whWMhyjQAllfvw-vxA.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg-main: #fffdf8;
  --accent: #f4c9c2;
  --accent-soft: rgba(244, 201, 194, 0.15);
  --accent-dark: #c89088;
  --gold: #d8c29a;
  --gold-border: rgba(216, 194, 154, 0.4);
  --gold-border-light: rgba(216, 194, 154, 0.3);
  --text-main: #2b2b2b;
  --shadow-soft: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.05);

  /* Font size scale - ss(extra small) → 5xl(hero)
     ss: captions, badges | s: secondary text | m: body, lists | l: descriptions
     xl: subheadings | 2xl: card titles | 3xl: section titles | 4xl/5xl: hero */
  --font-xs: clamp(0.6rem, 1.5vw, 0.7rem);
  --font-ss: clamp(0.75rem, 0.9vw, 0.85rem);
  --font-s: clamp(0.875rem, 1vw, 0.95rem);
  --font-m: clamp(0.9rem, 1vw, 1rem);
  --font-l: clamp(0.95rem, 1.2vw, 1.1rem);
  --font-xl: clamp(1rem, 1.3vw, 1.2rem);
  --font-2xl: clamp(1.2rem, 1.6vw, 1.4rem);
  --font-3xl: clamp(2rem, 5vw, 2.8rem);
  --font-4xl: clamp(2.5rem, 5.5vw, 3.2rem);
  --font-5xl: clamp(1rem, 4vw, 3.8rem);
  --font-display: clamp(2rem, 4vw, 3rem);
  --font-icon: clamp(2.5rem, 5vw, 4rem);
  --font-quote: clamp(3rem, 6vw, 6rem);

  /* Responsive spacing/sizing */
  --space-xs: 0.25rem;
  --space-s: 0.5rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --container-max: min(75rem, 95vw);
  --hero-img-border: 0.188rem;
  --icon-s: 1.25rem;
  --icon-m: 1.5rem;
  --icon-l: 2rem;
}

/* Utility classes - use in HTML: class="text-l" etc */
.text-xs {
  font-size: var(--font-xs);
}
.text-ss {
  font-size: var(--font-ss);
}
.text-s {
  font-size: var(--font-s);
}
.text-m {
  font-size: var(--font-m);
}
.text-l {
  font-size: var(--font-l);
}
.text-xl {
  font-size: var(--font-xl);
}
.text-2xl {
  font-size: var(--font-2xl);
}
.text-3xl {
  font-size: var(--font-3xl);
}
.text-4xl {
  font-size: var(--font-4xl);
}
.text-5xl {
  font-size: var(--font-5xl);
}
.text-display {
  font-size: var(--font-display);
}
.text-icon {
  font-size: var(--font-icon);
}
.text-quote {
  font-size: var(--font-quote);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Karla", sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    background-size: auto;
    background-attachment: scroll;
    background-position: center top;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  body {
    background-size: inherit;
  }
}

body.index-page {
  position: relative;
  overflow-x: hidden;
}

body.mobile-menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  pointer-events: none;
}
.index-page .nav-link-secondary {
  display: block !important;
}
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    border-bottom 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(255, 253, 248, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-border-light);
}
.navbar.scrolled .nav-dropdown {
  backdrop-filter: blur(8px);
}
.navbar-container {
  margin: 1rem auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: visible;
  height: auto;
  max-height: 5.625rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.logo:hover {
  opacity: 0.8;
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -1rem;
}
.logo-zeichen {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  max-width: 12.5rem;
  display: block;
  margin-left: 1rem;
}
.logo-name-wrapper {
  position: relative;
  margin-top: -1.5rem;
  display: inline-block;
  width: 100%;
}
.logo-name {
  display: block;
  height: 5.5rem;
  width: auto;
  object-fit: contain;
  max-width: 12.5rem;
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
  transform: scale(1);
}
.logo-name-chinese {
  position: absolute;
  top: 0.5rem;
  left: 44%;
  transform: translateX(-50%) scale(1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  transition:
    opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  font-family: "Noto Serif SC", "Source Han Serif", "STSong", serif;
  color: var(--text-main);
}
.logo-chinese-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.logo-chinese-flute {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  opacity: 1;
}
@media (hover: hover) {
  .logo-name-wrapper:hover .logo-name {
    opacity: 0;
    transform: scale(0.7);
  }
  .logo-name-wrapper:hover .logo-name-chinese {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
.nav {
  position: relative;
}
.nav-menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: var(--font-l);
  font-weight: 600;
}
.nav-link:hover,
.nav-link.active {
  background-color: var(--accent-dark);
  color: #ffffff;
}
.nav-link-secondary {
  display: block;
}
.nav-item-dropdown {
  position: relative;
}
.mehr-dropdown {
  display: none;
}
.index-page .mehr-dropdown {
  display: none !important;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background:
    linear-gradient(rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.98)),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15));
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  min-width: 12.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--gold-border-light);
}
.nav-dropdown-link:last-child {
  border-bottom: none;
}
.nav-dropdown-link:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  padding-left: 2rem;
}
.nav-link-standalone {
  display: block;
}
.index-page .nav-link-standalone {
  display: block !important;
}
.nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}
.nav-cta-button {
  background-color: var(--accent);
  color: var(--text-main);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: var(--font-l);
  transition: all 0.3s ease;
  border: 1px solid var(--accent-dark);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(244, 201, 194, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
.nav-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: shiny-pulse 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.nav-cta-button > * {
  position: relative;
  z-index: 2;
}
.nav-cta-button:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.nav-cta-button:active {
  transform: translateY(0);
}
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: transparent;
  padding: 0.5rem;
}
.mobile-nav-toggle span {
  width: 1.5625rem;
  height: 0.125rem;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

/* MOBILE MENU */

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 3vw, 1.5rem);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(245, 242, 235, 0.98);
  backdrop-filter: blur(12px);
  padding: 2.7rem 2rem 2rem 3.5rem;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s ease-out,
    opacity 0.4s ease-out,
    visibility 0.4s ease-out;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 1001;
}
.mobile-menu-close {
  position: absolute;
  top: 2.5rem;
  right: 1.7rem;
  width: var(--icon-l);
  height: var(--icon-l);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}
.mobile-menu-close span {
  position: absolute;
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--text-main);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}
.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6.25rem;
  background-image: url("../bg/mf.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 0 1rem;
  opacity: 0.9;
  z-index: -1;
}
.mobile-link {
  font-size: clamp(1rem, 3.2vw, 1.35rem);
  padding: clamp(0.6rem, 2.2vw, 0.85rem) clamp(0.85rem, 3vw, 1.1rem);
  border-bottom: 1px solid var(--gold-border);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-block;
  width: fit-content;
  min-width: fit-content;
  margin: 0 auto;
  align-self: center;
}
.mobile-link:hover,
.mobile-link.active {
  background-color: var(--accent-dark);
  color: #ffffff;
}
.mobile-cta-button {
  background-color: var(--accent);
  color: var(--text-main);
  padding: clamp(0.7rem, 2.4vw, 1rem) clamp(1.2rem, 4vw, 2rem);
  border-radius: 2rem;
  font-weight: 500;
  font-size: clamp(0.95rem, 3.2vw, 1.35rem);
  transition: all 0.3s ease;
  border: 1px solid var(--accent-dark);
  margin-top: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  display: inline-block;
  width: fit-content;
  min-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(244, 201, 194, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
.mobile-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shiny-pulse 2s ease-in-out infinite;
}
.mobile-cta-button:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.mobile-lang-selector {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.mobile-lang-label {
  font-size: clamp(0.85rem, 2.7vw, 0.95rem);
  color: var(--text-main);
  font-weight: 500;
  text-align: center;
}
.mobile-lang-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.mobile-lang-btn {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: clamp(0.45rem, 2.2vw, 0.55rem) clamp(0.85rem, 3vw, 1.05rem);
  border-radius: 0.5rem;
  font-size: clamp(0.85rem, 2.7vw, 0.95rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 3.125rem;
  text-align: center;
}
.mobile-lang-btn.active {
  background-color: var(--accent-dark);
  color: #ffffff;
  border-color: var(--accent-dark);
}
.mobile-lang-btn:not(.active) {
  background-color: transparent;
  color: var(--accent-dark);
  opacity: 0.7;
}
.mobile-lang-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 12rem 0 8rem;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  background-image: url("../bg/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
}
.hero.bg-effect::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(244, 201, 194, 0.25) 0%,
      rgba(255, 248, 220, 0.2) 20%,
      rgba(255, 218, 185, 0.15) 40%,
      rgba(255, 192, 203, 0.1) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(244, 201, 194, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 25%,
      rgba(255, 218, 185, 0.2) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(216, 194, 154, 0.3) 0%,
      rgba(244, 201, 194, 0.25) 30%,
      rgba(255, 248, 220, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(244, 201, 194, 0.2) 30%,
      rgba(255, 218, 185, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(216, 194, 154, 0.3) 0%,
      rgba(244, 201, 194, 0.25) 35%,
      rgba(255, 248, 220, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(244, 201, 194, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 35%,
      rgba(255, 218, 185, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(244, 201, 194, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(216, 194, 154, 0.25) 0%,
      rgba(244, 201, 194, 0.2) 40%,
      rgba(255, 248, 220, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(244, 201, 194, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(244, 201, 194, 0.25) 0%,
      rgba(255, 248, 220, 0.2) 40%,
      rgba(255, 218, 185, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode:
    screen, screen, screen, screen, screen, screen, screen, screen, screen,
    screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.hero-container {
  max-width: min(75rem, 95vw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}
.hero-image {
  display: flex;
  justify-content: center;
}
.hero-image img {
  position: absolute;
  top: 54%;
  left: 20%;
  width: 24%;
  transform: translateY(-50%);
  border: var(--hero-img-border) solid rgba(104, 91, 89, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.4375rem rgba(0, 0, 0, 0.35);
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 1.8vw, 2rem);
}
.hero-title {
  font-size: var(--font-5xl);
  margin-bottom: clamp(0.2rem, 0.4vw, 1.5rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-text {
  font-size: var(--font-l);
  margin-bottom: clamp(0.2rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: var(--text-main);
  font-weight: 400;
}
.hero-location {
  font-size: var(--font-m);
  color: #8b7355;
  font-weight: 600;
  margin-bottom: clamp(0.2rem, 1.8vw, 2rem);
  letter-spacing: 0.02em;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: clamp(0.6rem, 0.9vw, 0.9rem) clamp(1.25rem, 1.8vw, 2rem);
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: var(--font-m);
  letter-spacing: 0.01em;
}
.btn-primary {
  background-color: var(--accent);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-dark);
  box-shadow: 0 0 20px rgba(244, 201, 194, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: shiny-pulse 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-primary > * {
  position: relative;
  z-index: 2;
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}

/* SECTIONS */

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: var(--font-3xl);
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.section-subtitle {
  font-size: var(--font-l);
  color: var(--text-main);
  opacity: 0.8;
  margin-bottom: 3rem;
  text-align: center;
}
.section-preview {
  position: relative;
}
.container {
  max-width: min(75rem, 95vw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.preview-actions {
  text-align: left;
  /* margin-top: 3rem;
  padding-top: 2rem; */
}

/* SECTION ABOUT */

.section-about {
  position: relative;
  background-image: url("../bg/n_b/about_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-about.bg-effect::before {
  /* display: none; */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(240, 255, 240, 0.25) 20%,
      rgba(144, 238, 144, 0.2) 40%,
      rgba(152, 251, 152, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(50, 205, 50, 0.5) 0%,
      rgba(144, 238, 144, 0.35) 25%,
      rgba(124, 252, 0, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(0, 128, 128, 0.4) 0%,
      rgba(47, 79, 79, 0.3) 30%,
      rgba(0, 100, 100, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(255, 218, 185, 0.35) 0%,
      rgba(255, 192, 203, 0.25) 30%,
      rgba(255, 160, 122, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(85, 107, 47, 0.4) 0%,
      rgba(107, 142, 35, 0.3) 35%,
      rgba(128, 128, 0, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(0, 191, 255, 0.35) 0%,
      rgba(64, 224, 208, 0.25) 35%,
      rgba(135, 206, 250, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(152, 251, 152, 0.3) 0%,
      rgba(144, 238, 144, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(0, 100, 0, 0.35) 0%,
      rgba(0, 128, 128, 0.25) 40%,
      rgba(47, 79, 79, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(135, 206, 250, 0.3) 0%,
      rgba(0, 191, 255, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 140, 0, 0.35) 0%,
      rgba(255, 69, 0, 0.25) 40%,
      rgba(220, 20, 60, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.8; */
  display: none;
}
.section-about.bg-effect > * {
  position: relative;
  z-index: 1;
}
.about-preview-content {
  display: grid;
  grid-template-columns: 1.8fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-preview-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .about-preview-image .about-image-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
} */
.about-image-container img {
  object-fit: contain;
  width: 77%;
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.4375rem rgba(0, 0, 0, 0.25);
  margin-top: -5.5rem;
  margin-left: 3rem;
}
.about-preview-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-preview-description {
  font-size: var(--font-l);
  line-height: 1.8;
  color: var(--text-main);
  opacity: 0.9;
}
.about-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-features-list li {
  font-size: var(--font-m);
  padding: 0.5rem 0;
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.6;
}

/* SECTION-GALLERY */

/* Gallery Carousel - central card + blurred sides */
.gallery-carousel {
  margin: 2.5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.carousel-viewport {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: clamp(20rem, 50vw, 40rem);
}
.carousel-track {
  /* display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%; */
}
.carousel-slide {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18rem, 45vw, 35rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.carousel-slide.prev {
  transform: translateX(calc(-50% - 22.5rem));
  opacity: 0.4;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.carousel-slide.next {
  transform: translateX(calc(-50% + 22.5rem));
  opacity: 0.4;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  filter: none;
  z-index: 2;
  pointer-events: auto;
}
.carousel-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.15);
}
.carousel-card img {
  width: 100%;
  height: clamp(20rem, 50vw, 40rem);
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 0.125rem solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  z-index: 10;
}
.section-gallery .carousel-btn {
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(255, 253, 248, 0.95);
  color: var(--text-main);
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.section-gallery .carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
  transform: translateY(-50%) scale(1.05);
}
.carousel-prev {
  left: -0.5rem;
}
.carousel-next {
  right: -0.5rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot:hover,
.carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.section-gallery .carousel-dot {
  background: rgba(0, 0, 0, 0.25);
}
.section-gallery .carousel-dot:hover,
.section-gallery .carousel-dot.active {
  background: var(--accent-dark);
  transform: scale(1.2);
}

/* Gallery preview - index page */
.gallery-preview-images {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.gallery-preview-img {
  flex: 1 1 clamp(12rem, 25vw, 15rem);
  max-width: 23.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.gallery-preview-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.18);
}
.gallery-preview-img img {
  width: 100%;
  height: clamp(12rem, 35vw, 20rem);
  object-fit: cover;
  display: block;
}

.section-gallery {
  position: relative;
  /* background: linear-gradient(
      rgba(255, 253, 248, 0.55),
      rgba(255, 253, 248, 0.55)
    ),
    url("../bg/bg_4.webp");
  background-attachment: scroll; */
  background-image: url("../bg/n_b/gallery_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-gallery.bg-effect::before {
  /* display: none; */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 200, 0.25) 0%,
      rgba(255, 248, 220, 0.2) 20%,
      rgba(255, 215, 0, 0.15) 40%,
      rgba(255, 223, 0, 0.1) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 25%,
      rgba(255, 223, 0, 0.2) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(221, 160, 221, 0.3) 0%,
      rgba(186, 85, 211, 0.25) 30%,
      rgba(230, 230, 250, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(221, 160, 221, 0.2) 30%,
      rgba(255, 215, 0, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(230, 230, 250, 0.3) 0%,
      rgba(221, 160, 221, 0.25) 35%,
      rgba(186, 85, 211, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 35%,
      rgba(255, 223, 0, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(255, 215, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(221, 160, 221, 0.25) 0%,
      rgba(186, 85, 211, 0.2) 40%,
      rgba(230, 230, 250, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(230, 230, 250, 0.25) 0%,
      rgba(221, 160, 221, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 215, 0, 0.25) 0%,
      rgba(255, 248, 220, 0.2) 40%,
      rgba(255, 223, 0, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-gallery.bg-effect > * {
  position: relative;
  z-index: 1;
}
.gallery-page .section-gallery,
.about-me-page .section-about,
.lessons-page .section-unterricht,
.media-page .section-media,
.references-page .section-testimonials,
.events-page .section-termine,
.contact-page .section-kontakt {
  padding: 10rem 0;
}
.section-gallery .preview-actions {
  text-align: center;
}

/* SECTION UNTERRICHT */

.section-unterricht {
  position: relative;
  overflow: hidden;
}
.section-unterricht.bg-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 218, 185, 0.25) 20%,
      rgba(255, 192, 203, 0.2) 40%,
      rgba(255, 140, 0, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(255, 140, 0, 0.4) 0%,
      rgba(255, 165, 0, 0.3) 25%,
      rgba(255, 69, 0, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(184, 134, 11, 0.35) 0%,
      rgba(218, 165, 32, 0.25) 30%,
      rgba(255, 215, 0, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(255, 248, 220, 0.3) 0%,
      rgba(255, 215, 0, 0.25) 30%,
      rgba(255, 223, 0, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(184, 134, 11, 0.35) 0%,
      rgba(218, 165, 32, 0.25) 35%,
      rgba(255, 215, 0, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(255, 140, 0, 0.3) 0%,
      rgba(255, 69, 0, 0.25) 35%,
      rgba(220, 20, 60, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(255, 215, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(184, 134, 11, 0.3) 0%,
      rgba(218, 165, 32, 0.2) 40%,
      rgba(255, 215, 0, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(255, 215, 0, 0.25) 0%,
      rgba(255, 248, 220, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 69, 0, 0.3) 0%,
      rgba(255, 140, 0, 0.25) 40%,
      rgba(220, 20, 60, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-unterricht.bg-effect > * {
  position: relative;
  z-index: 1;
}
.section-unterricht {
  position: relative;
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15));
  background-image: url("../bg/n_b/unterricht_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}
.unterricht-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.unterricht-preview-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.unterricht-preview-description {
  font-size: var(--font-l);

  line-height: 1.8;
  color: var(--text-main);
  opacity: 0.9;
}
.unterricht-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.unterricht-features li {
  font-size: var(--font-m);
  padding: 0.5rem 0;
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.6;
}
.unterricht-preview-image {
  /* border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft); */
}
.unterricht-preview-image img {
  height: auto;
  display: block;
  object-fit: contain;
  width: 74%;
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.4375rem rgba(0, 0, 0, 0.25);
  margin-top: -1.5rem;
}

/* SECTION MEDIA */

.section-media {
  position: relative;
  /* background: linear-gradient(
      rgba(255, 253, 248, 0.55),
      rgba(255, 253, 248, 0.55)
    ),
    url("../bg/bg_4.webp");
  background-attachment: scroll; */
  background-image: url("../bg/n_b/media_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-media.bg-effect::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(230, 230, 250, 0.25) 20%,
      rgba(221, 160, 221, 0.2) 40%,
      rgba(186, 85, 211, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(221, 160, 221, 0.4) 0%,
      rgba(186, 85, 211, 0.3) 25%,
      rgba(230, 230, 250, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(70, 130, 180, 0.35) 0%,
      rgba(100, 149, 237, 0.25) 30%,
      rgba(135, 206, 250, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(176, 196, 222, 0.25) 0%,
      rgba(221, 160, 221, 0.2) 30%,
      rgba(255, 215, 0, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(70, 130, 180, 0.35) 0%,
      rgba(100, 149, 237, 0.25) 35%,
      rgba(135, 206, 250, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(221, 160, 221, 0.3) 0%,
      rgba(186, 85, 211, 0.25) 35%,
      rgba(230, 230, 250, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(255, 215, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(70, 130, 180, 0.3) 0%,
      rgba(100, 149, 237, 0.2) 40%,
      rgba(135, 206, 250, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(135, 206, 250, 0.25) 0%,
      rgba(0, 191, 255, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 40%,
      rgba(255, 223, 0, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-media.bg-effect > * {
  position: relative;
  z-index: 1;
}
.media-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.media-featured-player {
  display: flex;
  flex-direction: column;
}
.media-featured-card {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.media-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.media-featured-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.media-badge-featured {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-size: var(--font-ss);
  font-weight: 500;
  width: fit-content;
}
.media-featured-title {
  font-size: var(--font-2xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  margin: 0;
}
.media-featured-thumbnail {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--accent-soft) 0%,
    rgba(216, 194, 154, 0.1) 100%
  );
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: background 0.3s ease;
}
.media-featured-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-featured-thumbnail:hover {
  background: linear-gradient(
    135deg,
    rgba(244, 201, 194, 0.25) 0%,
    rgba(216, 194, 154, 0.2) 100%
  );
}
.media-placeholder-large {
  font-size: var(--font-icon);
  color: var(--gold);
  opacity: 0.7;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.media-featured-thumbnail:hover .media-placeholder-large {
  transform: scale(1.1);
  opacity: 1;
}
.media-featured-description {
  font-size: var(--font-s);
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.85;
  margin: 0;
}
.media-preview-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.media-info-title {
  font-size: var(--font-3xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  margin: 0;
}
.media-info-description {
  font-size: var(--font-l);
  line-height: 1.8;
  color: var(--text-main);
  opacity: 0.9;
}
.media-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.media-features-list li {
  font-size: var(--font-m);
  padding: 0.5rem 0;
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.6;
}

/* SECTION TESTIMONIALS */

.section-testimonials {
  position: relative;
  /* background: linear-gradient(
      rgba(255, 253, 248, 0.9),
      rgba(255, 253, 248, 0.9)
    ),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15)); */
  background-image: url("../bg/n_b/testi_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 8rem;
}
.section-testimonials.bg-effect::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(240, 255, 240, 0.25) 20%,
      rgba(144, 238, 144, 0.2) 40%,
      rgba(152, 251, 152, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(50, 205, 50, 0.4) 0%,
      rgba(144, 238, 144, 0.3) 25%,
      rgba(152, 251, 152, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(0, 100, 0, 0.35) 0%,
      rgba(34, 139, 34, 0.25) 30%,
      rgba(50, 205, 50, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(144, 238, 144, 0.25) 0%,
      rgba(135, 206, 250, 0.2) 30%,
      rgba(221, 160, 221, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(85, 107, 47, 0.35) 0%,
      rgba(107, 142, 35, 0.25) 35%,
      rgba(50, 205, 50, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(152, 251, 152, 0.3) 0%,
      rgba(144, 238, 144, 0.25) 35%,
      rgba(50, 205, 50, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(240, 255, 240, 0.25) 0%,
      rgba(144, 238, 144, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(0, 100, 0, 0.3) 0%,
      rgba(34, 139, 34, 0.2) 40%,
      rgba(50, 205, 50, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(135, 206, 250, 0.25) 0%,
      rgba(0, 191, 255, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(221, 160, 221, 0.3) 0%,
      rgba(186, 85, 211, 0.25) 40%,
      rgba(230, 230, 250, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-testimonials.bg-effect > * {
  position: relative;
  z-index: 1;
}
.testimonials-preview .testimonials-track {
  animation: none;
}
.testimonials-preview .testimonials-track:hover {
  animation-play-state: paused;
}
.testimonials-preview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.testimonial-featured {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-quote-large {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-quote);
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-weight: 600;
}
.testimonial-text-featured {
  font-size: var(--font-xl);
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.testimonial-author-featured {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  position: relative;
  z-index: 1;
}
.testimonial-author-featured strong {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-main);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}
.testimonial-author-featured span {
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.7;
}
.testimonials-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.testimonial-stat-item {
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-display);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.4;
}

/* SECTION TERMINE */

.section-termine {
  position: relative;
  /* background-color: transparent; */
  background-image: url("../bg/n_b/termine_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-termine.bg-effect::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(230, 230, 250, 0.25) 20%,
      rgba(221, 160, 221, 0.2) 40%,
      rgba(186, 85, 211, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(221, 160, 221, 0.4) 0%,
      rgba(186, 85, 211, 0.3) 25%,
      rgba(230, 230, 250, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(75, 0, 130, 0.35) 0%,
      rgba(72, 61, 139, 0.25) 30%,
      rgba(106, 90, 205, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(221, 160, 221, 0.25) 0%,
      rgba(135, 206, 250, 0.2) 30%,
      rgba(255, 215, 0, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(70, 130, 180, 0.35) 0%,
      rgba(100, 149, 237, 0.25) 35%,
      rgba(135, 206, 250, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(221, 160, 221, 0.3) 0%,
      rgba(186, 85, 211, 0.25) 35%,
      rgba(230, 230, 250, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(230, 230, 250, 0.25) 0%,
      rgba(221, 160, 221, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(75, 0, 130, 0.3) 0%,
      rgba(72, 61, 139, 0.2) 40%,
      rgba(106, 90, 205, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(135, 206, 250, 0.25) 0%,
      rgba(0, 191, 255, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 40%,
      rgba(255, 223, 0, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode: screen, screen, screen, screen, screen, screen, screen,
    screen, screen, screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-termine.bg-effect > * {
  position: relative;
  z-index: 1;
}
.termine-preview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.termine-preview-actions {
  text-align: center;
  width: 100%;
}
.termine-preview-actions .btn {
  min-width: 14rem;
}
.termine-featured-event {
  width: 100%;
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-left: 0.25rem solid var(--accent);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.termine-featured-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.termine-event-image {
  width: 12.5rem;
  min-width: 12.5rem;
  background: linear-gradient(
    135deg,
    var(--accent-soft) 0%,
    rgba(216, 194, 154, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.event-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-icon {
  font-size: var(--font-icon);
  opacity: 0.6;
}
.termine-event-details {
  flex: 1;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.termine-event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.375rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--accent-soft) 0%,
    rgba(216, 194, 154, 0.1) 100%
  );
  border-radius: 0.5rem;
  text-align: center;
}
.event-day {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-display);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.event-month {
  font-size: var(--font-ss);
  color: var(--text-main);
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.termine-event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.termine-event-title {
  font-size: var(--font-2xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}
.termine-event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.85;
}
.event-location,
.event-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.termine-event-description {
  font-size: var(--font-m);
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.85;
  margin: 0;
}
.termine-preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.availability-compact {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.availability-title-compact {
  font-size: var(--font-2xl);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-main);
}
.availability-item-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gold-border);
}
.availability-item-compact:last-child {
  border-bottom: none;
}
.availability-day-compact {
  min-width: 1.875rem;
  font-weight: 600;
  color: var(--accent);
  font-size: var(--font-s);
}
.availability-time-compact {
  flex: 1;
  font-weight: 500;
  color: var(--text-main);
}
.availability-online-compact {
  font-size: var(--font-ss);
  color: var(--text-main);
  opacity: 0.7;
  font-style: italic;
}

/* SECTION KONTAKT */

.section-kontakt {
  position: relative;
  /* background: linear-gradient(
      rgba(255, 253, 248, 0.9),
      rgba(255, 253, 248, 0.9)
    ),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15)); */
  background-image: url("../bg/n_b/kontakt_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-kontakt.bg-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* background:
    radial-gradient(
      ellipse 1600px 1200px at 90% 10%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 200, 0.25) 20%,
      rgba(255, 248, 220, 0.2) 40%,
      rgba(255, 215, 0, 0.15) 60%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 88% 15%,
      rgba(255, 215, 0, 0.4) 0%,
      rgba(255, 248, 220, 0.3) 25%,
      rgba(255, 223, 0, 0.25) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1400px 1000px at 12% 85%,
      rgba(199, 21, 133, 0.35) 0%,
      rgba(255, 20, 147, 0.25) 30%,
      rgba(255, 105, 180, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 1800px 1300px at 50% 45%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(255, 192, 203, 0.2) 30%,
      rgba(255, 215, 0, 0.15) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 900px 700px at 18% 22%,
      rgba(199, 21, 133, 0.35) 0%,
      rgba(255, 20, 147, 0.25) 35%,
      rgba(255, 105, 180, 0.2) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 900px 700px at 82% 78%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 35%,
      rgba(255, 223, 0, 0.15) 50%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 5%,
      rgba(255, 248, 220, 0.25) 0%,
      rgba(255, 215, 0, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 1200px 600px at 50% 95%,
      rgba(199, 21, 133, 0.3) 0%,
      rgba(255, 20, 147, 0.2) 40%,
      rgba(255, 105, 180, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 5% 50%,
      rgba(255, 192, 203, 0.25) 0%,
      rgba(255, 105, 180, 0.2) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 600px 1200px at 95% 50%,
      rgba(255, 215, 0, 0.3) 0%,
      rgba(255, 248, 220, 0.25) 40%,
      rgba(255, 223, 0, 0.15) 60%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 0%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 250% 400px at 50% 100%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 250% at 0% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 250% at 100% 50%,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 65%
    );
  background-blend-mode:
    screen, screen, screen, screen, screen, screen, screen, screen, screen,
    screen, multiply, multiply, multiply, multiply;
  opacity: 0.7; */
  display: none;
}
.section-kontakt.bg-effect > * {
  position: relative;
  z-index: 1;
}
.kontakt-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.kontakt-preview-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-info-card-preview {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.kontakt-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.kontakt-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
}
.kontakt-icon {
  font-size: var(--font-xl);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.kontakt-info-list li div {
  flex: 1;
}
.kontakt-preview-text {
  font-size: var(--font-l);
  line-height: 1.8;
  color: var(--text-main);
  opacity: 0.9;
  margin: 0;
}
.kontakt-preview-action {
  display: flex;
  flex-direction: column;
}
.kontakt-action-card {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.kontakt-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.kontakt-action-icon {
  font-size: var(--font-icon);
  opacity: 0.8;
}
.kontakt-action-title {
  font-size: var(--font-2xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}
.kontakt-action-text {
  font-size: var(--font-m);
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.85;
  margin: 0;
  max-width: 18.75rem;
}

/* FOOTER */

.footer {
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15));
  border-top: 1px solid var(--gold-border);
  padding: 3rem 0 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-2xl);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.footer-subtitle {
  font-size: var(--font-ss);
  opacity: 0.7;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: var(--icon-l);
  height: var(--icon-l);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.social-icon:hover {
  background-color: var(--accent-soft);
  border-color: var(--gold);
}
.footer-copyright {
  font-size: var(--font-s);
  opacity: 0.7;
}
.footer-links {
  text-align: center;
  font-size: var(--font-s);
  opacity: 0.7;
}
.footer-link {
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--accent);
}
.footer-credit {
  text-align: center;
  font-size: var(--font-ss);
  opacity: 0.5;
  margin-top: 1rem;
}
.footer-credit a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.footer-credit a:hover {
  opacity: 0.8;
}
.footer-divider {
  margin: 0 0.75rem;
}

/* FLUTE LANGUAGE SELECTOR */

.navbar-flute-container {
  position: fixed;
  bottom: 4rem;
  right: -5rem;
  transform: translateX(-50%);
  width: 12.5rem;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1000;
}
.navbar-flute-container:hover ~ .navbar-flute-overlay {
  height: 8.7rem;
}
.navbar-flute-container::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 60px;
  width: 140px;
  height: 17px;

  opacity: 0.3;
  pointer-events: all;
  cursor: pointer;
  z-index: 11;
  transition: opacity 0.3s ease;
}
.navbar-flute-container::before {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  right: -1.6875rem;
  width: clamp(14rem, 25vw, 17.6875rem);
  height: clamp(8rem, 15vw, 9.375rem);
  opacity: 1;
  pointer-events: none;
  cursor: pointer;
  z-index: 10;
  clip-path: polygon(56% 25%, 85% 26%, 85% 100%, 12% 96%);
  transition:
    opacity 0.3s ease,
    pointer-events 0.3s ease;
}
.navbar-flute-img {
  width: 140px;
  height: auto;
  position: absolute;
  left: 0;
  transform-origin: left center;
  transition:
    opacity 0.3s ease,
    z-index 0.3s ease;
  pointer-events: none;
  z-index: 12;
  cursor: pointer;
}
.navbar-flute-container:hover .navbar-flute-img {
  pointer-events: all;
  z-index: 12;
}
.navbar-flute-overlay {
  position: fixed;
  bottom: 2.6rem;
  right: -4.8rem;
  transform: translateX(-50%);
  width: 13rem;
  height: 2.7rem;
  background-color: var(--accent);
  border: 1px solid var(--accent-dark);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  border-radius: 2rem;
  transition: height 0.3s ease;
}
.navbar-flute-container:hover::after {
  pointer-events: none;
}
.navbar-flute-2 {
  top: -0.375rem;
  transform: rotate(-20deg);
  opacity: 0;
}
.navbar-flute-1 {
  top: -0.375rem;
  transform: rotate(0deg);
  opacity: 1;
}
.navbar-flute-3 {
  top: -0.375rem;
  transform: rotate(-40deg);
  opacity: 0;
}
.navbar-flute-container:hover::before {
  opacity: 0.3;
  pointer-events: all;
  z-index: 9;
}
.navbar-flute-container:hover .navbar-flute-1,
.navbar-flute-container:hover .navbar-flute-3 {
  opacity: 1;
}
.navbar-flute-container:hover .navbar-flute-1:hover,
.navbar-flute-container:hover .navbar-flute-2:hover,
.navbar-flute-container:hover .navbar-flute-3:hover {
  opacity: 1 !important;
  z-index: 10;
}
.navbar-flute-container:hover .navbar-flute-2 {
  opacity: 1;
}
.navbar-flute-container:hover:has(.navbar-flute-1:hover)
  .navbar-flute-2:not(:hover),
.navbar-flute-container:hover:has(.navbar-flute-1:hover)
  .navbar-flute-3:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover .navbar-flute-2:hover {
  opacity: 1 !important;
}
.navbar-flute-container:hover:has(.navbar-flute-1:hover)
  .navbar-lang-button[data-position="1"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-flute-1:hover)
  .navbar-lang-button[data-position="2"],
.navbar-flute-container:hover:has(.navbar-flute-1:hover)
  .navbar-lang-button[data-position="3"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-flute-2:hover)
  .navbar-flute-1:not(:hover),
.navbar-flute-container:hover:has(.navbar-flute-2:hover)
  .navbar-flute-3:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-flute-2:hover)
  .navbar-lang-button[data-position="2"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-flute-2:hover)
  .navbar-lang-button[data-position="1"],
.navbar-flute-container:hover:has(.navbar-flute-2:hover)
  .navbar-lang-button[data-position="3"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-flute-3:hover)
  .navbar-flute-1:not(:hover),
.navbar-flute-container:hover:has(.navbar-flute-3:hover)
  .navbar-flute-2:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-flute-3:hover)
  .navbar-lang-button[data-position="3"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-flute-3:hover)
  .navbar-lang-button[data-position="1"],
.navbar-flute-container:hover:has(.navbar-flute-3:hover)
  .navbar-lang-button[data-position="2"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-flute-1 {
  opacity: 1 !important;
  z-index: 10;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-flute-2:not(:hover),
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-flute-3:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-lang-button[data-position="1"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-lang-button[data-position="2"],
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="1"]:hover)
  .navbar-lang-button[data-position="3"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-flute-2 {
  opacity: 1 !important;
  z-index: 10;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-flute-1:not(:hover),
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-flute-3:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-lang-button[data-position="2"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-lang-button[data-position="1"],
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="2"]:hover)
  .navbar-lang-button[data-position="3"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-flute-3 {
  opacity: 1 !important;
  z-index: 10;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-flute-1:not(:hover),
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-flute-2:not(:hover) {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-lang-button[data-position="3"] {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  animation: pulse-glow-hover 1.5s ease-in-out infinite;
}
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-lang-button[data-position="1"],
.navbar-flute-container:hover:has(.navbar-lang-button[data-position="3"]:hover)
  .navbar-lang-button[data-position="2"] {
  opacity: 0.3 !important;
}
.navbar-flute-container:hover .navbar-lang-button {
  opacity: 1 !important;
}
.navbar-flute-container:not(:hover) .navbar-lang-button:not(.active) {
  opacity: 0 !important;
}
.navbar-lang-button.active {
  opacity: 1 !important;
}
.navbar-lang-button {
  background-color: var(--accent);
  color: black;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  font-weight: 600;
  font-size: var(--font-ss);
  transition: all 0.3s ease;
  border: 1px solid var(--accent-dark);
  white-space: nowrap;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(244, 201, 194, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 20;
  pointer-events: all;
}
.navbar-lang-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.navbar-lang-button > * {
  position: relative;
  z-index: 2;
}
.navbar-lang-button:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
}
.navbar-lang-button:active {
  transform: translateY(0);
}
.navbar-lang-button.active {
  background-color: var(--accent);
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
}
.navbar-lang-button[data-lang="zh"] {
  font-size: var(--font-ss);
}
.navbar-lang-button-1 {
  top: -0.9375rem;
  left: 9.0625rem;
  opacity: 1;
}
.navbar-lang-button-2 {
  bottom: 2rem;
  left: 9.0625rem;
  opacity: 1;
}
.navbar-lang-button-3 {
  bottom: 80px;
  left: 145px;
  opacity: 0;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

.availability-box {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15));
  border: 1px solid var(--gold-border);
  border-top: 0.25rem solid var(--accent);
  border-radius: 1rem;
  padding: 0;
  box-shadow: var(--shadow-soft);
  height: fit-content;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.availability-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.availability-box-header {
  padding: 2rem 2rem 1.5rem 2rem;
  border-bottom: 1px solid var(--gold-border-light);
  text-align: center;
}

.availability-title {
  font-size: var(--font-2xl);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", serif;
}

.availability-subtitle {
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.7;
  font-style: italic;
  margin: 0;
}

.availability-list {
  list-style: none;
  padding: 1.5rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.availability-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.6);
  border-radius: 0.5rem;
  border: 1px solid var(--gold-border-light);
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.availability-list-item:hover {
  background: rgba(255, 253, 248, 0.9);
  transform: translateX(5px);
}

.availability-day {
  font-weight: 600;
  color: var(--accent-dark);
  min-width: 5.625rem;
  font-size: var(--font-s);
}

.availability-time {
  flex: 1;
  font-weight: 500;
  color: var(--text-main);
  font-size: var(--font-m);
}

.availability-type {
  font-size: var(--font-ss);
  color: var(--text-main);
  opacity: 0.7;
  font-style: italic;
}

.availability-online {
  color: var(--accent-dark);
  opacity: 1;
  font-weight: 500;
}

.availability-box-footer {
  padding: 1.5rem 2rem 2rem 2rem;
  border-top: 1px solid var(--gold-border-light);
  text-align: center;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: var(--font-l);
}

@media (max-width: 1290px) {
  html[lang="zh"] .nav-link {
    padding: 0.5rem 1rem;
    font-size: var(--font-l);
  }
}

@media (max-width: 1290px) {
  .nav-menu {
    gap: 0;
  }
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: var(--font-m);
  }

  .nav-cta-wrapper {
    gap: 0.5rem;
    margin-left: 0.5rem;
  }
  .nav-cta-button {
    padding: 0.6rem 1.5rem;
    font-size: var(--font-m);
  }
  .navbar-container {
    justify-content: space-between;
  }
  .hero-container,
  .about-preview-content,
  .unterricht-preview-content,
  .media-preview-content,
  .testimonials-preview-content,
  .termine-preview-content,
  .kontakt-preview-content {
    gap: 2rem;
    padding: 0 3.5rem;
  }
  .hero-image img {
    left: 15%;
    width: 30%;
  }

  .gallery-preview-images {
    padding: 0 3.5rem;
  }

  .section-testimonials .preview-actions {
    padding: 0 3.5rem;
  }
}

@media (max-width: 1190px) {
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: var(--font-s);
  }

  .nav-cta-wrapper {
    gap: 0.5rem;
    margin-left: 0.5rem;
  }
  .nav-cta-button {
    padding: 0.6rem 1.5rem;
    font-size: var(--font-s);
  }
}

@media (max-width: 1090px) {
  .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: var(--font-s);
  }

  .nav-cta-wrapper {
    gap: 0.2rem;
    margin-left: 0.2rem;
  }
  .nav-cta-button {
    padding: 0.6rem 1rem;
    font-size: var(--font-s);
  }
}

@media (max-width: 1024px) {
  .hero {
    background-image: url("../bg/hero_mobil.webp");
    background-position: initial;
  }
  .section-about {
    background-image: url("../bg/n_b/about_m.webp");
  }
  .section-gallery {
    background-image: url("../bg/n_b/gallery_m.webp");
  }
  .section-unterricht {
    background-image: url("../bg/n_b/unterricht_m.webp");
  }
  .section-media {
    background-image: url("../bg/n_b/media_m.webp");
  }
  .section-testimonials {
    background-image: url("../bg/n_b/testi_m.webp");
  }
  .section-termine {
    background-image: url("../bg/n_b/termine_m.webp");
  }
  .section-kontakt {
    background-image: url("../bg/n_b/kontakt_m.webp");
  }
  .mobile-menu-close {
    display: none;
  }
  .mobile-nav-toggle {
    position: relative;
    z-index: 1002;
  }
  body.mobile-menu-open .mobile-nav-toggle span {
    transform-origin: center;
  }
  body.mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    display: none;
  }

  .nav-cta-button {
    display: none;
  }

  .navbar-flute-container,
  .navbar-flute-overlay {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-container,
  .about-preview-content,
  .unterricht-preview-content,
  .media-preview-content,
  .testimonials-preview-content,
  .termine-preview-content,
  .kontakt-preview-content {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }
  .gallery-preview-images {
    padding: 0 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
    align-items: center;
  }

  .hero-image {
    order: -1;
    position: relative;
    min-height: 16.25rem;
    justify-content: center;
    align-items: center;
  }

  .hero-image img {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(12rem, 40vw, 20rem);
    margin: 0 auto;
    display: block;
    transform: none;
  }

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

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

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .about-content-wrapper {
    gap: 0rem;
  }

  .about-image-section {
    position: static;
  }

  .about-image-container {
    max-width: 25rem;
    margin: 0 auto;
  }

  .highlight-card {
    padding: 1.5rem 2rem;
  }

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

  .highlight-text {
    font-size: var(--font-s);
  }

  .unterricht-cards {
    grid-template-columns: 1fr;
  }

  .unterricht-card {
    padding: 2rem;
  }

  .unterricht-card-child {
    border-left-width: 0.25rem;
  }

  .unterricht-card-badge {
    top: 1rem;
    right: 1rem;
    font-size: var(--font-ss);
    padding: 0.35rem 0.85rem;
  }

  .unterricht-card-number {
    font-size: var(--font-s);
    margin-bottom: 0.75rem;
  }

  .price-box {
    padding: 2rem;
  }

  .price-box-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .faq-items-wrapper {
    padding: 1rem;
  }

  .faq-item-header {
    padding: 1.25rem;
  }

  .faq-content-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .about-preview-image {
    order: -1;
    align-items: center;
  }

  .about-preview-image .about-image-container {
    max-width: none;
    width: clamp(12rem, 40vw, 20rem);
  }

  .about-preview-image .about-image-container img {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }

  .unterricht-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

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

  .unterricht-preview-image img {
    margin-top: 0;
    width: clamp(12rem, 40vw, 20rem);
  }

  .testimonials-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-quote-large {
    font-size: var(--font-icon);
  }

  .stat-number {
    font-size: var(--font-display);
  }

  .media-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .media-featured-thumbnail {
    aspect-ratio: 16/9;
  }

  .media-placeholder-large {
    font-size: var(--font-display);
  }

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

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

  .termine-header {
    margin-bottom: 3rem;
  }

  .termine-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .termine-item-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .termine-date-badge {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  .termine-day {
    font-size: var(--font-3xl);
  }

  .termine-item-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }

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

  .availability-box-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .availability-list {
    padding: 1rem 1.5rem;
  }

  .availability-box-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }

  .termine-preview-content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .termine-featured-event {
    flex-direction: column;
  }

  .termine-event-image {
    width: 100%;
    min-width: auto;
    height: 12.5rem;
  }

  .termine-event-details {
    flex-direction: column;
  }

  .termine-event-date-badge {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
    width: fit-content;
  }

  .event-day {
    font-size: var(--font-3xl);
    margin-right: 0.5rem;
  }

  .kontakt-header {
    margin-bottom: 3rem;
  }

  .kontakt-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kontakt-form {
    padding: 2rem;
  }

  .kontakt-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .kontakt-form-icon {
    font-size: var(--font-display);
  }

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

  .kontakt-info-wrapper {
    position: static;
  }

  .kontakt-info-card {
    padding: 2rem;
  }

  .kontakt-info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .kontakt-info-title {
    font-size: var(--font-xl);
  }

  .quick-info-item {
    padding: 1.25rem;
  }

  .kontakt-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kontakt-action-card {
    padding: 2rem;
  }

  .kontakt-action-icon {
    font-size: var(--font-display);
  }

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

  .testimonial-card {
    min-width: 21.875rem;
    max-width: 21.875rem;
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .preview-actions {
    margin-top: 2rem;
  }

  .nav-link {
    padding: 0.5rem 0.6rem;
    font-size: var(--font-s);
  }
  .nav-cta-button {
    font-size: var(--font-s);
    padding: 0.5rem 0.6rem;
  }

  .section-testimonials .preview-actions {
    padding: 0 1.2rem;
  }
}

@media (min-width: 961px) {
  .unterricht-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .unterricht-card-title {
    margin-top: 0.8rem;
  }
}

@media (max-width: 768px) {
  body {
    background-size: auto;
    background-attachment: scroll;
    background-position: center top;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  body {
    background-size: inherit;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .mobile-menu::before {
    height: 200%;
    bottom: auto;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .section-gallery {
    background-size: cover;
  }
  .navbar-container {
    padding: 1.5rem 0.5rem;
  }
  .logo-name {
    height: 3.5rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .section-media {
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .carousel-viewport {
    max-width: 100%;
    min-height: 35rem;
    padding: 0;
  }
  .carousel-slide {
    width: clamp(16rem, 45vw, 23.75rem);
  }
  .carousel-slide.prev {
    transform: translateX(calc(-50% - 16.25rem));
    filter: blur(6px);
  }
  .carousel-slide.next {
    transform: translateX(calc(-50% + 16.25rem));
    filter: blur(6px);
  }
  .carousel-card img {
    height: clamp(18rem, 45vw, 30rem);
  }
  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
  .carousel-btn svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .carousel-prev {
    left: 0.5rem;
  }
  .carousel-next {
    right: 0.5rem;
  }
  .gallery-preview-images {
    gap: 1rem;
    margin: 2.5rem 0;
  }
  .gallery-preview-img {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .gallery-preview-img img {
    height: clamp(10rem, 30vw, 17.5rem);
  }
  .section-gallery {
    background-size: auto;
    background-attachment: scroll;
    background-position: center top;
  }
  .section-media {
    background-size: auto;
    background-attachment: scroll;
    background-position: center top;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  body.mobile-menu-open {
    overflow: visible;
    position: relative;
  }

  .mobile-menu {
    max-height: 100vh;
  }

  .mobile-menu.open {
    max-height: 100vh;
    height: auto;
    min-height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5rem;
  }

  .mobile-cta-button {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .navbar-container {
    margin: 0.5rem auto;
  }
  .logo-name {
    height: 3.5rem;
    margin-left: 2.3rem;
  }
  .logo-chinese-name {
    font-size: 1.2rem;
  }
  .logo-chinese-flute {
    font-size: 0.8rem;
  }
  .navbar-container {
    padding: 1.5rem 0.5rem;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.3rem);
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 0.5rem;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

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

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

  .testimonial-card {
    min-width: 18.75rem;
    max-width: 18.75rem;
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: var(--font-icon);
  }

  .name-subtitle {
    font-size: var(--font-xs);
  }

  .unterricht-header {
    margin-bottom: 2.5rem;
  }

  .price-box {
    padding: 1.5rem;
  }

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

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

  .faq-items-wrapper {
    padding: 0.75rem;
  }

  .faq-item-header {
    padding: 1rem;
  }

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

  .faq-content-inner {
    padding: 0 1rem 1rem 1rem;
    font-size: var(--font-s);
  }

  .kontakt-form {
    padding: 1.5rem;
  }

  .kontakt-form-title {
    font-size: var(--font-xl);
  }

  .kontakt-form-subtitle {
    font-size: var(--font-s);
  }

  .kontakt-info-card {
    padding: 1.5rem;
  }

  .kontakt-info-title {
    font-size: var(--font-l);
  }

  .quick-info-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .quick-info-icon {
    font-size: var(--font-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.25rem;
  }

  .hero-container,
  .about-preview-content,
  .unterricht-preview-content,
  .media-preview-content,
  .testimonials-preview-content,
  .termine-preview-content,
  .kontakt-preview-content,
  .gallery-preview-images {
    padding: 0 0.5rem;
  }
  .testimonial-featured {
    padding: 0 2rem;
  }
  .testimonial-author-featured {
    padding-bottom: 1.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mobile-link:hover {
    background-color: var(--accent-dark);
    color: #ffffff;
  }

  .mobile-cta-button:hover {
    background-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
    animation: pulse-glow-hover 1.5s ease-in-out infinite;
  }

  .mobile-lang-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* KEYFRAMES */

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(244, 201, 194, 0.5);
  }
  50% {
    box-shadow:
      0 0 30px rgba(244, 201, 194, 0.8),
      0 0 40px rgba(244, 201, 194, 0.4);
  }
}

@keyframes pulse-glow-hover {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(244, 201, 194, 0.6);
  }
  50% {
    box-shadow:
      0 6px 30px rgba(244, 201, 194, 0.9),
      0 6px 40px rgba(244, 201, 194, 0.5);
  }
}

@keyframes shiny-pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 200%;
    height: 200%;
    opacity: 0.75;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
