/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* About Hero */
.about-hero {
  background: linear-gradient(#0f172aa3, #0f172aad), url('https://images.pexels.com/photos/14788933/pexels-photo-14788933.jpeg?auto=compress&cs=tinysrgb&w=1600&lazy=load') no-repeat center center/cover fixed;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 2rem;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1.742);

}

.about-hero h1 span {
  color: var(--clr-accent);
}

.about-hero p {
  font-size: 1.2rem;
  color: white;
}

/* Story Section */
.story-section {
  padding: 5rem 2rem;
  background: var(--clr-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.story-content h2 span {
  color: var(--clr-accent);
}

.story-content p {
  color: black;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.image-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 0.5rem;
}

/* ============================================== */
/* Mission Section */
/* ============================================== */
.mission-section {
  padding: 4rem 2rem;
  object-fit: cover;
  background: linear-gradient(#0f172a, #0f172aca), url('/images/hero-bg.gif') no-repeat center center/cover;
}

.mission-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}

.mission-icon i {
  font-size: 3.5rem;
  color: var(--clr-accent);
}

.mission-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.mission-content h2 span {
  color: var(--clr-accent);
}

.mission-content p {
  color: var(--clr-accent-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================== */
/* Values Section */
/* ============================================== */
.values-section {
  padding: 5rem 2rem;
  background: var(--clr-white);
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.values-section h2 span {
  color: var(--clr-accent);
}

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

.value-card {
  background: var(--clr-bg);
  padding: 2rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid var(--clr-border);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 38, 211, 0.3);
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

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

/* ============================================== */
/* Belief Section */
/* ============================================== */
.belief-section {
  padding: 4rem 2rem;
  background: var(--clr-accent-light);
}

.belief-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.belief-card i {
  font-size: 2.5rem;
  color: var(--clr-accent);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.belief-card p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.5;
}

.belief-author {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: 1rem;
}

/* ============================================== */
/* Promise Section */
/* ============================================== */
.promise-section {
  padding: 5rem 2rem;
  background: var(--clr-white);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.promise-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.promise-content h2 span {
  color: var(--clr-accent);
}

.promise-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.promise-content ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text);
}

.promise-content ul li i {
  color: var(--clr-accent);
}

.promise-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient( 135deg, var(--clr-accent) 0%, var(--clr-accent-dim) 50%);
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: white;
}

.cta-section .btn {
  background: white;
  color: var(--clr-accent);
  transition: all 0.3s ease;
  border: none;
}

.cta-section .btn:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .story-grid,
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .belief-card p {
    font-size: 1.1rem;
  }

  .mission-grid {
    flex-direction: column;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

}
/* ============================================================ */
/* Fix for navbar white links - ensures contrast */
/* ============================================================ */
/* This overrides the default navbar styles to ensure links are visible on the About page's light background */
.about-nav a {
  color: rgba(3, 2, 3, 0.745);
}


/* Ensure the logo text is visible on the About page */
  .navbar .logo-text{
    display: inline;
    color: rgba(3, 2, 3, 0.745);
  }
