
:root {
  --bmg-green: #00A651;
  --bmg-dark-green: #005B33;
  --bmg-orange: #F4A024;
  --white: #ffffff;
  --light-bg: #f4f8f5;
  --text-dark: #1f2933;
}

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

body {
  font-family: Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

.site-header {
  background: var(--white);
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--bmg-green);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:bold;
    color:#42f5b3;
}

.logo img{
    height:50px;
    width:auto;
}

.nav-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

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

.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 80, 40, 0.45)),
  url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--bmg-orange);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin: 8px;
}

.primary {
  background: var(--bmg-green);
  color: var(--white);
}

.secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.intro,
.programs {
  padding: 70px 8%;
  text-align: center;
}

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

.intro h2,
.programs h2 {
  color: var(--bmg-dark-green);
  font-size: 34px;
  margin-bottom: 20px;
}

.intro p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.program-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-top: 5px solid var(--bmg-green);
}

.program-card h3 {
  color: var(--bmg-green);
  margin-bottom: 12px;
}

footer {
  background: var(--bmg-dark-green);
  color: var(--white);
  text-align: center;
  padding: 30px 8%;
}

footer p:first-child {
  color: var(--bmg-orange);
  font-weight: 800;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    text-align: center;
  }

  .nav-menu a {
    display: inline-block;
    margin: 8px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 22px;
  }

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

.logo img {
  height: 42px;
}

.logo span {
  font-size: 18px;
}

.site-header {
  padding: 14px 6%;
}

.nav-menu a {
  font-size: 18px;
  margin: 6px 10px;
}

/* ===== OUR IMPACT ===== */

.impact{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.impact h2{
    font-size:2.5rem;
    color:#006b3c;
    margin-bottom:50px;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.impact-card{
    background:#f8f8f8;
    border-top:6px solid #00A651;
    border-radius:18px;
    padding:30px 20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.impact-card:hover{
    transform:translateY(-8px);
}

.impact-card h3{
    font-size:2.3rem;
    color:#00A651;
    margin-bottom:10px;
}

.impact-card p{
    color:#444;
    font-size:1.1rem;
}

/* ===== ARTICLE HERO ===== */

.article-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 45, 0.55);
  z-index: 1;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 30px;
}

.article-hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-hero-overlay p {
  color: #f4a024;
  font-size: 1.3rem;
  font-weight: 700;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 25px;
  line-height: 1.8;
}

.article-content h2,
.article-content h3 {
  color: #006B3F;
  margin: 25px 0 15px;
}

.article-meta {
  color: #00A651;
  font-weight: 700;
}

.article-gallery {
  padding: 70px 25px;
  background: #f4fbf7;
  text-align: center;
}

.article-gallery h2 {
  color: #006b3f;
  font-size: 2rem;
  margin-bottom: 35px;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .article-hero {
    height: 520px;
  }

  .article-hero-overlay h1 {
    font-size: 2.6rem;
  }

  .article-hero-overlay p {
    font-size: 1.2rem;
  }

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

  .gallery-grid img {
    height: 260px;
  }
}

/* ===== NEWS SECTION ===== */

.news-section {
  padding: 90px 25px;
  background: #f4fbf7;
  text-align: center;
}

.news-section h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #006B3F;
  margin-bottom: 15px;
}

.news-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #263238;
}

.news-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border-top: 7px solid #00A651;
  text-align: left;
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.news-card-content {
  padding: 28px;
}

.news-date {
  color: #F4A024;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h2 {
  color: #006B3F;
  margin: 14px 0;
  font-size: 1.35rem;
}

.news-card p {
  color: #263238;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

/* ===== CONTACT PAGE ===== */

.contact-hero,
.contact-section,
.contact-form-section,
.map-section {
  padding: 70px 8%;
}

.contact-hero {
  text-align: center;
  background: #f4fbf7;
}

.contact-hero h1,
.contact-form-section h2,
.map-section h2 {
  color: #006b3f;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section,
.contact-form-section,
.map-section {
  background: #ffffff;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.contact-card h2,
.contact-form-section h2,
.map-section h2 {
  color: #006b3f;
  margin-bottom: 25px;
}

.contact-card p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links a {
  background: #00a651;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 35px;
  font-weight: 700;
  min-width: 130px;
  text-align: center;
}

.contact-form {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid #cccccc;
  border-radius: 14px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  align-self: center;
  border: none;
  cursor: pointer;
}

.whatsapp-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.map-intro {
  max-width: 700px;
  margin: 0 auto 25px auto;
  text-align: center;
  color: #333;
  font-size: 1.1rem;
}

.map-box {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.map-box iframe {
  width: 100%;
  height: 400px;
  display: block;
}

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

  .contact-hero h1,
  .contact-form-section h2,
  .map-section h2 {
    font-size: 2rem;
  }

  .contact-section,
  .contact-form-section,
  .map-section {
    padding: 50px 8%;
  }

  .contact-form button {
    width: 100%;
  }
}

/* ===== PARTNERS PAGE ===== */

.partners-logo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.partner-logo-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
  border-top: 6px solid #00a651;
}

.partner-logo-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin-bottom: 25px;
}

.partner-logo-card h3 {
  color: #00a651;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.partner-logo-card p {
  margin-top: 8px;
  color: #333;
  font-weight: 600;
}

@media (max-width: 900px) {
  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-card img {
    width: 150px;
    height: 150px;
  }

  .partner-logo-card h3 {
    font-size: 1.25rem;
  }
}

/* ===== ABOUT PAGE ===== */

.about-hero {
  min-height: 65vh;
  background:background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 80, 40, 0.45)),
    url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.about-hero h2 {
  font-size: 2rem;
  color: #f4a024;
  margin-bottom: 15px;
}

.about-hero p,
.about-hero span {
  font-size: 1.3rem;
  font-weight: 700;
}

.about-story,
.values-section,
.what-we-do,
.about-impact,
.about-cta {
  padding: 80px 8%;
  text-align: center;
}

.about-story p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.mission-vision {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  background: #f4fbf7;
}

.mv-card,
.value-card,
.work-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border-top: 6px solid #00a651;
}

.mv-card h2,
.values-section h2,
.what-we-do h2,
.about-impact h2 {
  color: #006b3f;
}

.values-grid,
.work-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  font-size: 2rem;
}

.value-card h3,
.work-card h3 {
  font-size: 1.2rem;
  color: #00a651;
  margin-top: 15px;
}

.work-card p {
  line-height: 1.6;
}

.about-cta {
  background: #ffffff;
}

.about-cta h2 {
  color: #f4a024;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about-cta p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .mission-vision,
  .values-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  .about-hero h2 {
    font-size: 1.5rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .about-story,
  .values-section,
  .what-we-do,
  .about-impact,
  .about-cta {
    padding: 50px 8%;
  }

  .mission-vision {
    padding: 50px 8%;
  }

  .about-hero {
    padding: 60px 8%;
    min-height: 50vh;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero h2 {
    font-size: 1.2rem;
  }
}

/* ===== STAFF LOGIN PAGE ===== */

.staff-login-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(0, 80, 45, 0.8), rgba(0, 80, 45, 0.8)),
    url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 60px 8%;
}

.staff-login-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.login-container {
  max-width: 500px;
  margin: 80px auto;
  padding: 50px 30px;
  background: #f4fbf7;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  color: #006b3f;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-form input {
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.login-form button {
  padding: 14px;
  background: #00a651;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.login-form button:hover {
  background: #006b3f;
}

@media (max-width: 768px) {
  .staff-login-hero h1 {
    font-size: 2rem;
  }

  .login-container {
    margin: 60px 8%;
    padding: 40px 25px;
  }
}

/* ===== PROJECTS PAGE ===== */

.projects-hero {
  min-height: 65vh;
   background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 80, 40, 0.45)),
  url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
  color: #ffffff;
}

.projects-hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.projects-hero p {
  font-size: 1.3rem;
  color: #f4a024;
  font-weight: 700;
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.project-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #00a651;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.project-card-content {
  padding: 35px;
}

.project-card h2 {
  color: #006b3f;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.project-card p {
  color: #263238;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

  .projects-hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .projects-hero {
    min-height: 50vh;
    padding: 60px 8%;
  }

  .projects-hero h1 {
    font-size: 2rem;
  }

  .projects-grid {
    padding: 50px 8%;
  }
}

/* ===== GALLERY PAGE ===== */

.gallery-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(0, 80, 45, 0.75), rgba(0, 80, 45, 0.75)),
    url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
  color: #ffffff;
}

.gallery-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 1.2rem;
  color: #f4a024;
  font-weight: 700;
}

.featured-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-album-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.gallery-album-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-album-card:hover img {
  transform: scale(1.08);
}

.gallery-album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 45, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-album-overlay:hover {
  opacity: 1;
}

.overlay-text {
  color: #ffffff;
  text-align: center;
}

.overlay-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.overlay-text p {
  font-size: 0.95rem;
  color: #f4a024;
}

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  font-weight: 300;
}

.lightbox-close:hover {
  color: #f4a024;
}

@media (max-width: 900px) {
  .featured-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .featured-gallery-grid {
    grid-template-columns: 1fr;
    padding: 50px 8%;
  }

  .gallery-hero {
    min-height: 50vh;
    padding: 60px 8%;
  }

  .gallery-hero h1 {
    font-size: 1.8rem;
  }

  .gallery-album-card img {
    height: 250px;
  }
}

.site-footer {
  background: var(--bmg-dark-green);
  color: var(--white);
  text-align: center;
  padding: 40px 8%;
}

.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--bmg-orange);
}

.site-footer p {
  margin: 8px 0;
  line-height: 1.8;
}

.footer-motto {
  font-weight: 700;
  color: var(--bmg-orange);
  margin: 15px 0;
  font-size: 1.1rem;
}

.staff-btn {
  background: var(--bmg-orange);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
}

.staff-btn:hover {
  background: var(--bmg-dark-green);
  color: var(--white);
}

/* ===== FIX MISSING LEADERSHIP + MOBILE CONSISTENCY ===== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo {
  color: var(--bmg-dark-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.nav-menu a {
  margin: 0;
}

.bmg-leadership {
  padding: 80px 8%;
  background: #f4fbf7;
  text-align: center;
}

.bmg-section-title {
  color: var(--bmg-green);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.bmg-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--bmg-orange);
  margin: 14px auto 0;
  border-radius: 10px;
}

.bmg-section-text {
  max-width: 850px;
  margin: 0 auto 40px;
  color: #444;
  line-height: 1.8;
}

.bmg-team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.bmg-team-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-bottom: 5px solid var(--bmg-orange);
  text-align: center;
}

.bmg-team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
}

.bmg-team-card h3 {
  color: var(--bmg-green);
  margin: 18px 12px 6px;
}

.bmg-team-card p {
  padding: 0 16px 22px;
  color: #555;
}

.site-footer {
  width: 100%;
  background: var(--bmg-dark-green);
  color: var(--white);
  text-align: center;
  padding: 45px 8%;
  overflow: hidden;
}

.footer-motto {
  color: var(--bmg-orange);
  font-weight: 800;
  margin: 16px 0;
}

/* Projects page aliases */
.programs-hero {
  min-height: 65vh;
  background: linear-gradient(rgba(0,80,45,.75), rgba(0,80,45,.75)),
    url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
  color: #fff;
}

.programs-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.programs-page-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  border-top: 6px solid var(--bmg-green);
}

.programs-page-card h3 {
  color: var(--bmg-green);
}

/* Staff portal fallback */
.staff-page,
.staff-portal,
.staff-section,
.staff-login-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 8%;
}

.staff-page h1,
.staff-portal h1 {
  color: var(--bmg-green);
}

.staff-page a,
.staff-portal a {
  color: var(--bmg-green);
  font-weight: 700;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 900px) {
  .bmg-team-grid,
  .programs-page-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    flex-direction: column;
    padding: 18px 6%;
  }

  .nav-menu {
    gap: 10px;
  }

  .bmg-team-card img {
    height: 360px;
  }
}

/* ===== GALLERY PAGE FINAL FIX ===== */

.gallery-section,
.gallery-preview-section {
  padding: 70px 8%;
  background: #ffffff;
}

.gallery-section h2,
.gallery-preview-section h2 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 35px;
  text-align: left;
}

.gallery-album-grid,
.featured-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-album-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  border-top: 6px solid var(--bmg-green);
}

.gallery-album-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-album-content {
  padding: 24px;
  background: #ffffff;
}

.gallery-album-content p {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.gallery-album-content h3 {
  color: var(--bmg-green);
  margin-bottom: 10px;
}

.gallery-album-content .btn,
.gallery-album-card .btn {
  background: var(--bmg-green);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .gallery-album-grid,
  .featured-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-section,
  .gallery-preview-section {
    padding: 50px 6%;
  }

  .gallery-album-grid,
  .featured-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-album-card img {
    height: 240px;
  }
}

/* ===== STAFF PORTAL FINAL DESIGN FIX ===== */

.staff-page,
.staff-portal,
.staff-section,
.staff-login-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 8%;
  text-align: center;
}

.staff-page h1,
.staff-portal h1,
.staff-section h1,
.staff-login-section h1 {
  color: var(--bmg-green);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.staff-page p,
.staff-portal p,
.staff-section p,
.staff-login-section p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Turn staff links into button cards */
.staff-page a,
.staff-portal a,
.staff-section a,
.staff-login-section a {
  display: block;
  background: var(--bmg-orange);
  color: #1f2933;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 22px;
  margin: 16px auto;
  border-radius: 35px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(244, 160, 36, 0.28);
  transition: 0.25s ease;
}

.staff-page a:hover,
.staff-portal a:hover,
.staff-section a:hover,
.staff-login-section a:hover {
  background: var(--bmg-green);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Staff page headings under buttons */
.staff-page h2,
.staff-portal h2,
.staff-section h2,
.staff-login-section h2,
.staff-page h3,
.staff-portal h3,
.staff-section h3,
.staff-login-section h3 {
  color: var(--bmg-green);
  font-size: 1.6rem;
  margin-top: 26px;
  margin-bottom: 8px;
}

/* Typography consistency across pages */
h1 {
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-weight: 800;
  line-height: 1.25;
}

h3 {
  font-weight: 700;
  line-height: 1.3;
}

p {
  line-height: 1.7;
}

/* Button color consistency */
.btn,
.primary,
.staff-btn {
  background: var(--bmg-orange);
  color: #1f2933;
  border-radius: 35px;
  font-weight: 800;
}

.btn:hover,
.primary:hover,
.staff-btn:hover {
  background: var(--bmg-green);
  color: #ffffff;
}

/* =====================================================
   BMG GLOBAL CONTENT ALIGNMENT SYSTEM
===================================================== */

.section-container,
.programs-intro,
.projects-grid,
.contact-grid,
.contact-form,
.map-box,
.news-grid,
.partners-logo-grid,
.featured-gallery-grid,
.article-content,
.gallery-grid,
.impact-grid,
.values-grid,
.work-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Standard page spacing */

.projects-page-section,
.programs-page-section,
.contact-section,
.contact-form-section,
.map-section,
.values-section,
.what-we-do,
.about-story,
.about-impact,
.news-section,
.article-gallery,
.gallery-section {
    padding-left: 30px;
    padding-right: 30px;
}

/* Center all section headings */

section h1,
section h2 {
    text-align: center;
}

/* Paragraph widths */

section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact page */

.contact-form-section {
    text-align: center;
}

.contact-form {
    max-width: 800px;
}

/* Partners page */

.partners-logo-grid {
    justify-content: center;
}

.partner-logo-card {
    text-align: center;
}

/* Projects page */

.projects-grid {
    justify-content: center;
}

.project-card-content {
    text-align: center;
}

/* Mobile */

@media (max-width:768px){

    .projects-page-section,
    .programs-page-section,
    .contact-section,
    .contact-form-section,
    .map-section,
    .values-section,
    .what-we-do,
    .about-story,
    .about-impact,
    .news-section,
    .article-gallery,
    .gallery-section {

        padding-left:20px;
        padding-right:20px;
    }

}

/* =====================================================
   DESKTOP CENTER ALIGNMENT + PARTNERS GRID FIX
===================================================== */

@media (min-width: 901px) {

  .partners-section,
  .partners-page,
  .programs-intro,
  .programs-page-section,
  .projects-page-section,
  .gallery-section,
  .contact-section,
  .contact-form-section,
  .map-section,
  .news-section,
  .about-story,
  .values-section,
  .what-we-do,
  .about-impact {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .partners-logo-grid {
    max-width: 1100px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 55px 45px;
    justify-items: center;
    align-items: start;
  }

  .partner-logo-card {
    width: 100%;
    max-width: 260px;
    min-height: 280px;
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .partner-logo-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 25px;
  }

  .partner-logo-card h3 {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.3;
    word-break: normal;
  }

  .partner-logo-card p {
    text-align: center;
    font-size: 0.95rem;
  }

  .partnership-cta {
    max-width: 1200px;
    margin: 70px auto 0;
    padding: 60px 40px;
    text-align: center;
  }

  .partnership-cta p {
    max-width: 850px;
    margin: 0 auto 25px;
    text-align: center;
  }
}

/* Mobile remains one-column and centered */
@media (max-width: 900px) {
  .partners-logo-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .partner-logo-card {
    max-width: 320px;
    width: 100%;
  }
}

/* =================================
   PAGE TITLE SPACING FIX
================================= */

.partners-hero,
.partners-section,
.page-header,
.partners-page-header {

    padding-top: 50px;
}

/* Main title */

.partners-hero h1,
.partners-section h1 {

    margin-top: 20px;
    margin-bottom: 15px;
}

/* Description below title */

.partners-hero p,
.partners-section p {

    margin-bottom: 25px;
}

/* =================================
   GALLERY ALIGNMENT FIX
================================= */

.gallery-section,
.featured-gallery-section {

    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.gallery-section h2,
.featured-gallery-section h2 {

    text-align: center;
    margin-bottom: 40px;
}

.featured-gallery-grid {

    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
}

.gallery-album-card {

    width: 100%;
    max-width: 320px;
}

.gallery-caption,
.gallery-description {

    max-width: 850px;
    margin: 40px auto 0;
    text-align: center;
}

/* Mobile */

@media (max-width: 900px){

    .featured-gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 768px){

    .featured-gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-section,
    .featured-gallery-section{
        padding:50px 20px;
    }

}

/* =====================================================
   ACTIVE NAVIGATION STATE FIX
   Orange = current page only
===================================================== */

.nav-menu a {
  color: var(--text-dark);
  background: transparent;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  background: rgba(244, 160, 36, 0.18);
  color: var(--text-dark);
}

/* Current page */
.nav-menu a.active {
  background: var(--bmg-orange);
  color: var(--text-dark);
}

/* Staff button normal state */
.nav-menu a.staff-btn {
  background: transparent;
  color: var(--text-dark);
}

/* Staff button hover */
.nav-menu a.staff-btn:hover {
  background: rgba(244, 160, 36, 0.18);
  color: var(--text-dark);
}

/* Staff button active only on staff page */
.nav-menu a.staff-btn.active {
  background: var(--bmg-orange);
  color: var(--text-dark);
}

/* =====================================================
   BMG LIGHT STANDARD FIX
   Match News page visual style across all pages
===================================================== */

body {
  background: var(--light-bg);
  color: var(--text-dark);
}

/* Light content sections */
main section:not(.hero):not(.about-hero):not(.projects-hero):not(.programs-hero):not(.gallery-hero):not(.staff-login-hero) {
  background: var(--light-bg);
  color: var(--text-dark);
}

/* Titles */
main section h1,
main section h2 {
  color: var(--bmg-dark-green);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

/* Paragraphs */
main section p {
  color: var(--text-dark);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero text remains white */
.hero h1,
.hero p,
.about-hero h1,
.about-hero p,
.about-hero span,
.projects-hero h1,
.projects-hero p,
.programs-hero h1,
.programs-hero p,
.gallery-hero h1,
.gallery-hero p,
.staff-login-hero h1,
.staff-login-hero p {
  color: #ffffff;
}

/* Hero orange subtitle */
.hero h2,
.about-hero h2,
.projects-hero h2,
.programs-hero h2,
.gallery-hero h2 {
  color: var(--bmg-orange);
}

/* Cards */
.program-card,
.programs-page-card,
.project-card,
.gallery-album-card,
.partner-logo-card,
.mv-card,
.value-card,
.work-card,
.impact-card,
.bmg-team-card,
.contact-card,
.news-card {
  background: #ffffff;
  color: var(--text-dark);
  border-top: 7px solid var(--bmg-green);
}

/* Card text */
.program-card p,
.programs-page-card p,
.project-card p,
.gallery-album-card p,
.partner-logo-card p,
.mv-card p,
.value-card p,
.work-card p,
.impact-card p,
.bmg-team-card p,
.contact-card p,
.news-card p {
  color: var(--text-dark);
}

/* Card headings */
.program-card h3,
.programs-page-card h3,
.project-card h2,
.gallery-album-content h3,
.partner-logo-card h3,
.mv-card h2,
.value-card h3,
.work-card h3,
.impact-card h3,
.bmg-team-card h3,
.contact-card h2,
.news-card h2 {
  color: var(--bmg-dark-green);
}

/* Button standard */
.btn,
.primary,
.staff-btn,
.whatsapp-btn,
.contact-form button,
.gallery-album-card .btn,
.gallery-album-content .btn,
.project-card .btn,
.programs-page-card .btn {
  background: var(--bmg-orange);
  color: var(--text-dark);
  border: none;
  border-radius: 35px;
  padding: 14px 28px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn:hover,
.primary:hover,
.staff-btn:hover,
.whatsapp-btn:hover,
.contact-form button:hover {
  background: var(--bmg-green);
  color: #ffffff;
}

/* Footer remains green */
.site-footer,
footer {
  background: var(--bmg-dark-green);
  color: #ffffff;
}

.site-footer h3,
footer h3,
.footer-motto {
  color: var(--bmg-orange);
}

.site-footer p,
footer p {
  color: #ffffff;
}

/* =====================================================
   ARTICLE HERO TEXT VISIBILITY FIX
===================================================== */

.article-hero {
  position: relative;
  background: #005B33;
}

.article-hero img {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 45, 0.58);
  z-index: 1;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 8%;
}

.article-hero-overlay h1 {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  max-width: 1100px;
  margin-bottom: 20px;
}

.article-hero-overlay p {
  color: var(--bmg-orange) !important;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  max-width: 850px;
}

@media (max-width: 768px) {
  .article-hero img {
    height: 72vh;
    min-height: 520px;
  }

  .article-hero-overlay h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

.latest-news-home,
.partners-home-section {
  padding: 80px 8%;
  text-align: center;
  background: var(--light-bg);
}

.latest-news-home h2,
.partners-home-section h2 {
  color: var(--bmg-dark-green);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.latest-news-home > p,
.partners-home-section > p {
  max-width: 850px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  line-height: 1.8;
}

.latest-news-home .news-grid {
  margin-bottom: 35px;
}

.partners-home-section .partners-logo-grid {
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .latest-news-home,
  .partners-home-section {
    padding: 60px 6%;
  }
}

/* =================================
   GALLERY HERO ALIGNMENT FIX
   Match homepage hero style
================================= */

.gallery-hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 80, 40, 0.55)),
    url("../assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
}

.gallery-hero > div {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}

.gallery-hero p {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--bmg-orange);
  line-height: 1.45;
  max-width: 850px;
  margin: 0 auto;
}

/* Mobile gallery hero */
@media (max-width: 768px) {
  .gallery-hero {
    min-height: 85vh;
    padding: 70px 7%;
  }

  .gallery-hero h1 {
    font-size: 3rem;
  }

  .gallery-hero p {
    font-size: 1.7rem;
  }
}

/* =================================
   GALLERY PC ALIGNMENT FIX
   Featured Moments + CTA alignment
================================= */

.gallery-preview-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 8%;
  text-align: center;
}

.gallery-preview-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.featured-gallery-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: center;
}

.featured-gallery-grid img {
  width: 100%;
  max-width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

/* Gallery CTA fix */
.gallery-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 8%;
  text-align: center;
}

.gallery-cta p {
  max-width: 850px;
  margin: 0 auto 25px;
  text-align: center;
}

.gallery-cta .btn {
  display: inline-block;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 900px) {
  .featured-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-gallery-grid {
    grid-template-columns: 1fr;
  }

  .featured-gallery-grid img {
    max-width: 100%;
    height: 230px;
  }
}

/* =================================
   MOBILE HEADER + HERO CONSISTENCY FIX
   Applies to Home, Who We Are, Projects, Gallery
================================= */

@media (max-width: 768px) {

  .site-header {
    padding: 14px 5%;
    gap: 14px;
  }

  .logo {
    justify-content: center;
    text-align: center;
  }

  .logo img {
    height: 42px;
  }

  .logo span {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .nav-menu {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    align-items: center;
    column-gap: 24px;
    row-gap: 22px;
    width: 100%;
  }

  .nav-menu a {
    font-size: 1.5rem;
    padding: 12px 22px;
    margin: 0;
    text-align: center;
  }

  .nav-menu a.active,
  .nav-menu a.btn,
  .nav-menu a.primary {
    background: var(--bmg-orange);
    color: var(--text-dark);
    border-radius: 35px;
  }

  .nav-menu a.staff-btn {
    background: transparent;
    color: var(--text-dark);
  }

  .nav-menu a.staff-btn.active {
    background: var(--bmg-orange);
    color: var(--text-dark);
  }

  .hero,
  .about-hero,
  .programs-hero,
  .projects-hero,
  .gallery-hero {
    min-height: 78vh;
    padding: 70px 7%;
    background-position: center;
  }

  .hero h1,
  .about-hero h1,
  .programs-hero h1,
  .projects-hero h1,
  .gallery-hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 1.15;
    color: #ffffff;
  }

  .hero h2,
  .about-hero h2,
  .programs-hero h2,
  .projects-hero h2,
  .gallery-hero h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.25;
    color: var(--bmg-orange);
  }

  .hero p,
  .about-hero p,
  .about-hero span,
  .programs-hero p,
  .projects-hero p,
  .gallery-hero p {
    font-size: clamp(1.35rem, 5vw, 2rem);
    line-height: 1.45;
    color: #ffffff;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 5%;
  }

  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 8px 12px;
    line-height: 1.2;
    border-radius: 24px;
  }

  .nav-menu a.active {
    background: var(--bmg-orange);
    color: var(--text-dark);
  }
}

footer {
  background: var(--bmg-dark-green);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.footer-content p {
  margin: 5px 0;
}

.site-credits {
  font-size: 12px;
  color: #bbb; /* Slightly lighter text for secondary info */
}

.site-credits span {
  font-weight: bold;
  color: #4caf50; /* A nice green accent color, perfect for an environmental CBO */
}
footer {
  background: var(--bmg-dark-green);
  color: #ffffff;
  text-align: center;
  padding: 25px 15px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer-content p {
  margin: 6px 0;
}

.site-credits {
  font-size: 12px;
  color: #aaaaaa;
}

.site-credits span {
  font-weight: 600;
  color: #4caf50; /* Clean green accent text */
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--light);
  color: #444;
  line-height: 1.8;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 80, 40, 0.45)),
    url("assets/images/hero-cleanup.jpeg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.overlay p {
  color: white;
  font-size: 1.3rem;
}

.badge {
  display: inline-block;
  margin-top: 30px;
  background: var(--accent);
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

section {
  padding: 80px 0;
}

h2 {
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.about p,
.vision p {
  margin-bottom: 20px;
  text-align: justify;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.card:hover {
  transform: translateY(-10px);
}

blockquote {
  margin-top: 40px;
  background: var(--primary);
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-style: italic;
}

.countdown-section {
  background: var(--secondary);
  color: white;
  text-align: center;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px;
}

.site-credits {
  margin-top: 10px;
  color: #ccc;
  font-size: 13px;
}

.site-credits span {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}
