@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lora:ital,wght@0,400;0,700;1,400&display=swap");
:root {
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --secondary-color: #fdd835;
  --accent-color: #558b2f;
  --text-color: #2d3436;
  --text-muted: #636e72;
  --bg-color: #ffffff;
  --soft-cream: #fbfaf7;
  --light-border: #e8e6e1;
  --footer-bg: #1a1a1a;
  --footer-text: #e0e0e0;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Lora", serif;
  --transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-main);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
/* Typography Standards */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: #1a1a1a;
  line-height: 1.2;
}
h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
}
/* Header and Nav */
header {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--light-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.logo img {
  height: 70px;
  transition: var(--transition);
}
.logo img:hover {
  transform: scale(1.02);
}
nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-color);
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}
nav a:hover {
  color: var(--primary-color);
}
nav a[aria-current="page"] {
  color: var(--primary-color);
}
nav a[aria-current="page"]::after {
  width: 100%;
}
nav a:hover::after {
  width: 100%;
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* Sections and Spacing */
section {
  padding: 6rem 5%;
  overflow: hidden;
}
.hero {
  height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../assets/images/hero-group.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: -1;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-main);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}
.btn:active {
  transform: scale(0.97);
}
.btn-full {
  width: 100%;
  border: none;
}
.btn-talent-test {
  max-width: 300px;
  margin: 0 auto;
  display: block;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: stretch;
}
.grid-2col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.align-center {
  align-items: center;
}
.card {
  background: var(--soft-cream);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--light-border);
  transition: var(--transition);
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}
.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
/* Form Styles */
.contact-form {
  max-width: 750px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
}
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  font-family: var(--font-main);
  transition: var(--transition);
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}
/* Footer */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem 5%;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 4rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
/* Utility Classes */
.text-center {
  text-align: center;
}
.section-desc {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.section-desc-small {
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--text-muted);
}
.img-modern {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.img-round {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.mt-2 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.opacity-7 {
  opacity: 0.7;
}
.form-status {
  margin-top: 1.5rem;
  display: none;
  text-align: center;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
}
.bg-cream {
  background: var(--soft-cream);
}
.bg-white {
  background: #fff;
}
/* Hero Variant */
.hero-simple {
  min-height: 70vh;
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-simple::before {
  filter: none;
  transform: none;
}
/* Evidence / Citation Styles */
.citation-card {
  background: var(--bg-color);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.citation-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}
.citation-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.citation-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.citation-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.citation-source {
  margin-top: 1rem;
  font-size: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-border);
}
.citation-source a {
  color: var(--primary-color);
  font-weight: 600;
}
.citation-source a:hover {
  text-decoration: underline;
}
/* Team Cards (About page) */
.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.board-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--bg-color);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  width: 100%;
}
.team-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}
.team-card img,
.team-card .person-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--soft-cream);
}
.team-card .person-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-cream);
  font-size: 3rem;
  color: var(--text-muted);
  border-color: var(--light-border);
}
.team-card h3 {
  margin-bottom: 0.25rem;
}
.team-card .role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.team-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.board-card {
  background: var(--bg-color);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  width: 180px;
}
.board-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}
.board-card .person-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--soft-cream);
  font-size: 2rem;
  color: var(--text-muted);
  border: 4px solid var(--light-border);
}
.board-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.board-card .role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* Support Reasons Grid (Donate page) */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.reason-card {
  background: var(--soft-cream);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}
.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}
.reason-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-main);
}
.reason-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
/* Narrow Container */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}
/* Icon Grid (Trio section) */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.icon-grid-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  background: var(--bg-color);
  transition: var(--transition);
}
.icon-grid-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.icon-grid-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}
.icon-grid-item h3 {
  margin-bottom: 0.75rem;
}
.icon-grid-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
/* Partner Badge */
.partner-badge {
  display: inline-block;
  background: var(--soft-cream);
  border-radius: 16px;
  padding: 2rem;
  margin: 1rem 0;
  border: 1px solid var(--light-border);
  text-align: left;
}
.partner-badge p {
  font-size: 1rem;
  line-height: 1.7;
}
/* Story Section */
.story-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.story-section .story-image {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
}
.story-section .story-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.story-section .story-text {
  flex: 1;
}
@media (max-width: 768px) {
  .story-section {
    flex-direction: column;
  }
  .story-section .story-image {
    flex: 0 0 100%;
    width: 100%;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-simple {
    min-height: 50vh;
  }
}
/* Nav Admin Link */
.nav-admin {
  opacity: 0.6;
  font-size: 0.8rem;
}
/* Social Links Row */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
/* Grid Variants */
.grid-mt-3 {
  margin-top: 3rem;
}
.grid-impact {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
/* New Utility Classes */
.accent-box {
  background: rgba(46, 125, 50, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  border-left: 4px solid var(--primary-color);
}
.quote-text {
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
}
.lead-text {
  font-size: 1.1rem;
}
.small-text {
  font-size: 0.9rem;
}
.clean-list {
  list-style: none;
  text-align: left;
}
.text-primary {
  color: var(--primary-color);
}
.text-uppercase {
  text-transform: uppercase;
}
.ls-1 {
  letter-spacing: 1px;
}
.font-bold {
  font-weight: 700;
}
/* Page Headers */
.page-header {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 6rem 5%;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
/* Responsive Overrides */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  section {
    padding: 4rem 5%;
  }
  .hero {
    height: 60vh;
    padding: 0 5%;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .page-header {
    padding: 4rem 5%;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  .page-header p {
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .logo img {
    height: 50px;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    padding: 6rem 5%;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  nav a {
    font-size: 1.2rem;
  }
  .card {
    padding: 2rem 1.5rem;
  }
  .grid,
  .icon-grid,
  .reason-grid,
  .grid-2col {
    grid-template-columns: 1fr !important;
  }
  .reason-grid,
  .grid-impact {
    max-width: 100% !important;
  }
  .icon-grid-item {
    padding: 1.5rem 1rem;
  }
  .citation-card {
    padding: 1.5rem;
  }
  .story-section {
    flex-direction: column;
  }
  .story-section .story-image {
    flex: 0 0 100%;
    width: 100%;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .board-grid {
    gap: 1rem;
  }
  .board-card {
    width: 140px;
    padding: 1rem;
  }
  .board-card .person-placeholder {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  .board-card h3 {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }
  .hero {
    height: 50vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .page-header {
    padding: 3rem 5%;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .card {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  .board-card {
    width: 120px;
    padding: 0.75rem;
  }
  .container-narrow {
    padding: 0;
  }
  .img-modern,
  .story-section .story-image {
    border-radius: 12px;
  }
}
