* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  font-family: "Montserrat", sans-serif !important;
}

.bg {
  background-image: url("../images/bannerGradientbg.png");
  background-size: cover;
}
.title {
  text-align: center;
  margin: 50px 0;
  padding: 0 20px;
}

.title h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.title span {
  color: #ff8fcf;
}

.images {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  column-count: 5;
  column-gap: 20px;
}

.card {
  border-radius: 20px;
  margin-bottom: 20px;
  break-inside: avoid;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.purple {
  background: #ece2fb;
}
.yellow {
  background: #fff3c3;
}

/* Heights*/
.card {
  height: 200px;
}
.short {
  height: 150px;
}
.medium {
  height: 250px;
}
.tall {
  height: 320px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .images {
    column-count: 4;
  }
}

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

  .title h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .images {
    column-count: 2;
  }

  .title h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .images {
    column-count: 1;
    padding: 15px;
  }

  .title h1 {
    font-size: 24px;
  }

  .title {
    margin: 30px 0;
  }
}
