/* === Base Font === */
body {
  font-family: 'Quicksand', sans-serif;

/* === About Page Header === */
.about-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.about-header h2 {
  font-size: 36px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.about-header p {
  font-size: 16px;
  color: #dfc7aa;
  margin-top: 10px;
}

/* === Section Styling: Story, Location, Promise === */
.story-section,
.unique-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(92, 58, 39, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(59, 36, 12, 0.15);
  color: #fdf2e9;
  font-family: 'Quicksand', sans-serif;
}

.story-section h3,
.unique-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.story-section p,
.unique-section p {
  font-size: 15px;
  color: #dfc7aa;
  line-height: 1.7;
}

/* === Mission & Vision Cards === */
.mv-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1000px;
}

.mv-card {
  flex: 1 1 300px;
  background: rgba(92, 58, 39, 0.1);
  border-radius: 16px;
  padding: 24px;
  color: #fdf2e9;
  box-shadow: 0 0 12px rgba(59, 36, 12, 0.2);
  font-family: 'Quicksand', sans-serif;
}

.mv-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.mv-card p {
  font-size: 14px;
  color: #dfc7aa;
}

/* === Features Grid === */
.features-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.features-section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(110, 75, 44, 0.12);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fdf2e9;
  box-shadow: 0 0 8px rgba(59, 36, 12, 0.15);
  font-family: 'Quicksand', sans-serif;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.feature-card p {
  font-size: 13px;
  color: #dfc7aa;
}

/* === Team Section === */
.team-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-card {
  width: 220px;
  background: rgba(110, 75, 44, 0.12);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fdf2e9;
  box-shadow: 0 0 8px rgba(59, 36, 12, 0.15);
}

.team-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid #c89c6a;
}

.team-card h4 {
  font-size: 16px;
  color: #c89c6a;
  font-family: 'Merriweather', serif;
}

.team-card p {
  font-size: 13px;
  color: #dfc7aa;
}

/* === Promise Section List === */
.unique-section ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  color: #dfc7aa;
}

.unique-section li {
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}


/* ✨ Entrance Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .mv-card,
  .team-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-header h2 {
    font-size: 28px;
  }

  .team-card h4 {
    font-size: 15px;
  }

  .team-card p,
  .feature-card p {
    font-size: 12px;
  }

  .feature-card h4 {
    font-size: 16px;
  }
}
