:root {
  --font-family-heading: "Outfit", sans-serif;
  --font-family-heading-alt: "Oswald", sans-serif;
  --font-size-xl: clamp(40px, 2.34375vw + 15px, 60px);
  --text-color: #231f20;
  --theme-primary: #4aa54f;
  --theme-secondary: #45b9c5;
}

/* Restaurant Tour */
/* Page Hero */
.restaurant_tour__hero {
  background-image: url('/Portals/0/Images/RestaurantTour/restaurant-tours.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.restaurant_tour__hero::after {
  content: url('/Portals/0/Pages/Restaurant_Tour/assets/hand.svg');
  bottom: -1.5rem;
  left: 9vw;
  position: absolute;
  width: clamp(150px, 20vw, 250px);
  height: calc(1.253 * clamp(150px, 20vw, 250px));
  /* width: 250px;
  height: 300px; */
  z-index: 1;
}

.restaurant_tour__hero .overlay {
  background-color: rgba(0, 0, 0, 0.25);
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
}

.restaurant_tour__hero .text {
  padding: 10rem 2rem;
}

.restaurant_tour__hero .overlay h1 {
  color: white;
  font-family: var(--font-family-heading);
  font-weight: 800;
}

/* Map Section */
.restaurants__map {
  position: relative;
}

.restaurants__map multi-location-map {
  --map-height: 45vh;
}

.restaurants__map .overlay__text {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.75) 100%);
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  padding: 2rem;
  font-size: var(--font-size-xl);
}

.restaurants__map .overlay__text h2 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 0.8em;
  color: var(--text-color);
  line-height: 1.2;
  margin: 0;
}

.restaurants__map .overlay__text img {
  margin: 1rem 0;
  height: clamp(50px, 7.5vw, 120px);
  width: auto;
}

@media screen and (max-width: 767px) {
  .restaurants__map multi-location-map {
    --map-height: 75vh;
  }

  .restaurants__map .overlay__text {
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(350px, 40%, 600px);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.75) 100%);
    padding: 1.5rem 1rem;
  }

  .restaurants__map .overlay__text img {
    height: 50px;
  }
}

/* Voting Section */

.voting__section {
  margin: 120px 0;
}

.voting__section h2 {
  display: inline-block;
  font-family: var(--font-family-heading-alt);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--font-size-xl);
  color: var(--text-color);
  max-width: 90%;
  margin: 0 0 0.5em;
  padding: 0 0 0 0.5em;
}

.voting__section .arrow {
  position: relative;
  display: inline;
}

.voting__section .arrow img {
  width: auto;
  height: 1.5em;
  transform: rotate(-28deg);
  position: absolute;
  left: 10px;
  top: 50%;
}

.voting__section hr {
  height: 3px;
  background: linear-gradient(90deg, var(--theme-primary) 15%, #c1c2c2 15%);
  margin: 0 0 80px;
  border: none;
}

/* Live Play Stay Section */
.live_play_stay__section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}

.live_play_stay__section>div {
  padding: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-xl);
}

.live_play_stay__section h3 {
  margin: 0;
  text-align: center;
  color: white;
  font-family: var(--font-family-heading-alt);
  font-size: 1em;
  padding: 0.6em 0.8em;
}

.live_play_stay__section .live {
  background-color: #FFB51E;
}

.live_play_stay__section .play {
  background-color: #45B9C5;
}

.live_play_stay__section .stay {
  background-color: #FF929C;
}

@media only screen and (max-width: 991px) {
  .live_play_stay__section {
    grid-template-columns: 1fr;
  }
}