/* Landing Page Specific Styles */

/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  .hero-desktop {
    display: block;
  }
  .hero-mobile {
    display: none;
  }
  @media (max-width: 767px) {
    .hero-desktop {
      display: none;
    }
    .hero-mobile {
      display: block;
    }
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.locations-section {
  position: relative;
  padding-bottom: 80px;
  &:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #96d6d6;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
  }
  .venue-detail {
    display: flex;
    gap: 45px;
    @media only screen and (max-width: 1340px) {
      gap: 30px;
    }
    @media only screen and (max-width: 1200px) {
      gap: 20px;
    }
    @media only screen and (max-width: 1100px) {
      flex-wrap: wrap;
      justify-content: center;
    }
    .location-card {
      max-width: initial;
      flex: initial;
      flex-basis: 33.33%;
      @media only screen and (max-width: 1100px) {
        flex-basis: 49%;
      }
      @media only screen and (max-width: 767px) {
        flex-basis: 100%;
      }
      .direction {
        margin: 0;
        @media only screen and (max-width: 767px) {
          font-size: 22px;
        }
      }
    }
    .content {
      .address {
        @media only screen and (max-width: 1340px) {
          font-size: 18px;
        }
        @media only screen and (max-width: 1200px) {
          font-size: 16px;
        }
        @media only screen and (max-width: 1140px) {
          font-size: 15px;
        }
      }
    }
  }
}
