:root {
  --primary: #005f73;
  --secondary: #0a9396;
  --accent: #bde6fa;
  --light-bg: #348cb6;
  --text: #222;
}
a {
  color: var(--light-bg);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
}

.top-logo-bar {
  background: white;
  padding: 1rem;
  text-align: center;
  border-bottom: 5px solid var(--light-bg);
}

.top-logo-bar img {
  max-width: 180px;
}

.hero {
  background: url('beach-bg.jpg') no-repeat center 40%;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 0;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.section-icon::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 6rem;
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--primary);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  animation: fadeInIcon 1.5s ease-out;
  margin-left: 0.5rem;
}

.why-icon::after    { content: "\f0eb"; }
.stats-icon::after  { content: "\f201"; }
.scope-icon::after  { content: "\f0f1"; }
.issue-icon::after  { content: "\f071"; }
.define-icon::after { content: "\f05a"; }
.change-icon::after { content: "\f062"; }
.cta-icon::after    { content: "\f075"; }

section ul {
  padding-left: 1.25rem;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.infographic-item {
  background: linear-gradient(to right, #eef6f8, #fff);
  border-left: 5px solid var(--primary);
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-style: italic;
}

.infographic-item::before {
  content: "\f10e";
  font: var(--fa-font-solid);
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.infographic-item h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.infographic-item strong {
  font-style: normal;
}

.call-to-action {
  background: var(--accent);
  padding: 1.5rem;
  border-left: 5px solid var(--primary);
}

.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.team-logos,
.supporter-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  border-radius: 50%;
}

.supporter-logos img {
  max-height: 60px;
}

/* CTA Toggle */
.cta-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cta-toggle i {
  transition: transform 0.3s ease;
}

.cta-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.cta-collapsible {
  margin-top: 1rem;
}

/* Downloads */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 80%;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.12rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn i {
  font-size: 1.5rem;
}

.download-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

/* Navigation */
.main-nav {
  background: #fff;
  border-bottom: 2px solid var(--light-bg);
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 10;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
  list-style: none;
  padding: 0;
}

.nav-links.show {
  display: flex;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
}

.nav-links a i {
  font-size: 0.85rem;
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem;
  border-radius: 50%;
  font-size: 1.25rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
  display: flex;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInIcon {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 0.05; transform: scale(1); }
}

/* Mobile */
@media (max-width: 600px) {
  .section-icon::after {
    font-size: 3rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .download-buttons {
    flex-direction: column;
  }
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.logo-card {
  width: calc(33.333% - 1rem);
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.logo-card img.headshot {
  width: 100%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  margin-bottom: 0.75rem;
}


/* 2 across on phones */
@media (max-width: 768px) {
  .logo-card {
    width: calc(50% - 0.5rem);
  }
}


/* Desktop */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
  }

  .nav-links li {
    display: inline-flex;
    align-items: center;
  }

  .nav-links li:not(:last-child)::after {
    content: "|";
    margin: 0 0.75rem;
    color: var(--primary);
    opacity: 0.6;
    font-weight: normal;
  }

  .nav-links a i {
    display: none;
  }
}


.hidden {
  display: none
}
