/* =============================================
   VERDE PARK — Про нас
   ============================================= */

/* --- Паралакс-банер (130px від верху content-area) --- */
.about-hero-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  /* topbar ~80px висоти + 50px = 130px від верху content-area */
  margin-top: 50px;
}

.about-hero-bg {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  bottom: -140px;
  background: url('../images/hero/aboutimg.jpeg') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

/* .about-hero-overlay — стилі перенесено в .page-hero-overlay (layout.css) */

.about-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 50px 0 150px;
}

.about-h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}

.about-promo {
  font-family: var(--font-museo);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-left: auto;
  text-align: right;
  padding-right: 0;
  transform: translateY(20px);
}

.about-promo strong {
  color: var(--white);
  font-weight: 700;
}

/* --- Секції --- */
.about-section {
  margin-bottom: 56px;
}


.about-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 24px;
}

/* --- Текстові блоки --- */
.about-text {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text p {
  font-family: var(--font-museo);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
}

/* --- Список з тире --- */
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  padding-left: 12px;
}

.about-list li {
  font-family: var(--font-museo);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
  position: relative;
  padding-left: 18px;
}

.about-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- Фото комплексу --- */
.about-photo {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 56px;
}

/* =============================================
   АДАПТИВ
   ============================================= */
@media (max-width: 1199px) {
  .about-hero-banner {
    /* topbar планшет ~50px + 80px = 130px від верху */
    margin-top: 80px;
  }

  .about-banner-content {
    padding: 0 28px 0 80px;
  }
}

@media (max-width: 767px) {
  .about-hero-banner {
    margin-top: 0;
  }

  .about-banner-content {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }

  .about-h1 {
    font-size: 38px;
  }

  .about-promo {
    margin-left: 0;
    text-align: left;
  }

  .about-section {
    margin-bottom: 40px;
  }
}
