body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e06363;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.gallery-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
  position: relative;
  display: inline-block;
}

.gallery-title span {
  color: #f04362; /* Accent color */
  font-weight: 600;
}

.gallery-section {
  padding: 40px 60px;
  text-align: center;
}

.gallery-section h1 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #333;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 photos per row */
  gap: 20px;
}

.gallery-item {
  background: #06c9ec;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

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

.gallery-item p {
  padding: 15px;
  font-size: 14px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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