/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f9fafb;
}

.gallery-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 40px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 15px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-video {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
  text-align: center;
}
