body {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #fff8ed;
  color: #4b2e2e;
  margin: 0;
}

.navbar {
  background: #e0b589;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo Bhai 2', cursive;
}

.navbar nav a {
  margin-left: 1rem;
  font-weight: 600;
  color: #5e2e00;
}

.navbar nav a.active {
  border-bottom: 2px solid #5e2e00;
}

.container {
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.gallery-section {
  margin-bottom: 3rem;
}

.gallery-section h2 {
  font-family: 'Baloo Bhai 2', cursive;
  color: #7b3f00;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery-grid img {
  width: 250px;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #d8c3a5;
  transition: transform 0.3s;
  cursor: pointer;
}

/* Lightbox Styles */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px #000;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


.gallery-grid img:hover {
  transform: scale(1.05);
}

.footer {
  background: #4b2e2e;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer a {
  color: #ffdfba;
  margin: 0 0.3rem;
}
