.h2-title{
  color: white;
  font-size: 5.875rem;
  width: 100%;
  text-align: center;
  line-height: 100%;
}

.blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* backdrop-filter: blur(0.5px); */
}

.scroll-up-btn{
    display: none;
  }

@media (max-width: 991px) {
  .scroll-up-btn{
    display: block;
  }
  .h2-title {
    font-size: 3.5rem;
  }
}
  

.photo-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.05);
}

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

.photo-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.photo-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  user-select: none;
}

.lightbox-nav:hover {
  color: #ccc;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #6b4423;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

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

  .section-title {
    font-size: 2rem;
  }

  .photo-collage {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
  }

  .lightbox-nav {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .lightbox-close {
    right: 20px;
    font-size: 2rem;
  }
}

/* FOOTER */
.footer {
  /* background: #81c7a3; */
  background: #005d42;
  color: #ffffff;
  padding: 60px 20px 20px;
  direction: ltr;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col.email-col {
  grid-column: span 1;
}

.footer-brand {
  display: flex;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-link {
  /* color: #005d42; */
  color: #81c7a3;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link:hover {
  color: #442308;
  transform: translateX(4px);
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #442308;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copyright {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #81c7a3;
}

.footer-copyright p {
  color: #81c7a3;
  font-size: 13px;
  text-align: center;
}

.footer-copyright p a {
  color: #81c7a3;
  font-weight: bold;
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col.email-col {
    grid-column: span 1;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-col {
    gap: 12px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-col.email-col {
    grid-column: span 2;
  }
}
