:root {
  --text: #ffffff;
  --overlay: rgba(9, 20, 44, 0.58);
  --hero-offset: 0px;
  --content-bg: #0f1b30;
  --card-bg: #172641;
  --headline: #ffffff;
  --body: #ffffff;
  --accent: #7ea2e6;
  --line: #2c3f60;
  --radius: 14px;
  --shadow: 0 14px 30px rgba(4, 10, 23, 0.36);
}

body {
  color: #e6eefc;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 2.2rem 1rem;
  color: var(--text);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 0;
  background-image: url("../Startseite-Hintergrund.webp");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--hero-offset), 0);
  backface-visibility: hidden;
  will-change: transform;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 95%);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.8vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero p {
  margin: 0.45rem 0;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  line-height: 1.45;
  transform: translateY(4.5rem);
}

.info {
  padding: clamp(2.5rem, 5vw, 4.5rem) 1rem;
  background: linear-gradient(180deg, #10203a 0%, #0d172a 100%);
}

.info-wrap {
  width: min(1100px, 94%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.info-title {
  margin: 0 0 0.4rem;
  text-align: center;
  color: var(--headline);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.feature-row.reverse .feature-text {
  order: 1;
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-image {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 260px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.feature-text {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h3 {
  margin: 0 0 0.55rem;
  color: var(--headline);
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-text p,
.feature-text li {
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

.feature-text ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.availability-note {
  margin: 0.25rem 0 0;
  text-align: center;
  color: var(--headline);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.3;
}

.availability-note a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.location {
  padding: clamp(2.5rem, 5vw, 4.5rem) 1rem;
  background: var(--card-bg);
  border-top: 1px solid var(--line);
}

.location-wrap {
  width: min(1100px, 94%);
  margin: 0 auto;
  text-align: center;
}

.location-title {
  margin: 0 0 1rem;
  color: var(--headline);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.location-address {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pricing {
  padding: clamp(2.5rem, 5vw, 4.5rem) 1rem;
  background: #091122;
  border-top: 1px solid var(--line);
}

.pricing-wrap {
  width: min(800px, 94%);
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  margin: 0 0 2rem;
  color: var(--headline);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.pricing-table {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-label {
  font-weight: 700;
  color: var(--headline);
  font-size: 1.1rem;
}

.pricing-value {
  text-align: right;
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--body);
  opacity: 0.85;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .hero::before {
    background-position: 75% center;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-image {
    order: 1;
  }

  .feature-row.reverse .feature-text {
    order: 2;
  }
}