/* About Page Specific Styles */

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-text .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.story-text p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 70, 193, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(107, 70, 193, 0.1),
    transparent 30%
  );
  animation: rotate 6s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-card > * {
  position: relative;
  z-index: 1;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.mission-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(107, 70, 193, 0.4);
}

.mission-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.mission-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Team Section */
.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.team-description h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.team-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.team-values {
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.value-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.team-image {
  display: flex;
  justify-content: center;
}

.team-placeholder {
  width: 550px;
  height: 350px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.team-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.team-placeholder:hover {
  transform: scale(1.05);
}

.team-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
}

.team-placeholder p {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  margin-bottom: 2rem;
}

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

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

.timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  border-radius: 50%;
  top: 2.5rem;
  box-shadow: 0 0 20px var(--accent-gold);
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.timeline-content {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.timeline-content p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Commitment Section */
.commitment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.commitment-card {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.8) 0%,
    rgba(55, 65, 81, 0.8) 100%
  );
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 70, 193, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
}

.commitment-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.commitment-card:hover::after {
  opacity: 0.1;
}

.commitment-card > * {
  position: relative;
  z-index: 1;
}

.commitment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.commitment-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
}

.commitment-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.commitment-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes countUp {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-number {
  animation: countUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .story-content,
  .team-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-stats {
    justify-self: center;
    max-width: 400px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 80px;
  }

  .timeline-item::before,
  .timeline-item:nth-child(even)::before {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .mission-grid,
  .commitment-content {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .team-placeholder {
    width: 200px;
    height: 200px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item::before,
  .timeline-item:nth-child(even)::before {
    left: 10px;
  }

  .team-placeholder {
    width: 300px;
    height: 250px;
  }
  .team-description h3 {
    font-size: 1.3rem;
    text-align: center;
  }
}
