/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --charcoal: #2c2c2c;
  --sage: #6a8d73;
  --soft-white: #f9f9f9;
  --accent: #4e6e5d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: var(--soft-white);
  color: var(--charcoal);
  line-height: 1.6;
}

header {
  background-color: var(--charcoal);
  color: var(--soft-white);
  padding: 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav h1 {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  margin-top: 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sage);
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.services ul,
.contact ul {
  list-style: none;
  padding-left: 0;
}

.services li,
.contact li {
  margin-bottom: 0.5rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

footer {
  background-color: var(--charcoal);
  color: var(--soft-white);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 1.25rem;
  }
}

