body {
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #d0bfff, #b5f4ff);
  margin: 0;
  padding: 0;
  color: #333;
}

.gallery-container {
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: #7F00FF; /* Purple */
  margin-bottom: 10px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.gallery-item {
  background: #f0e7ff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 15px;
  font-size: 1.1rem;
  background: #e0d4ff;
  color: #5b2a91;
  text-align: center;
}

.back-button {
  margin-top: 40px;
}

.back-button a {
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  background: #7F00FF;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(127, 0, 255, 0.4);
  transition: background 0.3s ease;
}

.back-button a:hover {
  background: #6600cc;
}
.shift-down {
  margin-top: 20px; /* adjust this as needed */
}
