body {
  font-family: "Inter", sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 40px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 25%;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.0)
  );

  z-index: 1;
}

.hero-text {
  position: absolute;
  left: 50px;
  bottom: 0px;
  z-index: 2;
  color: #cbd5e1;
}

.hero-text h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
}

.hero-text p {
  margin-top: 12px;
  font-size: 24px;
  color: #cbd5e1;
  font-weight: 500;
}

.gallery {
    column-count: 1;
    column-gap: 12px;
    padding: 10px 0;
}

.gallery img {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 12px;
    display: block;
    break-inside: avoid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

@media (min-width: 700px) {
    .gallery {
        column-count: 2;
    }
}

@media (min-width: 1100px) {
    .gallery {
        column-count: 3;
    }
}
