
: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;
}

/* ===== 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 {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
}

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

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 77, 46, 0.65), rgba(0, 0, 0, 0.55));
}

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

.article-hero-overlay h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.article-hero-overlay p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #F4A024;
  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: 60px 25px;
  background: #f4fbf7;
  text-align: center;
}

.article-gallery h2 {
  color: #006B3F;
  margin-bottom: 35px;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.article-cta {
  text-align: center;
  padding: 60px 25px;
}

.article-cta h2 {
  color: #F4A024;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .article-hero,
  .article-hero img {
    height: 70vh;
  }

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

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

.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;
  }
}

.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) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

.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;
}

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

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

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

.contact-hero,
.contact-section,
.contact-form-section,
.map-section {
  padding: 60px 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-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.contact-card h2 {
  color: #006b3f;
  margin-bottom: 20px;
}

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

.social-links a {
  background: #00a651;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.form-note {
  text-align: center;
  margin-top: 20px;
  color: #555;
}

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

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

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

/* CONTACT PAGE FIX */

.contact-section,
.contact-form-section,
.map-section {
  padding: 70px 8%;
  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;
}

.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;
}

.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;
}

.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-section,
  .contact-form-section,
  .map-section {
    padding: 50px 8%;
  }

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

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

.social-links a {
  min-width: 130px;
  text-align: center;
}

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

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

.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-hero {
  min-height: 65vh;
  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;
}

.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;
  }
}

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

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

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

.programs-hero p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 700;
}

.programs-intro {
  padding: 80px 8%;
  text-align: center;
  background: #ffffff;
}

.programs-intro h2,
.programs-page-section h2 {
  color: #006b3f;
  font-size: 2.6rem;
  margin-bottom: 25px;
}

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

.programs-page-section {
  padding: 80px 8%;
  background: #f4fbf7;
  text-align: center;
}

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

.programs-page-card {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #00a651;
}

.programs-page-card h3 {
  color: #00a651;
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.programs-page-card p {
  color: #333333;
  line-height: 1.7;
}

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

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

  .programs-hero h2 {
    font-size: 1.6rem;
  }
}

/* =========================
   LEADERSHIP TEAM SECTION
========================= */

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

.bmg-leadership .container {
  max-width: 1200px;
  margin: 0 auto;
}

.bmg-section-title {
  font-size: 3rem;
  color: #006b3f;
  margin-bottom: 15px;
}

.bmg-section-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.bmg-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.bmg-team-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #00a651;
  margin-bottom: 20px;
}

.bmg-team-card h3 {
  color: #006b3f;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.bmg-team-card p {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1000px) {
  .bmg-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bmg-team-grid {
    grid-template-columns: 1fr;
  }

  .bmg-section-title {
    font-size: 2.3rem;
  }

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

/* =========================
   FIX LEADERSHIP DESKTOP
========================= */

.bmg-leadership {
  width: 100%;
  padding: 90px 8%;
  background: #f4fbf7;
  text-align: center;
  box-sizing: border-box;
}

.bmg-leadership .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.bmg-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.bmg-team-card {
  width: 100%;
  min-height: 360px;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 26px;
  border-top: 7px solid #00a651;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.bmg-team-card img {
  display: block;
  width: 190px;
  height: 190px;
  max-width: 190px;
  max-height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 6px solid #00a651;
  margin: 0 auto 25px;
}

.bmg-team-card h3 {
  font-size: 1.45rem;
  color: #006b3f;
  margin: 0 0 10px;
}

.bmg-team-card p {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
  margin: 0;
}

/* Tablet */
@media (max-width: 1100px) {
  .bmg-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .bmg-leadership {
    padding: 70px 8%;
  }

  .bmg-team-grid {
    grid-template-columns: 1fr;
  }

  .bmg-team-card {
    min-height: auto;
  }

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

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

.gallery-hero {
  min-height: 55vh;
  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;
  padding: 90px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.gallery-hero h1 {
  font-size: 4rem;
  margin-bottom: 18px;
}

.gallery-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
}

.gallery-section,
.gallery-preview-section {
  padding: 80px 8%;
  background: #f4fbf7;
  text-align: center;
}

.gallery-section h2,
.gallery-preview-section h2 {
  color: #006b3f;
  font-size: 2.7rem;
  margin-bottom: 45px;
}

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

.gallery-album-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  border-top: 7px solid #00a651;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

.gallery-album-content {
  padding: 30px;
}

.gallery-album-content span {
  color: #f4a024;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.gallery-album-content h3 {
  color: #006b3f;
  margin: 14px 0;
  font-size: 1.45rem;
}

.gallery-album-content p {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 22px;
}

.gallery-preview-section {
  background: #ffffff;
}

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

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

.gallery-cta {
  padding: 70px 8%;
  text-align: center;
  background: #ffffff;
}

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

.gallery-cta p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #333333;
}

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

@media (max-width: 650px) {
  .gallery-hero h1 {
    font-size: 3rem;
  }

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

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

/* =========================
   GALLERY LIGHTBOX
========================= */

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

.lightbox-content{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 0 25px rgba(255,255,255,.2);
    animation:zoomIn .25s ease;
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#ffffff;
    font-size:50px;
    font-weight:bold;
    cursor:pointer;
}

.gallery-album-card img,
.featured-gallery-grid img{
    cursor:pointer;
    transition:.3s;
}

.gallery-album-card img:hover,
.featured-gallery-grid img:hover{
    transform:scale(1.03);
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.nav-menu a.active {
  background: #00A651;
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 40px;
}

.staff-btn {
  background: #F4A024;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
}

.staff-btn:hover {
  background: #00A651;
}

/* =========================
   STAFF LOGIN & FEEDBACK
========================= */

.staff-login-section {
  padding: 90px 8%;
  background: #f4fbf7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-login-card {
  max-width: 650px;
  width: 100%;
  background: #ffffff;
  padding: 45px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-top: 7px solid #00a651;
}

.staff-login-card h1 {
  color: #006b3f;
  font-size: 2.7rem;
  margin-bottom: 18px;
}

.staff-login-card p {
  line-height: 1.7;
  color: #333333;
  margin-bottom: 28px;
}

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

.staff-login-form input,
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #cccccc;
  border-radius: 14px;
  font-size: 1rem;
  box-sizing: border-box;
}

.staff-login-form button,
.feedback-form button {
  border: none;
  cursor: pointer;
  align-self: center;
}

.feedback-section {
  padding: 80px 8%;
  background: #ffffff;
  text-align: center;
}

.feedback-section h2 {
  color: #006b3f;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feedback-section p {
  max-width: 850px;
  margin: 0 auto 35px;
  color: #333333;
  line-height: 1.7;
}

.feedback-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  font-size: 0.95rem;
  color: #555555;
  margin-top: 20px;
}

@media (max-width: 650px) {
  .staff-login-card {
    padding: 35px 24px;
  }

  .staff-login-card h1,
  .feedback-section h2 {
    font-size: 2.1rem;
  }

  .staff-login-form button,
  .feedback-form button {
    width: 100%;
  }
}
