/* Reset & Base Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #e6d88d;
}

h2 {
  text-align: center;
  padding: 20px 0 10px;
  font-size: 1.8rem;
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
}

/* Navbar */
.custom-navbar {
  background: #17acd1;
  padding: 12px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.navbar-title {
  color: #fff;
  font-size: 2rem;
  margin-left: 10px;
  font-weight: bold;
}

/* Gallery Images */
img.img-fluid {
  width: 100%;
  height: 350px;
  object-fit: contain;     /* ✅ Ensures full image is shown without cropping */
  object-position: center; /* ✅ Keeps image centered */
  background: #fff;
  border: 2px solid #333;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Image Caption */
div.text-center.mt-2 {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-title {
    font-size: 1.4rem;
  }

  img.img-fluid {
    height: auto;           /* Let height scale automatically on small screens */
    max-height: 300px;
  }

  h2 {
    font-size: 1.4rem;
  }
}

/* Footer Styling */
footer {
  background: #1c1c1c;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  color: #17acd1;
}

