/* Main section */
.shots-gallery {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  border-radius: 16px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.see-more {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.see-more:hover {
  color: #4f46e5;
}

.gallery-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f3f4f6;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:not(:has(img))::after,
.gallery-item img[src=""]::after {
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .shots-gallery {
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-title {
    font-size: 24px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
