/* about.css — imports shared styles, adds about-page specifics */
@import url('index.css');

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Kolbe Feature ── */
.kolbe-feature {
  background: var(--midnight);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}

.kolbe-feature-text {
  padding: 52px 48px;
}

.kolbe-feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.kolbe-feature-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.kolbe-feature-image {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, #1a2f5e, #0d1b3e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kolbe-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  position: absolute;
  inset: 0;
}

.kolbe-feature-image-placeholder {
  font-size: 7rem;
  opacity: 0.25;
  position: relative;
  z-index: 1;
}

.kolbe-crowns {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.crown-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 12px 18px;
}

.crown-badge-icon {
  font-size: 22px;
}

.crown-badge-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.crown-badge-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}

/* ── Membership Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  counter-increment: steps;
}

.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -8px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 10px;
  position: relative;
}

.step-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  position: relative;
}

/* ── Responsive about ── */
@media (max-width: 768px) {
  .kolbe-feature {
    grid-template-columns: 1fr;
  }
  .kolbe-feature-image {
    min-height: 240px;
  }
  .kolbe-feature-text {
    padding: 36px 28px;
  }
}
