/* Root variables */
:root {
  --primary-color: #FF91AF;
  --secondary-color: #7D7E75;
  --accent-color: #4F5D2F;
  --background-color: #E4FDE1;
  --text-color: #000000;
  --font-base: 'Atkinson Hyperlegible', sans-serif;
  --font-heading: 'Atkinson Hyperlegible', serif;
}

body {
  font-family: var(--font-base);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
  padding-top: 90px;
  scroll-behavior: smooth;
  margin: 0;
  overflow-x: hidden;
}

.hero-btn {
  display: block;
  margin: 2rem auto;
  background: #f5e2db;
  color: #111;
  padding: 1.5rem 3.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: var(--font-base);
  font-weight: 400;
  box-shadow: none;
  border: none;
  text-align: center;
  transition: none;
}
.hero-btn:hover {
  background: #f5e2db;
  color: #111;
  transform: none;
  box-shadow: none;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-width: 100vw;
  background: #181818;
  color: white;
  padding: 0;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  border-radius: 0;
}
.nav-container {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  box-sizing: border-box;
  height: 90px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}
.logo-img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.0rem;
  position: relative;
  padding: 0;
}
.nav-links a.active {
  color: var(--primary-color);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30;
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active .bar.top {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar.middle {
  opacity: 0;
}
.hamburger.active .bar.bottom {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    height: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    background: #181818;
    position: absolute;
    top: 90px;
    right: 0;
    width: 100vw;
    padding: 2rem 0;
    display: none;
  }
  .nav-links.nav-active {
    display: flex;
  }
  .hamburger {
    display: flex !important;
  }
}
@media (max-width: 600px) {
  .hamburger {
    width: 36px;
    height: 36px;
  }
}
main, .how-i-can-help {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.site-footer {
  background-color: #111;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: white;
  width: 100%;
  box-sizing: border-box;
}
.how-i-can-help {
  background-color: var(--primary-color);
  padding: 0;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.services-two-col {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  min-height: 600px;
}
.services-image-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  background-color: var(--background-color);
  padding: 4rem 3rem 4rem 5rem;
  box-shadow: 0 8px 32px rgba(79,93,47,0.08);
}
.services-image-col h2 {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.services-image-col ul {
  font-size: 1.2rem;
  color: var(--text-color);
  padding-left: 1.5rem;
  line-height: 2;
}
.services-content-col {
  flex: 2;
  background-color: var(--background-color);
  padding: 4rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(79,93,47,0.08);
}
.services-content-col h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  text-align: left;
}
.services-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 2rem;
  margin-top: 1rem;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(79,93,47,0.10);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(79,93,47,0.18);
  transform: translateY(-4px) scale(1.02);
}
.service-icon {
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}
.service-card p {
  font-size: 1.05rem;
  color: var(--text-color);
  margin: 0;
}
@media (max-width: 1100px) {
  .services-two-col {
    flex-direction: column;
    min-height: unset;
  }
  .services-image-col,
  .services-content-col {
    border-radius: 0;
    padding: 2rem 1rem;
    box-shadow: none;
  }
  .services-grid {
    /* grid-template-columns: 1fr; */
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.2rem 1rem;
  }
}
@media (max-width: 900px) {
  .site-header {
    border-radius: 0;
    padding: 1rem 1rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .services-content-col h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-card p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .services-image-col,
  .services-content-col {
    padding: 1rem;
  }
  .services-content-col h2 {
    font-size: 1.5rem;
  }
  .services-grid {
    /* grid-template-columns: 1fr; */
    gap: 1rem;
  }
  .service-card {
    padding: 1rem 0.5rem;
  }
}
