@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&family=Nunito:wght@300;400;600&display=swap');

:root {
  --green: #9cc7a5;
  --green-light: #e8f5ec;
  --yellow: #f7d774;
  --yellow-soft: #fff7d1;
  --pink: #f3b7c8;
  --pink-light: #fdeaf1;
  --text-dark: #2e2e2e;
  --text-muted: #555;
  --radius: 16px;
  --shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--green-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* HEADINGS ACCENT LINE */
main h2, h3 {
  position: relative;
  padding-bottom: 0.3rem;
}

main h2::after, h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* HEADER */
.header {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--pink-light);
  border-bottom: 4px solid var(--pink);
}

.header h1 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 2.6rem;
  margin: 0 0 0.3rem 0;
  color: var(--pink);
}

.tagline {
  font-family: 'Nunito', cursive;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  color: var(--text-muted);
}

/* NAV */
.nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--pink-light);
  border-bottom: 3px solid var(--pink);
}

.nav a {
  all: unset;                 /* wipe inherited <a> styles */
  display: inline-block;
  box-sizing: border-box;     /* prevent weird box expansion */
  padding: 0.45rem 0.9rem;
  border-radius: 999px;       /* pill shape */
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;

  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--green-light);

  /* override global link underline/border */
  border-bottom: none !important;
  text-decoration: none !important;

  transition: background 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.15s ease;
}

.nav a:hover {
  background: var(--yellow-soft);
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

  /* ensure hover doesn't add borders */
  border-bottom: none !important;
}

.nav a.active {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
}

/* INTRO */
.intro {
  text-align: center;
  padding: 1rem;
  background: var(--yellow-soft);
  border-top: 2px dashed var(--yellow);
  border-bottom: 2px dashed var(--yellow);
  margin-bottom: 2rem;
  color: var(--text-dark);
}

main a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

main a:hover {
  color: #d97a94; /* deeper pink */
  background: var(--pink-light);
  border-radius: 4px;
  padding: 0.1rem 0.2rem;
}


/* LIST BULLETS */
ul li::marker {
  color: var(--green);
}

/* FOOTER */
.footer {
  background: var(--green-light);
  border-top: 4px solid var(--green);
  padding: 1.2rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-heading {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.6rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--yellow);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-contact li {
  margin: 0.3rem 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .price-item {
    flex-direction: column;
  }
  .price-badge {
    width: 65px;
    height: 65px;
    font-size: 1.2rem;
  }
}

.hero {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  background: var(--pink-light);
  border-left: 6px solid var(--pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero h1 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 2.4rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0.6rem 0;
}
.features {
  max-width: 1100px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--green);
  text-align: center;
}

.feature-card h3 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}
.home-cta {
  text-align: center;
  margin: 2.5rem 0;
}

.home-cta a {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: var(--yellow);
  color: #fff;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.home-cta a:hover {
  background: var(--yellow-soft);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
