/* About Page Styles */

/* Story Section */

/* Mission Card Styles */
.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 140, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.mission-card h3 {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.mission-card:hover h3 {
  color: var(--accent-color-alt);
}

.mission-card p {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

/* Story Section */
.story {
  padding: 80px 0;
}

.story-content {
  width: 100%;
  margin: 0;
}

.story-content p {
  margin-bottom: 2rem;
  text-align: justify;
}

.story-images {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: space-between;
}

.story-image {
  flex: 1;
  max-width: 32%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .story-images {
    flex-direction: column;
    align-items: center;
  }
  
  .story-image {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}

.story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #228B22;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.story-image:hover {
  transform: scale(1.05);
}

/* CTA Button Styles */
.cta-button-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-read-more {
  background-color: var(--accent-color-alt);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-read-more:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.story-image-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image img,
.story-image-secondary img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover img,
.story-image-secondary:hover img {
  transform: scale(1.05);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image-secondary img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .story-image-secondary img {
    height: auto;
  }
  
  .story-content {
    padding-right: 0;
  }
}

/* Core Values Section */
.values {
  padding: 80px 0;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

/* Value Icons Colors */
.value-card:nth-child(1) .value-icon i { /* Compassion */
  color: var(--accent-color-alt); /* Orange accent */
  font-size: 3rem;
}

.value-card:nth-child(2) .value-icon i { /* Inclusivity */
  color: var(--accent-color); /* Main accent */
  font-size: 3rem;
}

.value-card:nth-child(3) .value-icon i.bi-handshake { /* Collaboration */
  color: var(--accent-color-alt); /* Orange accent */
  font-size: 3rem;
  opacity: 1;
  visibility: visible;
  display: block;
}

.value-card:nth-child(4) .value-icon i { /* Accountability */
  color: var(--accent-color); /* Main accent */
  font-size: 3rem;
}

.value-card:nth-child(5) .value-icon i { /* Agile */
  color: var(--accent-color-alt); /* Orange accent */
  font-size: 3rem;
}

.value-card:nth-child(3) .value-icon i { /* Collaboration */
  color: var(--accent-color-alt); /* Orange accent */
}

.value-card:nth-child(4) .value-icon i { /* Accountability */
  color: var(--accent-color); /* Main accent */
}

/* Mental Health Crisis Section */
.crisis {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.03) 0%, rgba(255, 255, 255, 0.98) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.crisis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 0%,
    rgba(255, 140, 0, 0.03) 25%,
    transparent 50%,
    rgba(255, 140, 0, 0.03) 75%,
    transparent 100%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.crisis-content {
  padding-right: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crisis-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: #47b2e4;
  margin-bottom: 10px;
}

/* Mission Vision Goal Section */
.mission {
  padding: 80px 0;
}

.mission-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .story-content,
  .crisis-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .story-image {
    margin-bottom: 30px;
  }
  
  .crisis-stats {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-content,
.value-card,
.crisis-content,
.stat-item,
.mission-card {
  animation: fadeInUp 0.8s ease-out forwards;
}

.story-image {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.crisis-content {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2,
section h2 {
  color: #000000;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: none;
}

.section-title p,
section h3 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: none;
}

/* Background Colors */
.light-background {
  background-color: #f8f9fa;
}

.accent-background {
  background-color: #47b2e4;
  color: #000000;
}

.dark-background {
  background-color: #000000;
  color: white;
}

/* End of About Page Styles */
}
