/* Voices Beyond Walls - basic styling */
:root {
  --green: #2f8b2f;
  --dark: #111111;
  --light: #f5f5f5;
  --max-width: 1100px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222222;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.light-bg {
  background: var(--light);
}

.section-subtitle {
  margin-top: 0.75rem;
  max-width: 650px;
}

/* Header / Nav */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #333;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.btn-nav {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
}

/* Mobile nav button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #0b0b0b, #222222);
  color: #ffffff;
  padding: 4rem 0 4.5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image .hero-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.primary {
  background: var(--green);
  color: #ffffff;
}

.secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section .secondary {
  color: var(--green);
  border-color: var(--green);
}

/* Headings */
.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section h3 {
  margin-bottom: 0.6rem;
}

/* Grid & cards */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.bullet-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Pricing */
.price-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.5rem 0 0.8rem;
}

.price-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
}

.price-card li {
  margin-bottom: 0.35rem;
}

/* Links */
.link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* Section CTA */
.section-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem;
  border-radius: 0.75rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Testimonials */
.name {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: #444;
}

/* Contact */
.contact-details p {
  margin-bottom: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
  font-family: inherit;
}

/* Donate */
.donate-section {
  background: #0b0b0b;
  color: #ffffff;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #111111;
  color: #dddddd;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 1.75rem;
  padding-bottom: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.6rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.3rem;
}

.site-footer a {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 0.8rem 1rem 1.2rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 1.25rem;
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 3.25rem;
  }
}
