/* Full Gallery Page */
.gallery-full {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1400px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,51,102,0.7);
  color: white;
  padding: 10px;
  margin: 0;
  font-size: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.gallery-item:hover p {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-item img {
    height: 200px;
  }
  }
