/* ==========================================================
   ABOUT US PAGE — FINAL INTEGRATED VERSION (Dec 2025)
   Token-governed version
   - Column rebalance (42% / 58%)
   - Divider height refinement
   - Divider alignment refinement
   - Improved heading spacing
   - Comfort padding on main wrapper
   ========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Anta&display=swap");

/* ================================
   MAIN LAYOUT
   ================================ */

main {
  background-color: var(--boulevard-warm-soft-cream); /* Soft cream */
  padding: 3rem 5%;       /* increased L/R padding for better breathing */
  padding-bottom: 6rem;
}

/* ABOUT WRAPPER (Main 2-column layout) */
.about-wrapper {
  display: flex;
  padding: 2rem 3%;
  gap: 3rem;
  overflow: visible;
}

/* ================================
   LEFT PANE — IMAGE COLLAGE
   ================================ */

.about-images {
  width: 42%;                  /* increased from 40% */
  display: flex;
  flex-direction: column;
  gap: 2.8rem;

  padding-right: 3rem;
  position: relative;
}

/* Dual vertical divider (Aqua + Gold) – refined height + spacing */
.about-images::before,
.about-images::after {
  content: "";
  position: absolute;
  width: 2px;
  top: 20px;
  height: calc(100% - 40px);
}

.about-images::before {          /* aqua line */
  right: 10px;                   /* refined spacing (was 6px) */
  background-color: var(--accent);
}

.about-images::after {           /* gold line */
  right: 4px;                    /* refined spacing (was 0px) */
  background-color: var(--boulevard-warm-gold);
}

/* Images */
.about-images figure {
  text-align: center;
}

.about-images img {
  width: 100%;
  border-radius: 10px;

  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.18),
    0 5px 10px rgba(0, 0, 0, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-images img:hover {
  transform: scale(1.03);
  box-shadow:
    0 14px 22px rgba(0, 0, 0, 0.24),
    0 8px 14px rgba(0, 0, 0, 0.10);
}

.about-images figcaption {
  font-size: 1.4rem;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

/* ================================
   VIDEO BLOCK
   ================================ */

.about-video {
  margin-top: 1.6rem;
}

.about-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.20),
    0 5px 12px rgba(0, 0, 0, 0.10);
}

.video-caption {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 0.6rem;
  color: var(--text-main);
}

/* ================================
   RIGHT PANE — TEXT AREA (Raised)
   ================================ */

.about-text {
  width: 58%;                /* reduced from 60% */
  padding: 2rem;
  padding-right: 2rem;

  padding-top: 2.4rem;
  padding-bottom: 2.6rem;

  overflow-y: auto;
  background-color: var(--surface-main);
  border-radius: 12px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.04);

  line-height: 1.7;
}

/* Main heading (About Us) */
.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.6rem;       /* increased from 1rem */
  position: relative;
  padding-bottom: 0.6rem;
}

/* Gold → Aqua underline accent */
.about-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--accent-gradient);
}

/* Subheadings */
.about-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 2.2rem 0 1.2rem;
}

/* Paragraph text */
.about-text p {
  font-size: 1.55rem;
  margin: 1.2rem 0 1.8rem;
  line-height: 1.7;
}

/* Inline highlight */
.about-text .highlight {
  background: var(--accent-soft);
  border-radius: 0.6rem;
  padding: 0.6rem;
}

/* Closing signature */
.closing-signature {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-family: "Anta";
}

/* ================================
   MOBILE LAYOUTS
   ================================ */

@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    padding: 2rem 0;
  }

  .about-images,
  .about-text {
    width: 100%;
  }

  .about-images {
    padding-right: 0;
  }

  .about-images::before,
  .about-images::after {
    display: none;
  }
}

/* Small screens */
@media (max-width: 600px) {
  main {
    padding: 2rem 1.5rem 4rem;
  }

  .about-wrapper {
    padding: 1.5rem 0;
    gap: 2rem;
  }

  .about-images {
    gap: 2rem;
  }

  .about-text {
    padding: 1.8rem 1.4rem;
  }

  .about-text h3 {
    margin: 2rem 0 1rem;
  }

  .about-text p {
    font-size: 1.45rem;
    margin: 1rem 0 1.6rem;
  }
}
