/* ================================
   DESIGN TOKENS
   ================================= */

:root {
  --color-primary: #5c9a2a;
  --color-secondary: #3f6330;
  --color-accent: #ff7f50;
  --color-surface-dark: #477c30;
  --color-surface-light: #ffffff;
  --color-primary-text: #2b2b2b;
  --color-secondary-text: #6b6b6b;
  --color-neutral: #f4efe6;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xl2: 4rem;
}

/* ================================
   ABOUT HERO SECTION
   ================================= */

#about-hero {
  text-align: center;
  min-height: 30vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/site/grass-bg.jpg");
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-hero h1 {
  color: var(--color-neutral);
}

.about__who-we-are {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__who-we-are img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
}

.about__local-team {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__local-team img {
  width: 100%;
  height: 505.9px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
}

#why-us {
  background: var(--color-primary);
}

#why-us h2,
#why-us p {
  color: var(--color-neutral);
}

.trust__item-about {
  padding: 1rem;
  background: var(--color-surface-dark);
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
  height: auto;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc(33% - 20px);
  gap: 1rem;
}

.trust__item-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.trust__item-about-img {
  padding-top: 1.3rem;
}

.trust__item-about img {
  width: 13%;
  height: auto;
}

.trust__item-about h3 {
  color: var(--color-neutral);
}

.trust__item-about-content {
  padding-top: 1rem;
  color: var(--color-neutral);
}

/* Desktops and larger screens */
@media (min-width: 801px) {
  .hero__container {
    max-width: 700px;
  }

  .about__who-we-are {
    flex-direction: row;
    align-items: center;
  }

  .about__content .about__img {
    flex: 1;
  }

  .about__local-team {
    flex-direction: row-reverse;
    align-items: center;
  }

  .about__local-team img {
    width: auto;
  }

  .about__who-we-are .about__content {
    padding-right: 5rem;
  }

  .about__local-team .about__content {
    padding-left: 5rem;
  }
}
