/* =====================================================
   ABOUT PAGE — Joginder Gymkhana Club
   ===================================================== */

.about-section { padding: 100px 0; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(184,147,58,0.2));
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 3.5rem;
  align-items: center;
}
.tl-item:nth-child(odd) .tl-body  { grid-column: 1; padding-right: 2.5rem; text-align: right; }
.tl-item:nth-child(odd) .tl-empty { grid-column: 3; }
.tl-item:nth-child(even) .tl-body  { grid-column: 3; padding-left: 2.5rem; }
.tl-item:nth-child(even) .tl-empty { grid-column: 1; }
.tl-center { grid-column: 2; display: flex; justify-content: center; align-items: center; }
.tl-dot {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px rgba(184,147,58,0.4);
  z-index: 1;
  flex-shrink: 0;
}
.tl-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all var(--transition);
}
.tl-body:hover { border-color: var(--gold); box-shadow: 0 8px 30px var(--shadow); transform: translateY(-4px); }
.tl-year { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.4rem; }
.tl-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ── ABOUT FACILITIES INLINE LIST ── */
.about-facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-facility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.about-facility-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── CTA SECTION ── */
.about-cta-section { padding: 70px 0; background: var(--maroon-dark); text-align: center; }
.about-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .tl-item:nth-child(odd) .tl-body  { grid-column: 2; padding-right: 0; text-align: left; }
  .tl-item:nth-child(even) .tl-body { grid-column: 2; padding-left: 0; }
  .tl-item:nth-child(odd) .tl-empty,
  .tl-item:nth-child(even) .tl-empty { display: none; }
  .tl-center { grid-column: 1; }
  .about-facilities-grid { grid-template-columns: 1fr; }
}
