/* Hero Section */
html {
  scroll-behavior: smooth;
}
.hero {
  height: 100vh; /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("../assets/img/kids.jpg") no-repeat center center/cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* black overlay */
}

.hero-content {
  position: relative;
  z-index: 1; /* ensures text is above overlay */
  max-width: 700px;
  padding: 20px;

}

.hero-content h2 {
  font-size: 3rem;
  color: white; /* bright kid-friendly color */
  margin-bottom: 15px;
}

.hero .btn {
  background: #28a745; /* green button */
  color: #fff;
  padding: 12px 28px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #ff6600; /* orange hover */
}



/* About Section */
.about {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: orange;
  margin-bottom: 20px;
}

/* Programs Section */
.programs {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.programs h2 {
  font-size: 2rem;
  color: green;
  margin-bottom: 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.program-card {
  background: linear-gradient(135deg, orange, green);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card i {
  font-size: 2rem;
  margin-bottom: 15px;
}



/* Header */



/* Header Base */
.site-header {
  position: fixed;  /* stays on top */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;  /* change to your brand color if needed */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;  /* ensures header is above hero */
}

/* Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff6600; /* playful hover color */
}

/* Donate button */
.btn {
  background: #ff6600;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e05500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px; /* below header */
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }
}













.footer {
  background: #111; /* dark footer */
  color: #ddd;
  padding: 50px 20px 20px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3, .footer h4 {
  color: #28a745; /* green brand */
  margin-bottom: 15px;
}

.footer p, .footer li, .footer a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff6600; /* orange hover */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #ff6600; /* orange icons */
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}




.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9; /* light background */
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  filter: brightness(1.05);
}






/* Apply kids font site-wide */
body, h1, h2, h3, h4, h5, h6, p, a, button, .btn, .nav-links li {
  font-family: 'Chewy', cursive;
}

.about-sections {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-card {
  background: #fff;
  margin: 20px auto;
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card h2 {
  color: #ff7b00; /* orange */
  margin-bottom: 15px;
  font-size: 28px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-card ul li {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.contact-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-animation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  color: orange;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.info-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.info-list i {
  color: green;
  margin-right: 10px;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form .btn {
  background: green;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: darkgreen;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-animation {
    order: -1;
    margin-bottom: 20px;
  }
}

/* Lightbox Close Button */
.lb-close {
  background: #fff !important; /* white background for visibility */
  border-radius: 50%;
  padding: 8px;
  right: 15px !important;
  top: 15px !important;
}
.lb-close:after {
  content: "✕";
  color: #000;
  font-size: 18px;
}
