body {
  margin: 0;
  font-family: 'Baloo 2', cursive;
  background: linear-gradient(135deg, #f8f0ff, #ffe6f0);
  color: #333;
}
header {
  text-align: center;
  padding: 50px 20px;
  background: #8c52ff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px #00000055;
}
header p {
  font-size: 1.5em;
  margin: 0;
  line-height: 1.4;
}
section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background: #fff0ffcc;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
section h2 {
  text-align: center;
  color: #8c52ff;
  margin-bottom: 20px;
  font-size: 2em;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  text-align: center;
}
.gallery-item img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gallery-item .caption {
  margin-top: 8px;
  font-size: 0.9em;
  color: #333;
  text-align: justify;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 15px;
  margin-bottom: 20px;
}
.lightbox .caption {
  color: #fff;
  font-size: 1.2em;
  text-align: center;
  max-width: 80%;
  margin-bottom: 20px;
}
.close-btn, .download-btn {
  background: #8c52ff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin: 5px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.close-btn:hover, .download-btn:hover {
  background: #6b38cc;
  transform: translateY(-3px);
}
footer {
  text-align: center;
  padding: 30px 20px;
  background: #8c52ff;
  color: #fff;
  margin-top: 50px;
  font-size: 1em;
}
footer .contact-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 15px;
  flex-wrap: wrap;
}
footer .contact-links a {
  text-decoration: none;
  color: #fff;
  background: #6b38cc;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, background 0.3s;
}
footer .contact-links a:hover {
  transform: translateY(-3px);
  background: #4f2499;
}
footer a.email-link {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: bold;
}
