/* ===== ABOUT US PAGE ===== */

/* About page wrapper - remove default padding */
body.page-template-about-us .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* Hero Section - full width background */
.about-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gb-white);
}

.about-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Main Content Section */
.about-content {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.about-content-inner {
  text-align: center;
}

.about-image {
  margin-bottom: 2rem;
}

.about-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gb-text);
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Timeline Section - full width background */
.about-timeline {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.timeline {
  position: relative;
  padding-left: 60px;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gb-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  width: 40px;
  height: 40px;
  background: var(--gb-white);
  border: 2px solid var(--gb-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-icon {
  font-size: 1.25rem;
}

.timeline-content {
  background: var(--gb-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-decade {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 0.25rem;
}

.timeline-era {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gb-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.timeline-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
}

.timeline-text p {
  margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-hero .hero-intro {
    font-size: 1rem;
  }

  .about-content,
  .about-timeline {
    padding: 3rem 1.5rem;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-marker {
    left: -50px;
    width: 30px;
    height: 30px;
  }

  .timeline-icon {
    font-size: 1rem;
  }
}
