/* public/css/about.css */

.about-container {
  font-family: sans-serif;
  color: #2d2d2d;
}

.about-hero {
  position: relative;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.about-join-btn {
  background-color: #db2777;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.about-join-btn:hover {
  background-color: #ec4899;
}

.about-mission {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}

.about-mission-content h2 {
  font-size: 2rem;
  color: #db2777;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-mission-content p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 1rem;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 5rem;
  }
}

.about-story-image {
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  object-fit: cover;
  width: 100%;
  height: 20rem;
}

.about-story-text h2 {
  font-size: 2rem;
  color: #db2777;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-story-text p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-values {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}

.about-values-header h2 {
  font-size: 2rem;
  color: #db2777;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-values-header p {
  max-width: 750px;
  margin: 0 auto 2rem auto;
  color: #4b5563;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-value-card {
  background: #fce7f3;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.about-value-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-value-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.about-value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #db2777;
  margin-bottom: 0.5rem;
}

.about-value-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.about-cta {
  padding: 4rem 1rem;
  background: #db2777;
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-cta p {
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}

.about-cta-btn {
  background-color: #facc15;
  color: #1f2937;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.about-cta-btn:hover {
  background-color: #fde68a;
}

.about-footer {
  padding: 1.5rem 1rem;
  background: #111827;
  color: #d1d5db;
  text-align: center;
}