body {
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #ffd6ec, #fcd5ce);
  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: #ff69b4;
  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: #fff0f5;
  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;
  aspect-ratio: 4 / 3;
  display: block;
}

.caption {
  padding: 15px;
  font-size: 1.1rem;
  background: #ffe1f0;
  color: #b0006d;
  text-align: center;
}

.back-button {
  margin-top: 40px;
}

.back-button a {
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  background: #ff69b4;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
  transition: background 0.3s ease;
}

.back-button a:hover {
  background: #e85ca9;
}

.gallery-item img[src="pic1.jpg"] {
  object-position: center top;
}

.gallery-item img[src="pic5.jpg"] {
  object-position: center top;
}
/* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
