/* ================================
   GALLERY SECTION
================================ */

.galery-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

/* ================================
   GALLERY GRID
================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ================================
   GALLERY CARD
================================ */

.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.35);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* ================================
   GALLERY INFO
================================ */

.gallery-info {
  padding: 1rem 1rem 1.2rem;
}

.gallery-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-weight: 600;
}

.gallery-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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