/* ============== Shared page hero ==============
   Two-column copy + illustration layout used on yoga, activity-painting,
   and cafe-karte. Page-specific colours come in via .page-hero--* modifiers
   so the markup is identical and only background / text colours / image
   change per page. */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: var(--section-py-mobile);
}

@media (min-width: 1024px) {
  .page-hero {
    min-height: 100vh;
    padding-block: var(--section-py-desktop);
  }
}

.page-hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .page-hero__grid {
    grid-template-columns: 55% 45%;
  }
}

.page-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 88px);
  line-height: 0.95;
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

.page-hero__text {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: var(--font-size-lg);
  line-height: 1.75;
  max-width: 32rem;
}

/* margin-top: auto pushes the CTAs to the bottom of the copy column so they
   sit at a comparable vertical position on every page, regardless of how
   tall the title above happens to wrap. */
.page-hero__ctas {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-start;
  padding-top: var(--space-md);
}

.page-hero__art {
  display: none;
}

@media (min-width: 1024px) {
  .page-hero__art {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.page-hero__art img {
  width: 100%;
  max-width: 560px;
  max-height: 65vh;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* ============== Page-specific colour palettes ============== */
.page-hero--yoga {
  background-color: var(--color-baby-pink);
}
.page-hero--yoga .page-hero__title {
  color: var(--color-midnight);
}
.page-hero--yoga .page-hero__text {
  color: rgba(26, 0, 8, 0.8);
}

.page-hero--ap {
  background-color: var(--color-brand-red);
}
.page-hero--ap .page-hero__eyebrow {
  color: var(--color-off-white);
}
.page-hero--ap .page-hero__title {
  color: var(--color-off-white);
}
.page-hero--ap .page-hero__text {
  color: rgba(250, 240, 244, 0.9);
}

.page-hero--menu {
  /* Warm coffee-toned brown — lighter than the midnight drinks section
     directly below, so the hero reads as a welcoming entry rather than
     blending into the dark menu block. */
  background-color: var(--color-mauve-dark);
}
.page-hero--menu .page-hero__eyebrow {
  color: var(--color-baby-pink);
}
.page-hero--menu .page-hero__title {
  color: var(--color-white);
}
.page-hero--menu .page-hero__text {
  color: var(--off-white-80);
}

/* The cup illustration on the cafe-karte hero leans against the inner edge
   of its column rather than the outer one, since the page already has a
   clearly weighted right-aligned section below it. */
@media (min-width: 1024px) {
  .page-hero--menu .page-hero__art {
    justify-content: flex-start;
  }
  .page-hero--menu .page-hero__art img {
    max-width: 600px;
    max-height: 70vh;
  }
}

.page-hero--coworking {
  background-color: var(--color-forest-green);
}
.page-hero--coworking .page-hero__eyebrow {
  color: rgba(168, 213, 196, 0.7);
}
.page-hero--coworking .page-hero__title {
  color: var(--color-off-white);
}
.page-hero--coworking .page-hero__text {
  color: rgba(250, 240, 244, 0.85);
}

.page-hero--store {
  background-color: var(--color-midnight);
}
.page-hero--store .page-hero__eyebrow {
  color: var(--baby-pink-60);
}
.page-hero--store .page-hero__title {
  color: var(--color-off-white);
}
.page-hero--store .page-hero__text {
  color: rgba(250, 240, 244, 0.7);
}

.page-hero--kalender {
  background-color: var(--color-bordeaux);
}
.page-hero--kalender .page-hero__eyebrow {
  color: rgba(242, 167, 187, 0.75);
}
.page-hero--kalender .page-hero__title {
  color: var(--color-off-white);
}
.page-hero--kalender .page-hero__text {
  color: rgba(250, 240, 244, 0.85);
}
