/* About Page Specific Styles */

.about-hero {
  background: linear-gradient(135deg, #690500, #690500);
  color: var(--white);
  padding: 10rem 0 6rem;
  margin-top: 7.5rem;
  text-align: center;
}

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

.about-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 48rem;
  margin: 0 auto;
}

.about-story-section {
  background-color: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.about-story-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--primary-red);
  border-radius: 1rem;
  z-index: -1;
}

.about-story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.about-story-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background-color: rgba(105, 5, 0, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
}

.stat-box-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-box-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Founder Section */
.founder-section {
  background-color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.founder-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(105, 5, 0, 0.1);
  color: var(--primary-red);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.25rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-bio {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.founder-image-container {
  width: 100%;
  height: 28rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: var(--gray-100);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.founder-image-container:hover .founder-img {
  transform: scale(1.05);
}

/* Founder section icons removed as they are no longer needed */

/* Timeline Section */
.timeline-section {
  background-color: #FFF9EF;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
}

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

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  min-width: 6rem;
  text-align: center;
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Mission & Vision */
.mission-vision-section {
  background-color: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: var(--primary-red);
  padding: 2.5rem;
  border-radius: 1rem;
  color: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--accent-yellow);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.mission-vision-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-red);
}

.mission-card h3,
.vision-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background-color: #FFF9EF;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(105, 5, 0, 0.1);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--primary-red);
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-red);
  transition: color 0.3s ease;
}

.value-card:hover .value-icon svg {
  color: var(--white);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--primary-red);
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

  .timeline-item {
    padding-left: 0;
    padding-top: 3.5rem;
  }

  .timeline-year {
    left: 0;
    right: auto;
  }
}