*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
.container {
  max-width: 1140px;
  margin: auto;
  padding: 20px;
}
.main-header {
  background: #222;
  padding: 20px 0;
}
.logo {
  width: 150px;
}
.nav {
  float: right;
}
.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}
.nav a:hover {
  color: #ffc107;
}
.hero {
  background-image: url("assets/images/WhatsApp Image 2025-08-30 at 8.31.41 AM.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}
.section.about {
  background-image: url("assets/images/WhatsApp Image 2025-08-30 at 8.31.41 AM.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
}
.section.programs {
  background-image: url("assets/images/WhatsApp Image 2025-08-30 at 8.31.39 AM.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
}
.section.gallery {
  padding: 50px 20px;
  background-color: #fafafa;
  text-align: center;
}

.section.gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* GALLERY ITEM IMAGES */
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* RESPONSIVE LAYOUT FOR TABLETS */
@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* RESPONSIVE LAYOUT FOR MOBILE */
@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column */
  }
}


.section.contact {
  background-image: url("assets/images/WhatsApp Image 2025-08-30 at 8.31.39 AM.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .nav {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
  .nav a {
    display: block;
    margin: 10px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
