/* =====================================
   HOME
===================================== */


/* ========= HERO ========= */

.hero {
  height: 87vh;
  background-color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.hero-content h1 {
  font-family: var(--font-secondary);
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 10px;
}


/* ========= SERVICES ========= */

.services {
  display: flex;
  justify-content: space-between;
  padding: 120px 80px 60px;
  background-color: var(--color-surface);
  gap: 40px;
}

.service {
  flex: 1;
}

.service h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 340px;
}


/* ========= RESPONSIVE ========= */

@media (max-width: 768px) {

  .services {
    flex-direction: column;
    padding: 40px 30px;
  }

  .service {
    margin-bottom: 20px;
  }

}