/* GALLERY PAGE STYLING */

/* Page background */
body.gallery-page {
  background: linear-gradient(rgba(0,74,173,0.2), rgba(255,255,255,0.9)),
              url('DreamJobBG.png') center/cover no-repeat fixed;
}

/* Logo */
.hero-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: auto;
  cursor: pointer;
  z-index: 110;
  transition: transform 0.2s ease;
}
.hero-logo:hover {
  transform: scale(1.05);
}

/* Carousel container */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Image wrapper */
.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
}

/* Individual images */
.carousel-images img {
  width: 100%;
  border-radius: 16px;
  flex-shrink: 0;
  object-fit: cover;
}

/* Navigation buttons */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.carousel button:hover {
  background: rgba(0, 0, 0, 0.7);
}
.prev { left: 10px; }
.next { right: 10px; }
