html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


body {
      font-family: 'Segoe UI', sans-serif;
    }

    .hero {
      background: url('../images/banner1.jpg') center center/cover no-repeat;
      height: 100vh;
      width: 100%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .popular-destination img {
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
    }

    .destination-img {
      width: 100%;       /* Fill card width */
      height: 200px;     /* Fixed height */
      object-fit: cover; /* Crop image to fit nicely */
      border-top-left-radius: 0.5rem;
      border-top-right-radius: 0.5rem;
    }

    .img-wrapper {
      overflow: hidden;
      border-radius: 0.5rem 0.5rem 0 0;
    }

    .package-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
      border-top-left-radius: 0.375rem;
      border-top-right-radius: 0.375rem;
    }

