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

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

/* Alias the old names to the new full Inter font for consistency */
.inter,
.inter-bold {
  font-family: "Inter", sans-serif !important;
  font-weight: 700;
}

.inter-regular,
.inter-mobile {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
}

.main-container {
  margin-top: 80px;
  background-color: #f8f9fa;
}

.poi-banner {
  position: relative;
  width: 100%;
  height: 250px;
  background: linear-gradient(132.54deg, #170aca 12.92%, #d00001 53.14%, #6a0000 94.13%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.poi-banner .banner-vector {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.poi-banner .banner-vector-3 {
  height: 100%;
  width: auto;
  left: 51.6%;
  top: 0;
  opacity: 0.5;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.poi-banner .banner-vector-4 {
  height: 100%;
  width: auto;
  left: calc(51.6% + 20px);
  top: 0;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.poi-banner .banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1098px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  height: 100%;
}

.poi-banner .banner-content-text {
  flex: 1;
  max-width: 570px;
  color: #ffffff;
}

.title-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.on-demand-label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 184px;
  height: 33px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
}

.poi-banner .banner-content-text h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 130%;
  margin: 0;
  text-transform: uppercase;
}

.poi-banner .banner-image-poi {
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
}

.poi-banner .banner-image-poi img {
  width: 285px;
  height: auto;
  object-fit: contain;
}

/* Content Section */
.poi-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  min-height: 600px;
}

.poi-content-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 1220px;
  min-height: 419px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 534px 1fr;
  overflow: hidden;
  /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); */
}

.poi-card-image-container {
  width: 100%;
  height: 496px;
}

.poi-card-image {
  width: 100%;
  height: 556px;
  object-fit: cover;
  object-position: top;
}

.poi-card-content {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.poi-card-content h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #030303;
  margin-bottom: 20px;
}

.poi-card-content p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #030303;
  margin-bottom: 35px;
}

.poi-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn-waitlist {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 224px;
  height: 49px;
  border: 5px solid;
  border-image-source: linear-gradient(90deg, #ffcc01 0%, #f27301 100%);
  border-image-slice: 1;
  border-radius: 5px;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #030303;
  text-decoration: none;
}

.btn-subscribe-poi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  max-width: 611px;
  height: 48px;
  background: #e63822;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  border: none;
}

@media (max-width: 1024px) {
  .main-container {
    margin-top: 64px;
  }

  .poi-banner .banner-container {
    max-width: 768px;
  }

  .poi-banner .banner-content-text {
    max-width: 360px;
  }

  .poi-content-card {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    gap: 20px;
  }

  .poi-card-content {
    display: contents;
  }

  .poi-card-content h2 {
    grid-row: 1;
    font-size: 20px;
    margin-bottom: 0;
  }

  .poi-description {
    grid-row: 2;
  }

  .poi-description p {
    /* font-size: 12px; */
    margin-bottom: 15px;
  }

  .poi-description p:last-child {
    margin-bottom: 0;
  }

  .poi-card-image-container {
    grid-row: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 240px;
  }

  .poi-card-image {
    width: 100%;
    max-width: 300px;
    height: 100%;
    border-radius: 0;
  }

  .poi-card-actions {
    grid-row: 4;
    width: 100%;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .poi-banner {
    height: 400px;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
  }

  .poi-banner .banner-container {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .poi-banner .banner-content-text {
    max-width: 295px;
    z-index: 10;
    max-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .on-demand-label {
    width: 121px;
    height: 22px;
    font-size: 12px;
    border-radius: 6.6px;
    padding: 0;
    margin-bottom: 0;
  }

  .poi-banner .banner-content-text h1 {
    font-size: 25px;
    width: 100%;
    max-width: 295px;
    margin: 0;
  }

  .poi-banner .banner-vector-3 {
    left: auto;
    width: 155%;
  }

  .poi-banner .banner-vector-4 {
    left: auto;
    height: 130%;
  }

  .poi-banner .banner-image-poi {
    width: 242px;
    height: auto;
    left: auto;
    right: auto;
    bottom: 0;
    top: auto;
    position: absolute;
  }

  .poi-banner .banner-image-poi img {
    width: 100%;
    height: auto;
  }

  .poi-section {
    padding: 40px 0;
  }

  .poi-content-card {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    gap: 20px;
  }

  .poi-card-content {
    display: contents;
  }

  .poi-card-content h2 {
    grid-row: 1;
    font-size: 20px;
    margin-bottom: 0;
  }

  .poi-description {
    grid-row: 2;
  }

  .poi-description p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .poi-description p:last-child {
    margin-bottom: 0;
  }

  .poi-card-image-container {
    grid-row: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 240px;
  }

  .poi-card-image {
    width: 100%;
    max-width: 300px;
    height: 100%;
    border-radius: 0;
  }

  .poi-card-actions {
    grid-row: 4;
    width: 100%;
    gap: 15px;
  }

  .btn-waitlist {
    max-width: 100%;
    font-size: 16px;
    height: 45px;
    border-width: 3px;
  }

  .btn-subscribe-poi {
    height: 48px;
    font-size: 14px;
    max-width: 100%;
  }
}
