/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
  text-align: center;
  padding: 30px 0 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.about-subtitle {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.about-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

/* About Image Section */
.about-image-section {
  padding: 32px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

/* About Content */
.about-content {
  padding: 32px 0;
}

.about-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-content p:nth-child(1) {
  animation-delay: 1s;
}

.about-content p:nth-child(2) {
  animation-delay: 1.2s;
}

.about-content p:nth-child(3) {
  animation-delay: 1.4s;
  margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
  padding: 48px 0 80px;
}

.timeline-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.6s;
}

.timeline {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 1.8s;
}

.timeline-item:nth-child(2) {
  animation-delay: 2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 2.2s;
}

.timeline-item:nth-child(4) {
  animation-delay: 2.4s;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Glowing dot on last item (2025 — Now) - inline with date */
.timeline-item:last-child .timeline-date::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--orange), 0 0 12px var(--orange);
  animation: glowPulseTimeline 2s ease-in-out infinite;
}

@keyframes glowPulseTimeline {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 8px var(--orange), 0 0 12px var(--orange);
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    box-shadow: 0 0 12px var(--orange), 0 0 16px var(--orange);
    transform: scale(1.1);
  }
}

/* Timeline content */
.timeline-content {
  padding-top: 5px;
}

.timeline-date {
  font-size: 13px;
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.4;
}

.timeline-description {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .timeline {
    max-width: 100%;
  }
}

/* Credit text styling */
.site-credit {
  text-align: center;
  font-size: 11.5px;
  color: var(--grey);
  margin: 30px 0 80px;
}

.site-credit a {
  color: var(--orange);
  text-decoration: none;
}
