/* About Page Styles */
:root {
  --brand-green: #2ecc71;
  --brand-black: #000000;
  --brand-white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
}

/* Hero Section */
.about-page .about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../../images/about/hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--brand-white);
  text-align: center;
  padding: 10rem 0 6rem;
  position: relative;
}

.about-page .hero-title span {
  color: var(--brand-green);
}

/* Quote Section */
.quote-section {
  background-color: var(--brand-green);
  padding: 4rem 0;
  color: var(--brand-white);
}

.quote-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.quote-card blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-card footer {
  font-size: 1.1rem;
  font-weight: 600;
}

.quote-card cite {
  font-style: normal;
  font-weight: 400;
  opacity: 0.9;
}

/* Our Story Section */
.our-story {
  padding: 6rem 0;
  background-color: var(--light-gray);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.story-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--brand-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
}

.story-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--brand-black);
}

.story-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Values Section */
.values {
  padding: 6rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--brand-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--brand-green);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Coaches Section */
.coaches {
  padding: 6rem 0;
  background-color: var(--light-gray);
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coach-card {
  background: var(--brand-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coach-image {
  height: 250px;
  overflow: hidden;
}

.coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coach-card:hover .coach-image img {
  transform: scale(1.05);
}

.coach-info {
  padding: 1.5rem;
}

.coach-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.coach-title {
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coach-bio {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
  }

  .story-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .quote-card blockquote {
    font-size: 1.3rem;
  }

  .our-story,
  .values,
  .coaches {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  .quote-card {
    padding: 1.5rem;
  }

  .quote-card blockquote {
    font-size: 1.1rem;
  }

  .quote-card footer {
    font-size: 1rem;
  }
}
