/* =============================================
   ABOUT PAGE — about.css
   ============================================= */

/* ---- HERO ---- */
.about-hero {
  min-height: 60vh;
  background-image: url('../images/portrait-content-creator.jpg');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
}
.about-hero-bg-text {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.about-hero-content {
  z-index: 1;
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin: 14px 0 20px;
}
.about-hero-content h1 em { font-style: italic; color: var(--gold); }
.about-hero-sub {
  color: white;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
}

/* ---- MISSION ---- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-visual {
  position: relative;
  height: 380px;
}
.mission-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.mcard {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.mcard-icon { font-size: 1.3rem; }
.mcard-1 { top: 20px;  left: 0;   animation: floatA 3s ease-in-out infinite; }
.mcard-2 { top: 120px; left: 60px; animation: floatB 3.5s ease-in-out infinite; }
.mcard-3 { top: 220px; left: 20px; animation: floatA 4s ease-in-out infinite; }

@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

.mission-circle {
  position: absolute;
  top: 60px; right: 20px;
  width: 130px; height: 130px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.mission-circle span { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.mission-circle strong { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1.2; }

.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin: 12px 0 20px;
}
.mission-text h2 em { font-style: italic; color: var(--gold); }
.mission-text p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }

.mission-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.value-pill {
  padding: 7px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--navy);
  padding: 56px 24px;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
}
.sstat { padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.sstat:last-child { border-right: none; }
.sstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.sstat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- STORY + TIMELINE ---- */
.story-section { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin: 12px 0 20px;
}
.story-text h2 em { font-style: italic; color: var(--gold); }
.story-text p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }

.timeline {
  grid-column: 1 / -1; /* forces full width across both columns */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.tl-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;

  /* added */
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* vertical line */
.tl-item::before {
  content: '';
  position: absolute;
  left: -20px; 
  top: 10px;
  bottom: -32px;
  width: 2px;
  background: var(--border);
}

.tl-item:last-child::before { 
  display: none; 
}

/* dot */
.tl-dot {
  width: 14px; 
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

/* text styles */
.tl-year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}


.tl-content h4 { 
  font-size: 0.95rem; 
  color: var(--navy); 
  margin-bottom: 4px; 
}

.tl-content p  { 
  font-size: 0.85rem; 
  color: var(--gray); 
  line-height: 1.6; 
}

/* last item centered properly */
.timeline .tl-item:last-child {
  grid-column: span 2;
  justify-self: center;
  max-width: 500px;
  width: 100%;
}

/* responsive */
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline .tl-item:last-child {
    grid-column: span 1;
    justify-self: stretch;
    max-width: 100%;
  }
}


/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 12px; }
.team-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-socials a {
  width: 30px; height: 30px;
  background: var(--gray-lt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--gray);
  transition: var(--transition);
}
.team-socials a:hover { background: var(--navy); color: var(--gold); }

.team-avatar {
  width: 250px;   /* increase this */
  height: 250px;  /* increase this */
  margin: 0 auto; /* optional: center it */
  overflow: hidden;
  border-radius: 50%; /* optional: makes it circular */
}


.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* or center */
}



/* ---- VALUES ---- */
.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .sstat { border-right: none; padding: 10px 0; }
}
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-visual { height: 250px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .team-grid   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
}
