:root {
  --orange: #eb9b2d;
  --orangeDarker: #b76e16;
  --greenBack: #395951;
  --limeGreen: #cfff8b;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  padding-top: 75px;
  color: #111;
}

/* ============================= */
/*              Header           */
/*               Nav             */
/*              Start            */
/* ============================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--greenBack);
  z-index: 9999;
  height: 150px;
}
.nav-container {
  margin: auto;
  width: 100%;
  max-width: 1440px;
  font-family: "Poppins", sans-serif;
}

/* Top Navigation Section */
.nav-inner.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 12px 0;

  flex-wrap: wrap;
}

.contact-group,
.social-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-link,
.social-icon {
  color: #b4ff8d;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-link i {
  margin-right: 6px;
  font-size: 1rem;
}

.social-icon {
  background-color: #b4ff8d;
  color: #000;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
  background-color: #a0ff6a;
  transform: scale(1.05);
}

.social-icon i {
  font-size: 16px;
  margin: 0;
  line-height: 1;
}

/* Centered Logo */
.logo-center {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

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

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #b4ff8d;
}

/* Bottom Navigation Section */
.nav-inner.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fefefe;
  padding: 15px 5px;
  border-top: 1px solid #ddd;
  border-radius: 30px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 20px;
  padding-left: 10px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2ecc71;
}

/* Donate Button */
.donate-btn {
  background-color: #b4ff8d;
  padding: 10px 20px;
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-left: -10px;
}

.donate-btn:hover {
  background-color: #a3ff6d;
}

/* Hamburger (Mobile Only) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-group,
  .social-group,
  .nav-links {
    display: none;
  }

  .logo-center {
    margin: 0 auto;
  }

  .hamburger {
    display: block;
  }

  .nav-inner.top,
  .nav-inner.bottom {
    padding: 12px 20px;
  }
}

/* ============================= */
/*              Header           */
/*               Nav             */
/*               End             */
/* ============================= */

/* 






*/

/* ============================= */
/*              Hero             */
/*               Nav             */
/*              Start            */
/* ============================= */

.hero {
  background-color: var(--greenBack);
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  height: 750px;
  padding-top: 100px;
}

.hero-inner {
  width: 100%;
  max-width: 1440px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.lime {
  background-color: var(--limeGreen);
  color: black;
}

.btn.lime:hover {
  background-color: var(--greenBack);
  color: var(--limeGreen);
  border: 1px solid var(--limeGreen);
}

.btn.outline {
  border: 1px solid var(--limeGreen);
  color: var(--limeGreen);
  background-color: transparent;
}

.btn.outline:hover {
  background-color: var(--limeGreen);
  color: black;
}

.video-placeholder {
  width: 100%;
  max-width: 1440px;
  height: 550px;
  background-color: #dcdcdc;
  margin: 0 auto;
  border-radius: 12px;
  position: relative; /* Needed for absolute children */
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  bottom: -50px;
}

.video-thumbnail,
.event-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.event-video {
  display: none; /* hidden by default */
}
.play-button {
  position: absolute; /* Now relative to .video-placeholder */
  bottom: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: var(--limeGreen);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.fas {
  transform: translateX(4px);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn-group {
    flex-direction: column;
  }

  .video-placeholder {
    height: 250px;
  }

  .header {
    padding: 9px;
  }
  .play-button {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }
}

/* ============================= */
/*              Hero             */
/*             Section           */
/*               End             */
/* ============================= */
/* 





*/

/* =============================*/
/*             Mobile           */
/*             Section          */
/*              Start           */
/* =============================*/

/* Hide on Desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--black);
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--greenBack);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  z-index: 1000;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(15%);
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-links .mobile-donate {
  background-color: var(--limeGreen);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* ============================= */
/*       Mobile Responsive       */
/* ============================= */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav,
  .desktop-donate {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-group {
    flex-direction: row;
    align-items: center;
  }

  .logo-group h1 {
    font-size: 1.2rem;
    color: white;
  }

  .btn-group {
    flex-direction: column;
  }

  .video-placeholder {
    border-radius: 0;
    height: 250px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .play-button {
    width: 80px;
    height: 80px;
    font-size: 30px;
    background-color: var(--limeGreen);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }

  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* =============================*/
/*             Mobile           */
/*             Section          */
/*               End            */
/* =============================*/
/* 








*/
/* =============================*/
/*           Blog Start         */
/*             Section          */
/*              Start           */
/* =============================*/

.blog-start {
  width: 100%;
  padding: 2rem 1rem;
  background-color: #fef7f7;
  display: flex;
  justify-content: center;
  min-height: 300px;
  padding-top: 180px;
}

.blog-start .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  /* background-color: #8b4f4f; */
  min-height: 200px;
}

.blog-start .container h1 {
  text-align: center;
  color: black;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.blog-start .container p:nth-child(2) {
  padding-top: 25px;
}
/* Flex container for left and right */
.blog-start .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* 50/50 columns */
.blog-start .card {
  width: calc(720px - 0.5rem);
  /* background-color: #ffffff; */
  border-radius: 8px;
  box-sizing: border-box;
}

/* Left card content */
.blog-start .left-text {
  padding: 2rem;
}

.blog-start .left-text p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Right card image fills the card */
.blog-start .right-text {
  padding: 0;
  display: flex;
}

.blog-start .right-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.more-text.hidden {
  display: none;
}

.read-more-btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--limeGreen);
  color: black;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--greenBack);
  color: var(--limeGreen);
}

/* Stack on smaller screens */
@media (max-width: 768px) {
  .blog-start {
    padding-top: 150px;
  }

  .blog-start .card {
    width: 100%;
  }

  .blog-start .container h1 {
    font-size: 1.5rem;
  }

  .blog-start .right-text img {
    height: auto;
  }
  .blog-start .container h1 {
    padding: 20px 0 0 0;
    font-size: 1.5rem;
  }
  .blog-start .left-text p {
    font-size: 1rem;
  }
}

@media (max-width: 1470px) {
  .blog-start .card-row {
    flex-direction: column;
    align-items: center;
  }

  .blog-start .card {
    width: 100%;
    max-width: 720px;
  }

  .blog-start .right-text img {
    height: auto;
    border-radius: 8px;
  }
}

/* =============================*/
/*           Blog Start         */
/*             Section          */
/*               End            */
/* =============================*/
/* 













*/

/* =============================*/
/*           Blog Swiper         */
/*             Section          */
/*              Start           */
/* =============================*/

.blog-swiper {
  width: 100%;
  padding: 2rem 1rem;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  min-height: 300px;
}

.blog-swiper .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 200px;
}

.blog-swiper .container h1 {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 3rem;
  padding-bottom: 20px;
}

.blog-swiper .container h2 {
  text-align: center;
  color: rgb(0, 0, 0);
  font-weight: 300;
  font-size: 2rem;
  padding: 20px 0;
}
/* Swiper specific */
.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/*==============================*/
/*---------- Footer ------------*/
/*==============================*/

.site-footer {
  background-color: #111;
  color: #eee;
  padding: 4rem 1rem;
  font-size: 0.95rem;
}

.site-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.footer-column h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #eee;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #ccc;
}

.contact-item a {
  color: #eee;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--orange);
}

.footer-column a i {
  margin-right: 0.5rem;
}

/*==============================*/
/*--------- Responsive ---------*/
/*==============================*/

@media (max-width: 600px) {
  .site-footer {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/*========== Completed =========*/
/*       Footer Section ----- */
/*==============================*/
/* 





















*/
/* ------------------------------------------------ */
