/* ==========================================================================
   ABOUT US PAGE STYLES — Darpan Studio
   ========================================================================== */

/* Solid White Header Override */
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #eaeaea !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.site-header .brand-name {
  color: #111111 !important;
}

.site-header .nav-link {
  color: #222222 !important;
}

.site-header .nav-link.active-page {
  color: var(--color-accent-gold) !important;
  font-weight: 600;
}

.site-header .nav-link.active-page::after {
  width: 100% !important;
  background-color: var(--color-accent-gold) !important;
}

/* Video Hero Section (Taller 520px height with clean centered script title) */
.about-hero-section {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5.5rem;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.65);
}

/* Clean Script Title "About us" Inside Hero (Slightly Smaller & Positioned Above Image) */
.about-script-title {
  position: relative;
  z-index: 10;
  font-family: 'Sloop', 'Sloop Script', cursive;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  margin: 0;
  letter-spacing: 0.02em;
  text-align: center;
  pointer-events: none;
}

/* Overlapping Content Container */
.about-main-section {
  position: relative;
  background-color: #ffffff;
  padding-bottom: 7rem;
}

.about-overlap-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Centered Portrait Founder Photo (Increased Height) */
.about-founder-box {
  width: 520px;
  max-width: 90vw;
  position: relative;
  z-index: 10;
  margin-top: -210px;
}

.about-founder-box .image-container {
  width: 100%;
  height: 740px;
  /* Increased height for founder photo */
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.about-founder-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Editorial Bio Paragraph Section Below Image */
.about-bio-container {
  max-width: 920px;
  margin: 4rem auto 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.about-bio-text {
  font-family: 'Edito A Regular', 'Editor Regular', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.95;
  color: #111111;
  letter-spacing: 0.015em;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 360px;
    padding-top: 3.5rem;
  }

  .about-script-title {
    font-size: 3.2rem;
  }

  .about-founder-box {
    width: 330px;
    height: 450px;
    margin-top: -140px;
  }

  .about-bio-container {
    margin-top: 2.5rem;
  }

  .about-bio-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}