/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fff;
  color: #111;
}

/* Hero Section */
#hero {
  width: 100%;
  overflow: hidden;
}
#hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Gallery Grid Section */
#gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 8rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Gallery Image */
.gallery-image {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-image:hover img {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #gallery-grid {
    padding: 1rem;
    gap: 2rem;
  }
}

@media (min-width: 600px) {
  #gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  #gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
