/* About Page Styles */
.about-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../assets/images/gym-studio5.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #e74c3c;
  margin: 15px auto 0;
}

/* Timeline Styles */
.our-story {
  padding: 60px 0;
  background: #f9f9f9;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: #e74c3c;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  background: #e74c3c;
  color: white;
  padding: 10px 15px;
  position: absolute;
  border-radius: 5px;
  font-weight: bold;
  top: 20px;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -80px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -80px;
}

.timeline-content {
  padding: 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #e74c3c;
}

/* Team Section */
.our-team {
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  padding: 20px;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e74c3c;
  margin-bottom: 20px;
}

.team-role {
  color: #e74c3c;
  font-weight: bold;
  margin: 10px 0;
}

.team-bio {
  font-size: 0.9rem;
}

/* Mission & Values */
.mission-values {
  padding: 60px 0;
  background: #f9f9f9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #e74c3c;
  margin-bottom: 15px;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../assets/images/gym-studio6.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  margin: 60px 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #c0392b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 0;
    right: auto;
  }
  
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
}