/* ============================================================
   about.css — About Us & Team page styles
   jonsinghlaw.ca
   ============================================================ */


/* ============================
   Page Hero (inner pages)
   ============================ */

.page-hero {
  background: linear-gradient(
    135deg,
    #020F1E 0%,
    var(--color-navy) 60%,
    var(--color-navy-light) 100%
  );
  padding: var(--spacing-3xl) 0;
  border-bottom: 3px solid var(--color-gold);
}

.page-hero-eyebrow {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--spacing-sm);
}

.page-hero-title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

.page-hero-subtitle {
  color: rgba(250, 250, 248, 0.75);
  max-width: 560px;
  margin: 0;
  line-height: var(--line-height-relaxed);
}


/* ============================
   Our Story Section
   ============================ */

.about-story-section {
  background-color: var(--color-white);
}

.about-story-text p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

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

.about-story-text .lead {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

/* Placeholder image block shown until real photo is added */
.about-image-placeholder {
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-primary) 100%
  );
  border-radius: var(--radius-md);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  text-align: center;
  padding: var(--spacing-2xl);
}

.about-image-placeholder .placeholder-icon {
  font-size: 48px;
  opacity: 0.5;
}

/* Real image when available */
.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}


/* ============================
   Values Section
   ============================ */

.values-section {
  background-color: var(--color-light-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-3xl);
}

.value-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-xl);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.value-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(24, 95, 165, 0.2);
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: rgba(24, 95, 165, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.value-text h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
}

.value-text p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================
   Team Section / Team Page
   ============================ */

.team-section {
  background-color: var(--color-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

/* Card overrides for team */
.card-team {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.card-team-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--spacing-lg);
  display: block;
  border: 3px solid var(--color-border);
}

.card-team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-navy), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 36px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-white), 0 0 0 5px var(--color-gold);
}

.card-team-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
}

.card-team-title {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-team-bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  text-align: center;
  margin: 0;
}

.card-team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-top: var(--spacing-md);
}


/* ============================
   About CTA Section
   ============================ */

.about-cta-section {
  background-color: var(--color-navy);
}

.about-cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.about-cta-section p {
  color: rgba(250, 250, 248, 0.78);
  margin-bottom: var(--spacing-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}


/* ============================
   Responsive Overrides
   ============================ */

@media (min-width: 768px) {

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

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

@media (min-width: 1024px) {

  .about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
  }
}
