@font-face {
  font-family: "ADLaM Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ADLaMDisplay-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/Montserrat-Variable.woff2") format("woff2");
}

:root {
  --color-primary: #a565a5;
  --color-primary-light: #a96fa9;
  --color-secondary: #f0e6f0;
  --color-accent: #d4b0d4;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #faf6fa;
  --font-primary: "ADLaM Display", cursive;
  --font-secondary: "Montserrat", system-ui, sans-serif;
  --container-padding: 2rem;
  --max-width: 1200px;
  --max-width-footer: 1500px;
  --header-height: 85px;
  --section-padding: clamp(3rem, 8vw, 8rem);
  --shadow-sm: 0 2px 4px rgba(139, 75, 139, 0.1);
  --shadow-md: 0 4px 6px rgba(139, 75, 139, 0.15);
  --shadow-lg: 0 8px 24px rgba(139, 75, 139, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  line-height: 1.6;
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: var(--color-bg);
}
body.no-scroll {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.7;
}

.bold {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

#ueber .signature-icon {
  width: 50px;
  height: auto;
  display: block;
  margin-top: 0.5rem;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

#ueber .signature-icon:hover {
  transform: none;
  border: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary-light);
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
  display: block;
}

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

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.burger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.burger-menu.active .burger-bar:first-child {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
}

.main-nav.active {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-links li a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--color-primary);
}
main {
  padding-top: var(--header-height);
}
section {
  padding: var(--section-padding) 2rem;
}
section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
#start {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("/media/background.png");
  background-size: cover;
  background-position: center 10px;
  background-attachment: fixed;
}
#start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 0;
}
#start > * {
  position: relative;
  z-index: 1;
}
#start h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
#start p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
#start a {
  display: inline-block;
  padding: 1rem 2.5rem;
  margin: 0.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#start a:first-of-type {
  background-color: white;
  color: var(--color-primary);
}
#start a:first-of-type:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
#start a:last-of-type {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
#start a:last-of-type:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
#klang {
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    var(--color-bg-alt) 100%
  );
  position: relative;
}
#klang::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    var(--color-secondary) 0%,
    transparent 60%
  );
  opacity: 0.5;
}
#klang > * {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.card {
  background-color: var(--color-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--color-secondary);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-light);
}
.card:hover::before {
  transform: scaleX(1);
}

.card-centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.card-centered h3 {
  margin-bottom: 2rem;
}

.card-centered .questions {
  margin: 2rem 0;
}

.card-centered .question {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.5rem;
  background-color: var(--color-secondary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card-centered .question:last-child {
  margin-bottom: 0;
}

.card-centered .cta-text {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 12px;
}

.card-centered .cta-text a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.card-centered .cta-text a:hover {
  text-decoration-thickness: 3px;
}

#ueber {
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}
#ueber::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    var(--color-secondary) 0%,
    transparent 70%
  );
  opacity: 0.7;
}
.ueber-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.image-container {
  position: relative;
}
.image-container::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}
#ueber img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 3px solid var(--color-bg);
  display: block;
}
#ueber img:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-light);
}
.text-container {
  padding-top: 2rem;
}
.text-container h2 {
  margin-bottom: 2rem;
  position: relative;
}
.text-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}
@media (max-width: 1024px) {
  .ueber-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  .image-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .text-container {
    text-align: center;
    padding-top: 0;
  }
  .text-container h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
#kontakt {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-bg-alt) 0%,
    var(--color-bg) 100%
  );
}
#kontakt h3 {
  margin-top: 2rem;
  color: var(--color-primary);
}
#kontakt a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  background-color: var(--color-primary);
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
#kontakt a:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
footer {
  background-color: var(--color-bg-alt);
  padding: 4rem 2rem 2rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    var(--color-secondary) 0%,
    transparent 70%
  );
  opacity: 0.7;
  z-index: 0;
}
.container {
  max-width: var(--max-width-footer);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 1.125rem;
  color: var(--color-text);
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 2rem;
}
.footer-section h4 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.75rem;
}
.footer-section ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.125rem;
}
.footer-section ul li a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-secondary);
  text-align: center;
}
.footer-bottom p {
  color: var(--color-text-light);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  header {
    height: 85px;
  }
  header > div {
    padding: 0 1.5rem;
  }
  section {
    padding: calc(var(--section-padding) * 0.7) 1.5rem;
  }
  h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  #start {
    padding-top: 2rem;
    text-align: center;
    background-position: center center;
    background-attachment: scroll;
  }
  #start a {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 0.5rem auto;
  }
  #ueber {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  #ueber img {
    margin: 0 auto;
    max-width: 90%;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card {
    padding: 2rem;
  }
}
#impressum-main {
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    var(--color-bg-alt) 100%
  );
  position: relative;
}

#impressum-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    var(--color-secondary) 0%,
    transparent 70%
  );
  opacity: 0.6;
  z-index: 0;
}

#impressum-main > * {
  position: relative;
  z-index: 1;
}

#impressum-main h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.impressum-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .impressum-content .card {
    padding: 2rem 1.5rem;
  }

  #impressum-main h1 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: clamp(2rem, 5vw, 4rem);
  }
  header img {
    height: 60px;
  }
  #start h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }
  .card {
    padding: 1.5rem;
  }

  .impressum-content .card {
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 1000px) {
  :root {
    --container-padding: 2rem;
  }

  .burger-menu {
    display: none;
  }

  .main-nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .nav-links {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
