/* ========================================
   MISSION SECTION — MODERN VERSION
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --orange-dark: #d16608;
  --orange: #CF721F;
  --orange-light: #F0BD84;
  --green: #6D902D;
  --green-light: #BCDD62;
  --cream: white;
  --dark: #2D2A26;
  --sand: #E8E2D6;
  --warm-gray: #8A8279;
  --white: #FFFFFF;
}

/* Hero Header */
.apropos-header {
    position: relative;
    /*background: linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 18%)), url('../images/img.png') center/cover no-repeat;*/
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-top: 95px;
}

.apropos-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(0 0 0 / 45%); */
    z-index: 1;
}

.apropos-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}


/* SECTION */
.mission-section {
  padding: 6rem 1.5rem;
}

/* CONTAINER */
.mission-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mission-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.mission-intro {
  color: var(--warm-gray);
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
}

/* GRID */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.mission-card {
  background: var(--white);
  padding: 30px 25px;
  position: relative;
}

/* hover effect */
.mission-card:hover {
  border-color: var(--orange);
}

/* top accent line */
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 18px 18px 0 0;
}

/* ICON */
.mission-card__icon {
  width: 50px;
  height: 50px;
  color: var(--orange);
  margin-bottom: 20px;
}

/* TITLE */
.mission-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

/* TEXT */
.mission-card__text {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mission-title {
    font-size: 2rem;
  }
}