/* /assets/css/about.css
 * Styling for /templates/about.php (Our Story section)
 * - Timeline, avatars, headings, responsive containers
 * - Brand colors: #78A1BB (blue), #391047 (deep purple), #E1B929 (gold), #292727 (charcoal), #2180A2 (teal)
 */

/* Container & Section Layout */
.about-section {
  padding: 48px 0 64px 0;
  background: #f8fafc;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.6rem;
  color: #391047;
  margin-bottom: 0.7em;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.section-subtitle,
.timeline-title {
  font-size: 1.5rem;
  color: #2180A2;
  margin-top: 2.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: -1px;
}

/* Intro & Paragraphs */
.about-intro p,
.about-philosophy p,
.about-experience p,
.about-cta p,
.about-content p {
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 1.3em;
  color: #292727;
}

.about-experience ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 1em;
  color: #391047;
  font-size: 1.08rem;
}

/* Timeline Styles */
.about-timeline {
  border-left: 3px solid #E1B929;
  margin: 2em 0 3em 2em;
  padding-left: 20px;
  position: relative;
}

.timeline-event {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5em;
  position: relative;
}

.timeline-event:last-child {
  margin-bottom: 0;
}

/* Avatars */
.timeline-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(56, 56, 56, 0.09);
  border: 2.5px solid #78A1BB;
  margin-right: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-avatar img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Timeline Content */
.timeline-content h3 {
  font-size: 1.18rem;
  margin-bottom: 0.3em;
  color: #391047;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.timeline-content p {
  font-size: 1.02rem;
  margin-bottom: 0;
  color: #292727;
}

/* Responsive Design */
@media (max-width: 700px) {
  .about-section .container {
    padding: 0 10px;
  }
  .about-timeline {
    margin-left: 0.7em;
    padding-left: 12px;
  }
  .timeline-event {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 0.4em;
    margin-right: 0;
  }
  .timeline-avatar img {
    width: 50px;
    height: 50px;
  }
  .timeline-content h3 {
    font-size: 1.05rem;
  }
}

/* Section Emphasis */
.about-section strong {
  color: #2180A2;
  font-weight: 700;
}

.about-section em {
  color: #391047;
  font-style: italic;
  font-size: 1.08em;
}
