body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

/* HERO */

.gallery-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('../images/gallery-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin: 0;
}

.hero-content p {
  margin-top: 15px;
  color: #d4af37;
  letter-spacing: 2px;
}

/* COLLAGE GRID */

.collage-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  padding: 80px 8%;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collage-item:hover img {
  transform: scale(1.1);
}

/* Different Shapes */

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.vertical {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

/* CTA */

.gallery-cta {
  text-align: center;
  padding: 100px 20px;
  background: #111;
}

.gallery-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.gallery-btn {
  padding: 14px 40px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s ease;
}

.gallery-btn:hover {
  background: #d4af37;
  color: #111;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .collage-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 600px) {
  .collage-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}