/* ==========================================================================
   Luxora Blinds - About Page Styles
   ========================================================================== */

/* -------------------------------------------------------------------------
   About Hero
   ------------------------------------------------------------------------- */

.about-hero {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-ivory);
}

.about-hero__content {
  max-width: 600px;
}

.about-hero__label {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--space-md);
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.about-hero__text {
  font-size: var(--fs-body-lg);
  color: var(--color-grey);
  line-height: var(--lh-relaxed);
}

.about-hero__image {
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

.about-hero__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* -------------------------------------------------------------------------
   Story Section
   ------------------------------------------------------------------------- */

.story-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: var(--fs-body-lg);
  color: var(--color-grey);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--color-charcoal);
  text-align: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: var(--space-2xl) 0;
  position: relative;
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  color: var(--color-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

/* -------------------------------------------------------------------------
   Values Section
   ------------------------------------------------------------------------- */

.values-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-ivory);
}

.value-card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.value-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  background-color: rgba(200, 162, 77, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.value-card__icon i {
  font-size: 28px;
  color: var(--color-gold);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: var(--fs-body);
  color: var(--color-grey);
  line-height: var(--lh-relaxed);
}

/* -------------------------------------------------------------------------
   Stats Section
   ------------------------------------------------------------------------- */

.stats-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background: linear-gradient(135deg, var(--color-teal) 0%, #163b38 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading-alt);
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

/* -------------------------------------------------------------------------
   Team Section
   ------------------------------------------------------------------------- */

.team-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-white);
}

.team-card {
  text-align: center;
}

.team-card__image {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--color-gold);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: var(--fs-small);
  color: var(--color-grey);
  max-width: 280px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Certifications Section
   ------------------------------------------------------------------------- */

.certifications-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--color-ivory);
}

.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.certification-item:hover {
  opacity: 1;
}

.certification-item__icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-card);
}

.certification-item__icon i {
  font-size: 32px;
  color: var(--color-teal);
}

.certification-item__label {
  font-size: var(--fs-small);
  color: var(--color-charcoal);
  font-weight: var(--fw-medium);
}

/* -------------------------------------------------------------------------
   CTA Section
   ------------------------------------------------------------------------- */

.about-cta {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-dark);
  text-align: center;
}

.about-cta__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.about-cta__text {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* -------------------------------------------------------------------------
   Responsive Styles
   ------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .about-hero__content {
    text-align: center;
    max-width: none;
    margin-bottom: var(--space-3xl);
  }

  .about-hero__image::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero__title {
    font-size: var(--fs-h1);
  }

  .stat-item__number {
    font-size: 36px;
  }

  .team-card__image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: var(--fs-h2);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .certifications-grid {
    gap: var(--space-xl);
  }

  .certification-item__icon {
    width: 60px;
    height: 60px;
  }

  .certification-item__icon i {
    font-size: 24px;
  }
}
