/* ========================
   ABOUT PAGE STYLES
   ======================== */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.page-hero__title {
  font-size: var(--fs-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-white);
}

.page-hero__breadcrumb span {
  color: var(--color-gold);
}

/* ---------- Our Story ---------- */
.story-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-10);
}

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

.story-row__image {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-row__content h3 {
  margin-bottom: var(--space-4);
}

.story-row__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--color-gold);
  opacity: 0.3;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

/* ---------- Mission & Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.mv-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.mv-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 2rem;
}

.mv-card--mission .mv-card__icon {
  background: rgba(212, 168, 67, 0.12);
}

.mv-card--vision .mv-card__icon {
  background: rgba(212, 168, 67, 0.08);
}

.mv-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}

.mv-card__text {
  font-size: var(--fs-md);
  color: var(--color-gray-600);
  line-height: var(--lh-loose);
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.why-card {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-card__icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.8rem;
  background: var(--gradient-primary);
  color: var(--color-white);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.why-card__text {
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-4);
  border: 4px solid var(--color-gray-100);
  transition: border-color var(--transition-normal);
}

.team-card:hover .team-card__photo {
  border-color: var(--color-gold);
}

.team-card__photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  border: 4px solid transparent;
  transition: border-color var(--transition-normal);
}

.team-card:hover .team-card__photo-placeholder {
  border-color: var(--color-gold);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--fs-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

.team-card__social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.team-card__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  transition: all var(--transition-fast);
}

.team-card__social-link:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.team-card__social-link svg {
  width: 16px;
  height: 16px;
}
