/* =============================================================
   SOLARSHIELD — ABOUT PAGE STYLESHEET
   about.css
   Pixel-perfect recreation of SolarShield /en/about/ layout
   adapted for SolarShield branding
   ============================================================= */

/* ─────────────────────────────────────────────
   CONTAINERS
   ───────────────────────────────────────────── */

.about-container-narrow {
  max-width: 1520.8px;
  margin: 0 auto;
  padding: 0 var(--container-px-lg);
}

.about-container-wide {
  max-width: 1520.8px;
  margin: 0 auto;
  padding: 0 var(--container-px-lg);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────
   1. HERO BANNER
   Full-width bg image, dark overlay, left-aligned heading
   ───────────────────────────────────────────── */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url('../images/solarshield-about-banner.jpeg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: var(--navbar-height);
  padding-bottom: 10vw;
  /* Keep content well above the clipping path */
  overflow: hidden;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(26, 24, 24, 0.95) 0%,
      rgba(26, 24, 24, 0.8) 45%,
      rgba(26, 24, 24, 0) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-px-lg);
  max-width: 800px;
  /* Removed margin-bottom to rely on parent padding */
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  /* exactly 3.5rem (56px) on desktop */
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -3.6px;
  margin: 0;
}

/* SVG clipping mask at bottom of hero */
.about-hero-clip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  line-height: 0;
  transform: translateY(1px);
  /* fix subpixel rendering gap */
}

.about-hero-clip svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────
   2. BREADCRUMB + INTRO
   Centered narrow container
   ───────────────────────────────────────────── */

.about-intro-section {
  padding: 0 0;
  background: var(--solarshield-bg-page);
}

/* Breadcrumb */
.about-breadcrumb {
  margin-bottom: 3.5rem;
  /* Larger gap to intro lead */
}

.about-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-breadcrumb__list li {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: var(--solarshield-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.about-breadcrumb__list a {
  color: var(--solarshield-blue);
  /* Maps SolarShield Red to SolarShield Blue */
  text-decoration: none;
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.about-breadcrumb__list a:hover {
  color: var(--solarshield-blue-dark);
}

.about-breadcrumb__sep {
  color: var(--solarshield-blue);
  font-weight: var(--fw-medium);
}

.about-breadcrumb__current {
  background: #F2F0EB;
  /* Light grey badge matching SolarShield */
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  color: var(--solarshield-text-dark);
  font-weight: var(--fw-medium);
}

/* Intro lead paragraph */
.about-intro__lead {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  /* Large gap before heading */
}

/* Shared section heading (Termina, large, dark) */
.about-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 50px);
  /* Exactly 50px max on desktop */
  font-weight: 400;
  color: var(--solarshield-blue);
  /* Match theme color */
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

/* Shared body text */
.about-body-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-body-text:last-child {
  margin-bottom: 0;
}

.about-body-text a {
  color: var(--solarshield-blue);
  text-decoration: underline;
  font-weight: var(--fw-medium);
}

.about-body-text a:hover {
  color: var(--solarshield-blue-dark);
}

/* ─────────────────────────────────────────────
   3. PRODUCT RANGE — 50/50 SPLIT
   Text left, image right
   ───────────────────────────────────────────── */

.about-product-range {
  padding: 2rem 0;
  background: var(--solarshield-bg-page);
}

.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-highlight__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  color: var(--solarshield-blue-dark);
  text-transform: uppercase;
  letter-spacing: -0.1rem;
  line-height: 1.05;
  margin: 0;
}

.about-highlight__rule {
  border: none;
  height: 3px;
  background: var(--solarshield-blue);
  margin: 1.75rem 0;
}

.about-highlight__intro {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Icon List */
.about-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-icon-list__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.about-icon-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-icon-list__text {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--solarshield-text-dark);
  line-height: 1.5;
}

/* Image */
.about-highlight__media {
  overflow: hidden;
  border-radius: 0;
}

.about-highlight__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ─────────────────────────────────────────────
   4. COMMITMENT + MANUFACTURING
   Centered narrow container, stacked headings
   ───────────────────────────────────────────── */

.about-commitment-section {
  padding: 2rem 0;
  background: var(--solarshield-bg-page);
}

/* ─────────────────────────────────────────────
   5. 3-CARD GRID
   Vertical cards: image, title (accent color), desc, arrow
   ───────────────────────────────────────────── */

.about-cards-section {
  padding: 2rem 0;
  background: var(--solarshield-bg-card-light, #F2F0EB);
}

.about-content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-content-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.about-content-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.about-content-card__img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.about-content-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-content-card:hover .about-content-card__img-wrap img {
  transform: scale(1.05);
}

.about-content-card__body {
  padding: 2rem 1.75rem 1.5rem;
  flex: 1;
}

.about-content-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--solarshield-blue);
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.about-content-card__desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

.about-content-card__arrow {
  padding: 1rem 1.75rem 1.75rem;
  display: flex;
  justify-content: flex-end;
  color: var(--solarshield-blue);
  transition: transform var(--transition-fast);
}

.about-content-card:hover .about-content-card__arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────
   6. TAKE THE NEXT STEP — DARK CTA
   50/50 split: text left, image right
   Dark bg #1a1818
   ───────────────────────────────────────────── */

.about-cta-section {
  background: var(--solarshield-bg-dark, #1a1818);
  padding: 0;
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-cta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--container-px-lg) 2rem 0;
}

.about-cta__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.1rem;
  line-height: 1.05;
  margin: 0;
}

.about-cta__rule {
  border: none;
  height: 3px;
  background: var(--solarshield-blue);
  margin: 2rem 0;
  max-width: 100%;
}

.about-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.about-values-list i {
  font-size: 1.5rem;
  color: var(--solarshield-blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.about-values-list strong {
  color: #fff;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}

.about-cta__media {
  overflow: hidden;
}

.about-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET ≤ 1024px
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {

  .about-container-narrow,
  .about-container-wide {
    padding: 0 var(--section-px-md);
  }

  .about-hero {
    min-height: 440px;
  }

  .about-hero__content {
    padding: 0 var(--section-px-md);
  }

  .about-hero__title {
    font-size: 3rem;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-highlight__media img {
    min-height: 320px;
  }

  .about-content-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-cta__text {
    padding: 3rem var(--section-px-md);
  }

  .about-cta__media img {
    min-height: 340px;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE ≤ 768px
   ───────────────────────────────────────────── */

@media (max-width: 768px) {

  .about-container-narrow,
  .about-container-wide {
    padding: 0 var(--section-px-xs);
  }

  .about-hero {
    min-height: 360px !important;
    margin-top: var(--navbar-height-mobile);
    background-position: center 80% !important;
  }

  .about-hero__content {
    padding: 0 var(--section-px-xs);
  }

  .about-hero__title {
    font-size: 2rem;
    letter-spacing: -0.06rem;
  }

  .about-intro-section {
    padding: 1rem 0 1.5rem;
  }

  .about-breadcrumb {
    margin-bottom: 1.5rem;
  }

  .about-intro__lead {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .about-section-heading {
    font-size: 1.75rem;
  }

  .about-product-range {
    padding: 2.5rem 0;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-highlight__title {
    font-size: 2rem;
  }

  .about-highlight__media {
    order: -1;
    /* Image on top for mobile */
  }

  .about-highlight__media img {
    min-height: 240px;
  }

  .about-commitment-section {
    padding: 2.5rem 0;
  }

  .about-cards-section {
    padding: 2.5rem 0;
  }

  .about-content-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content-card__img-wrap {
    height: 200px;
  }

  .about-cta__text {
    padding: 2.5rem var(--section-px-xs);
  }

  .about-cta__title {
    font-size: 2rem;
  }

  .about-cta__media img {
    min-height: 260px;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE ≤ 480px
   ───────────────────────────────────────────── */

@media (max-width: 480px) {
  .about-hero {
    min-height: 300px !important;
    background-position: center 80% !important;
  }

  .about-hero__title {
    font-size: 1.625rem;
  }

  .about-highlight__title,
  .about-cta__title {
    font-size: 1.75rem;
  }

  .about-icon-list__icon {
    width: 32px;
    height: 32px;
  }

  .about-content-card__body {
    padding: 1.25rem 1.25rem 1rem;
  }
}