
/* Example style snippet */
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: #00bfff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0077aa;
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}

.about h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #003366;
}

.about p {
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
}

.download-section {
  padding: 60px 20px;
  background: #f2f2ff;
  text-align: center;
}

.download-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #003366;
}

.download-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.qr-code {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.gallery .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery .grid img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


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

/* Activities Section */
.activities {
  padding: 60px 20px;
  background: #e9f4fa;
  text-align: center;
}

.activities h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.activities .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.activities .card {
  background: #fff;
  padding: 25px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: default;
}

.activities .card:hover {
  transform: translateY(-5px);
  background: #d6f0ff;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #003366;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.2rem;
  margin: 5px 0;
}
.logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}
