/* ----------------HOME PAGE--------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent-50);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .hero {
    min-height: 90vh;
  }
}

.hero h1 {
  color: var(--primary-500);
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-buttons {
  margin: 2rem 1rem; 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  font-size: 1rem;       /* consistent button text size */
  padding: 0.75em 1.5em; /* relative to font-size (em = perfect here) */
  margin: 0.5rem;        /* layout spacing stays consistent */
  border-radius: var(--radius);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Chained classes (class="btn secondary") (clean, modular) */
.btn.primary {
  background-color: var(--primary-500);
  color: var(--background);

}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
}
/* SERVICES SECTION */
.services {
  padding: 5rem 2rem;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.services h2 {
  text-align: center;
  color: var(--primary-500);
  font-size: 2rem;
  font-weight: 600;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 2rem;
  background: var(--accent-50);
  border-radius: var(--radius, 1rem);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-100);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-700);
}

.service-card p {
  font-size: 1rem;
  color: var(--text);
}

/* STATS SECTION */
.stats {
  padding: 3rem 2rem;
  background-color: var(--primary-800);
  color: white;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 0  2rem 2rem 2rem;
}

.stats h2 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.stats li {
  background-color: var(--primary-700);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stats li:hover {
  transform: translateY(-5px);
}

.label {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.value {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
}
