/* LittleCoo / Curiosity Bit LLC — shared site styles */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Nunito:wght@400;600;700&display=swap');

:root {
  --green: #5E9E78;
  --green-light: #F2FAF5;
  --text: #2C2C2C;
  --text-secondary: #666;
  --border: #E0E0E0;
  --max-width: 820px;
  --font: "SF Pro Rounded", "SF Pro Text", 'Varela Round', 'Nunito', -apple-system, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--green-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  text-decoration: none;
}
nav .brand .brand-leaf {
  width: 24px;
  height: 24px;
}
nav .links { display: flex; gap: 20px; flex-wrap: wrap; }
nav .links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
nav .links a:hover, nav .links a.active { color: var(--green); }

/* ---- MAIN ---- */
main {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 24px;
}

/* ---- HOME HERO ---- */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}
.hero .hero-leaf {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 12px;
}
.hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- CONTENT (legal pages, etc.) ---- */
.content {
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.content h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
}
.content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 22px;
  margin-bottom: 8px;
}
.content p, .content li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}
.content ul, .content ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
.content strong { font-weight: 600; }
.content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.content th, .content td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.content th {
  background: var(--green-light);
  font-weight: 600;
}
.content a { color: var(--green); }

/* ---- FOOTER ---- */
footer {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}
footer a { color: var(--green); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links { margin-bottom: 8px; }
.footer-links a { margin: 0 10px; }

/* ---- CALLBACK SUCCESS ---- */
.success-box {
  text-align: center;
  padding: 80px 24px;
}
.success-box .icon {
  font-size: 64px;
  margin-bottom: 20px;
}
.success-box h1 {
  color: var(--green);
  margin-bottom: 12px;
}
.success-box p {
  color: var(--text-secondary);
  font-size: 17px;
}

/* ---- REVIEWS ---- */
.reviews-section {
  margin-top: 28px;
}
.reviews-heading {
  text-align: center;
  font-size: 18px !important;
  color: var(--green) !important;
  margin-bottom: 20px !important;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--green-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.review-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-quote {
  font-size: 14px !important;
  font-style: italic;
  color: var(--text) !important;
  line-height: 1.5;
  margin-bottom: 12px !important;
}
.review-author {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  font-weight: 600;
  margin-bottom: 0 !important;
}
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .content { padding: 28px 20px; }
  .hero h1 { font-size: 26px; }
  nav .links { gap: 14px; }
}
