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

:root {
  --pink: #f3a8b8;
  --light-pink: #fdeef2;
  --soft-pink: #fff3f6;
  --black: #1f1f1f;
  --white: #ffffff;
  --gray: #6d6d6d;
  --background: #fffaf8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: var(--background);
  color: var(--black);
  line-height: 1.6;
}

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

section {
  padding: 100px 8%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo,
.footer-logo {
  width: 90px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--pink);
}

.language-switcher {
  display: flex;
  gap: 8px;
}

.language-switcher button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  color: var(--gray);
}

.language-switcher button:hover {
  color: var(--pink);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("assets/images/hero-jga.png");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 760px;
  padding-top: 80px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.05;
  margin: 20px 0;
}

.hero-text {
  max-width: 620px;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.btn,
.contact button {
  display: inline-block;
  background: linear-gradient(135deg, #f3a8b8, #e88da4);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(243, 168, 184, 0.35);
  transition: all 0.3s ease;
}

.btn:hover,
.contact button:hover {
  transform: translateY(-2px);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-benefits span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

/* HIER IST DIE ÄNDERUNG */

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 24px;
}

.intro h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.15;
  max-width: 800px;
}

.intro p:last-child {
  max-width: 720px;
  font-size: 1.25rem;
  color: var(--gray);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.event-grid article {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 300px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.event-grid article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.perfect-for {
  margin-top: 22px;
  background: var(--soft-pink);
  border-radius: 22px;
  padding: 16px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px solid rgba(243, 168, 184, 0.22);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.package-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.package-card h3 {
  margin-bottom: 12px;
}

.package-card ul {
  padding-left: 20px;
  line-height: 1.8;
  margin-top: 16px;
}

.package-card.dark {
  background: var(--soft-pink);
  color: var(--black);
  border: 1px solid rgba(243, 168, 184, 0.25);
  box-shadow: 0 10px 30px rgba(243, 168, 184, 0.16);
}

.how-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.gallery img {
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.faq-section {
  background: white;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-grid details {
  background: var(--light-pink);
  border-radius: 20px;
  padding: 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-grid p {
  margin-top: 16px;
  color: var(--gray);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  padding: 16px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

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

footer {
  padding: 40px 8%;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer p {
  margin-top: 20px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--pink);
}

@media (max-width: 1100px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 20px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .hero-benefits {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 70px 6%;
  }

  .event-grid article {
    grid-template-columns: 1fr;
  }

  .event-grid article img {
    height: 260px;
  }
}
/* Honeypot spam field */
.hidden-field {
  display: none;
}

/* Legal pages (Impressum / Datenschutz) */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 8% 100px;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
}

.legal p,
.legal li {
  color: var(--gray);
  margin-bottom: 14px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal a {
  color: var(--pink);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.legal .back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--black);
}
