/* ========================= */
/* HERO */
/* ========================= */

.about-hero {
  height: 60vh;
  background: url('../assets/images/rice.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(27,94,32,0.9),
    rgba(0,0,0,0.6)
  );
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.about-hero p {
  margin-top: 10px;
  color: #e5e7eb;
}

/* ========================= */
/* ABOUT CONTENT */
/* ========================= */

.about-content {
  padding: 100px 0;
  max-width: 900px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #475569;
  font-size: 1rem;
}

.about-content strong {
  color: var(--green-main);
}

/* ========================= */
/* SECTION HEADINGS */
/* ========================= */

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #64748b;
}

/* ========================= */
/* MISSION (APPLE STYLE) */
/* ========================= */

.mission {
  padding: 100px 0;
  background: #f8fafc;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: left;
  transition: 0.4s ease;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.mission-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.mission-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mission-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* ========================= */
/* GLOBAL (UPGRADED) */
/* ========================= */

.global {
  padding: 80px 0;
  text-align: center;
  max-width: 900px;
}

.global-text {
  color: #64748b;
  margin-bottom: 30px;
}

/* chips container */
.country-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* chip style */
.chip {
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
  cursor: default;
}

/* hover */
.chip:hover {
  background: var(--green-soft);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ========================= */
/* CTA */
/* ========================= */

.about-cta {
  position: relative;
  margin: 60px auto -70px;
  z-index: 5;

  width: 90%;
  max-width: 1200px;

  border-radius: 20px;
  overflow: hidden;

  padding: 80px 20px;
  text-align: center;

  background: url('../assets/images/chocolate cake.jpeg') center/cover no-repeat;

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(27,94,32,0.75),
    rgba(15,23,42,0.6)
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
}

.cta-content h2 {
  color: white;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-content p {
  color: #f1f5f9;
  margin-bottom: 20px;
}

.about-cta .btn-primary {
  background: var(--red-main);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.about-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(198,40,40,0.45);
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 80px rgba(255,255,255,0.05);
}

/* ========================= */
/* SCROLL ANIMATION */
/* ========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.mission-card:nth-child(1) { transition-delay: 0.1s; }
.mission-card:nth-child(2) { transition-delay: 0.2s; }
.mission-card:nth-child(3) { transition-delay: 0.3s; }
.mission-card:nth-child(4) { transition-delay: 0.4s; }
.mission-card:nth-child(5) { transition-delay: 0.5s; }
.mission-card:nth-child(6) { transition-delay: 0.6s; }

/* ========================= */
/* FOOTER SPACING */
/* ========================= */

.footer {
  margin-top: 100px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-content {
    padding: 60px 20px;
  }

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

  .about-cta {
    width: 95%;
    padding: 60px 15px;
    border-radius: 16px;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }
}