/**
 * ina.YOGA – Subpage Styles
 * Über mich, Firmenyoga, Blog, Impressum, Datenschutz
 */

/* ============================================
   Subpage Hero
   ============================================ */
.subpage-hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

.subpage-hero__image-wrap {
  position: absolute;
  inset: 0;
}

.subpage-hero__image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.subpage-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.subpage-hero__headline {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.subpage-hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .subpage-hero {
    min-height: 70vh;
  }

  .subpage-hero__content {
    min-height: 70vh;
  }

  .subpage-hero__headline {
    font-size: 3.5rem;
  }

  .subpage-hero__sub {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .subpage-hero__headline {
    font-size: 4.5rem;
  }
}

/* ============================================
   Über mich – About Text
   ============================================ */
.about-text {
  position: relative;
  z-index: 10;
  background-color: var(--color-light-yellow);
  padding: 5rem 1.5rem 4rem;
}

.about-text__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text__image-wrap {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.about-text__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.about-text__title {
  font-size: 2.5rem;
  margin: 0 0 1.25rem;
}

.about-text__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0 0 1.25rem;
  text-align: justify;
}

.about-text__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.about-text__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.about-text__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

@media (min-width: 768px) {
  .about-text__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .about-text__image-wrap {
    flex: 0 0 42%;
    max-width: none;
    margin: 0;
  }

  .about-text__content {
    flex: 1;
  }
}

/* ============================================
   Über mich – Soft Facts
   ============================================ */
.soft-facts {
  position: relative;
  z-index: 10;
  background-color: var(--color-lavender);
  padding: 5rem 1.5rem 4rem;
}

.soft-facts__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.soft-facts__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.soft-facts__title {
  font-size: 2.5rem;
  margin: 0 0 1.5rem;
}

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

.soft-facts__item {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.soft-facts__item strong {
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.soft-facts__closing {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: #000;
  margin: 0 0 1.25rem;
}

.soft-facts__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.soft-facts__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.soft-facts__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

.soft-facts__image-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.soft-facts__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .soft-facts__grid {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 3rem;
  }

  .soft-facts__image-wrap {
    flex: 0 0 38%;
    max-width: none;
    margin: 0;
  }

  .soft-facts__content {
    flex: 1;
  }
}

/* ============================================
   Firmenyoga – Intro
   ============================================ */
.firmenyoga-intro {
  background-color: var(--color-light-yellow);
  padding: 5rem 1.5rem 3rem;
}

.firmenyoga-intro__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.firmenyoga-intro__title {
  font-size: 2.75rem;
  margin: 0 0 1rem;
}

.firmenyoga-intro__lead {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: #000;
  margin: 0 0 1.25rem;
}

.firmenyoga-intro__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0;
  text-align: justify;
}

/* ============================================
   Firmenyoga – Benefits
   ============================================ */
.benefits {
  background-color: var(--color-light-pink);
  padding: 4rem 1.5rem;
}

.benefits__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.benefits__image-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.benefits__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.benefits__title {
  font-size: 2.5rem;
  margin: 0 0 0.25rem;
}

.benefits__subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-dark-grey-teal);
  margin: 0 0 1.5rem;
  display: block;
}

.benefits__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.5;
}

.benefits__item img {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefits__item strong {
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.benefits__item p {
  margin: 0;
  opacity: 0.85;
}

.benefits__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.benefits__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.benefits__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

@media (min-width: 768px) {
  .benefits__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .benefits__image-wrap {
    flex: 0 0 42%;
    max-width: none;
    margin: 0;
  }

  .benefits__content {
    flex: 1;
  }
}

/* ============================================
   Firmenyoga – Ausgleich CTA
   ============================================ */
.firmenyoga-ausgleich {
  background-color: var(--color-light-yellow);
  padding: 4rem 1.5rem;
}

.firmenyoga-ausgleich__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.firmenyoga-ausgleich__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.firmenyoga-ausgleich__quote {
  font-size: 2rem;
  margin: 0;
}

.firmenyoga-ausgleich__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.firmenyoga-ausgleich__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.firmenyoga-ausgleich__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
}

/* ============================================
   Blog Placeholder
   ============================================ */
.blog-placeholder {
  background-color: var(--color-light-yellow);
  padding: 8rem 1.5rem 6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.blog-placeholder__inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.blog-placeholder__icon {
  width: 60px;
  height: auto;
}

.blog-placeholder__title {
  font-size: 3rem;
  margin: 0;
}

.blog-placeholder__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.blog-placeholder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.blog-placeholder__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.blog-placeholder__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

/* ============================================
   Legal Pages (Impressum, Datenschutz)
   ============================================ */
.legal {
  background-color: var(--color-off-white);
  padding: 5rem 1.5rem 5rem;
  min-height: 60vh;
}

.legal__inner {
  max-width: 700px;
  margin: 0 auto;
}

.legal__title {
  font-size: 2.5rem;
  margin: 0 0 2rem;
}

.legal__section {
  margin-bottom: 2rem;
}

.legal__section h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-dark-grey-teal);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.legal__section p,
.legal__section address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  line-height: 1.7;
  margin: 0 0 0.75rem;
  font-style: normal;
}

.legal__section a {
  color: var(--color-dark-grey-teal);
}
