/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f8ff;
  color: #333;
}

.container {
  width: 85%;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #4CAF50;
}

/* Header */
header {
  background-color: #4CAF50;
  color: white;
  padding: 15px 0;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffeb3b;
}

/* Hero Section */
.hero {
  background: url('kids.jpg') no-repeat center center/cover;
  height: 350px;
  color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
  background-blend-mode: multiply;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.hero .btn {
  background-color: #ffeb3b;
  color: #333;
  padding: 12px 25px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.hero .btn:hover {
  background-color: #4CAF50;
  color: white;
}

/* Sections */
section {
  padding: 40px 0;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

/* Program and Event Styles */
.program-category, .event {
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #4CAF50;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.program-category h3, .event h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.program-category p, .event p {
  line-height: 1.6;
}

/* Gallery */
.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

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

/* Footer */
footer {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}

footer a {
  color: #ffeb3b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
