* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f8f9fc;
}

/* Section */
.gallery-section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.gallery-title {
  text-align: center;
  font-size: 32px;
  color: #0b3c6d;
  margin-bottom: 10px;
}

.gallery-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Videos */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Play Icon for Videos */
.gallery-item.video::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .gallery-title {
    font-size: 24px;
  }
}
