/* Ensure page starts below header like index.php */

.main-wrapper {
  margin-top: 120px; /* match your header height; adjust if needed */
}

/* HERO (uses a static banner image without text) */
.about-hero-banner {
  position: relative;
  width: 100%;
  height: 500px; /* same height as your homepage hero */
  background: center/cover no-repeat;
  background-image: url("about-banner.png"); /* put regenerated no-text image here */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* soft overlay for legibility and premium feel */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(
    255,
    255,
    255,
    0.15
  ); /* subtle white wash for white luxury look */
  backdrop-filter: blur(0.3px);
}

/* hero text shown on top of the banner */
.about-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  color: #111;
  max-width: 1200px;
  padding: 40px;
}

.about-hero-banner .hero-title {
  font-size: 48px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.about-hero-banner .hero-subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;
}

/* INTRO */
.about-intro {
  padding: 60px 0;
}

.intro-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* STORY SECTION - LUXURY GREY BG */
.about-story {
  background: #fafafa;
  padding: 70px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.story-item {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.28s;
}

.story-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.story-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* VALUES */
.about-values {
  padding: 70px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
}

.value-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* WHY CHOOSE US */
.about-why {
  background: #fafafa;
  padding: 70px 0;
  text-align: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-list li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .story-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-banner {
    height: 420px;
  }
  .about-hero-banner .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .story-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-banner {
    height: 360px;
  }
  .about-hero-banner .hero-title {
    font-size: 28px;
  }
  .main-wrapper {
    margin-top: 100px;
  }
}
