@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body.body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}

.section__container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 80px;
}
h1,h2,h3,h4,h5,p,a {
  font-family: "Lato", sans-serif;
  color: #ffffff;
}

.header .bg__img {
  background-image: url('/img/pod/hero__img.jpg');
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  filter: saturate(2) contrast(1);
  background-position: bottom center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35);
  z-index: 1;
  opacity: 0.6;
}

.header .bg__img .hero__content {
  position: absolute;
  top: 30%;
  left: 25%;
  /* right: 20%; */
  z-index: 999;
  width: 50%;
  max-width: 700px;
  text-align: center;
}

.hero__content h1.hero__title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 20px hsla(0, 0%, 0%, 0.204);
  text-align: center;
  margin: 0;
}

.hero__content h1.hero__title span {
  font-weight: 900;
  font-size: 7rem;
  text-transform: uppercase;
  line-height: 90px;
}

.hero__content p.info{
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 20px hsla(0, 0%, 0%, 0.204);
  margin-left: 30px;
}

.hero__content button.btn__pod__cta {
  padding: 10px 18px;
  background-color: #E4B45C;
  color: #000;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color .4s linear ease-in-out;
  outline: none;
}

.hero__content button.btn__pod__cta:hover {
  background-color: #282828f5;
  color: white;
}

.hero__content button.btn__pod__cta:active {
  background-color: #4c4c4c;
  color: #fff;
}

/* EXPERIENCE */

.experience__section .grid__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.grid__wrapper .gallery__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery__section .grid__item {
  border-radius: 10px;
}
/* 
.grid__item img {
  filter: saturate(1.1) brightness(1.5);
} */

.grid__wrapper .info__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.info__section .right__side {
  align-self: flex-end;
  text-align: right;
  margin-left: 50px;
}

.info__section .left__side {
  margin-right: 50px;
}



.experience__info__heading {
  font-size: 4rem;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
}


.grid__wrapper .info__section p {
  /* color: #E4B45C; */
  color: #f3f3f3;
}

/* FORM SECTION */

section.section__container.booking__section {
  padding: 0;
  background: url('/img/pod/2025__movies.webp') no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  /* filter: opacity(.2); */
}

.booking__section .overlay {
  background-color: rgba(0, 0, 0, 0.76);
  opacity: unset;
  z-index: 0;
}

.booking__section .booking__wrapper {
  /* position: absolute; */
  width: 650px;
  margin: 0 auto;
  display: block;
  top: 15%;
  left: 33%;
  z-index: 1;
}

.booking__wrapper .form__title {
  z-index: 2;
}

.booking__wrapper .wrapper__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.booking__wrapper .form__title h3.title {
  font-size: 4rem;

}

.booking__wrapper .form__section {
  width: 450px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(28px);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 30px 48px;
}

.form__section h5 {
  font-size: 32px;
  text-align: center;
}

.form__section .input__box {
  width: 100%;
  height: 50px;
  margin: 30px 0;
  position: relative;
}

.input__box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255,255,255, 0.2);
  border-radius: 40px;
  font-size: 1rem; 
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.input__box input::placeholder {
  color: #fff;
}

.input__box i {
  position: absolute;
  right: 20px;
  top: 35%;
  font-size: 20px;
  transform: translate(-50%);
}

.form__section .btn__book {
  width: 100%;
  height: 45px;
  background-color: #E4B45C;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow:  0 0 10px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 800;
  transition: background-color 0.4s linear ease-in-out;
}

.form__section .btn__book:hover {
  background-color: #fff;
}

.hidden__input{
  display: none;
}

/* MOVIES */

.section__container.movies__section{
  padding: 0;
  padding-left: 80px;
}

/* .movie__list__container {
  padding: 20px;
} */

.moive__list__wrapper {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
/* 
.movie__list__title {
  margin-left: 50px;
} */

.movie__list{
  display: flex;
  align-items: flex-start;
  transform: translateX(0);
  transition: all 1s ease-in-out !important;
}

.movie__list__item {
  margin-right: 30px;
  position: relative;
}

.movie__list__item:hover .movie__list__item__img {
  transform: scale(1.2);
  margin: 0 30px;
  opacity: 0.35;
  /* height: 100%; */
}

.movie__list__item:hover .movie__list__item__title,
.movie__list__item:hover .movie__list__item__desc,
.movie__list__item:hover .movie__list__item__button
{
  opacity: 1;
  transition: all .4s linear ease-in-out;
}

.movie__list__item__img {
  width: 270px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}


.movie__list__item__title {
  text-shadow: 0 0 10px #6969696a;
  padding: 0 10px;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 10%;
  left: 50px;
  opacity: 0;
  transition: all .4s linear ease-in-out;
}

.movie__list__item__desc {
  text-shadow: 0 0 10px #6969696a;
  padding: 3px 8px;
  font-size: 12px;
  position: absolute;
  top: 25%;
  left: 50px;
  width: 230px;
  line-height: 16px;
  margin-bottom: 10px;
  opacity: 0;
  transition: all .4s linear ease-in-out;
}

.movie__list__item a {
  outline: none;
}
.movie__list__item__button {
  padding: 5px 10px;
  background-color: #E4B45C;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 50px;
  opacity: 0;
  transition: all .4s linear ease-in-out;
}

.arrow__movies {
  font-size: 120px;
  position: absolute;
  top: 70px;
  right: 0;
  color: lightgray;
  opacity: .85;
  cursor: pointer;
}


/* Thank you page */


.thanks__container{
  width: 650px;
  margin: 15% auto;
  display: block;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  background-color: #ddd;
  padding: 16px 32px;
  box-shadow: 0 0 5px #aaaaaa10;
  border-radius: 20px;
  /* border: 2px solid rgb(114, 189, 0); */
}

.thanks__container .wrapper__thanks{
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.wrapper__thanks h1, .wrapper__thanks h1 span i {
  color: rgb(114, 189, 0);

}


.top__side p.thanks__msg {
  color: #333;
  line-height: 28px;
  text-align: center;
  font-size: 18px;

}

.wrapper__thanks .bottom__side a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #777;
}

.wrapper__thanks .bottom__side span {
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: center;
}

.wrapper__thanks .bottom__side span.back__home{
  text-decoration: underline;
}
.wrapper__thanks .bottom__side span i {
  color:#E4B45C;
  font-size: 28px;
  font-weight: 600;
  margin-top: 3px;
  text-decoration: none;
}

/* MEDIA QUERY */

@media (max-width: 991px){
  .navbar .home__btn.home__btn__mobile.pod-cinema {
    display: none;
  }
  .header .bg__img .hero__content {
    left: 5%;
    text-align: left;
  }

  .hero__content h1.hero__title {
    text-align: left;
  }

  .hero__content p.info {
    text-align: left;
    margin-left: 0;
  }

  .experience__info__heading {
    font-size: 2.5rem;
    line-height: 36px;
  }

  .booking__section .booking__wrapper{
    left: 28%;
  }

}

@media (max-width: 769px){
  .hero__content h1.hero__title span{
    font-size: 5rem;
    line-height: 70px;
  }

  .hero__content h1.hero__title {
    font-size: 1.5rem;
  }

  .hero__content p.info {
    width: 1000px;
  }

  .info__section .right__side, .info__section .left__side {
    display: none;
  }



  .grid__wrapper .info__section p {
    display: none;
  }

  .section__container.experience__section {
    padding: 10px 20px;
  }

  .experience__section .grid__wrapper {
    display: block;

  }

  .booking__section .booking__wrapper {
    left: 20%;
    max-width: 300px;
  }
}

@media (max-width: 499px){

  .header .bg__img .hero__content {
    top: 40%;
  }
  .hero__content h1.hero__title span{
    font-size: 3.5rem;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .grid__wrapper .gallery__section {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .booking__wrapper .form__title h3.title {
    font-size: 2.8rem;
}

.booking__section .booking__wrapper {
  left: 4%;
}

.booking__wrapper .form__section {
  width: 350px;
  padding: 15px 24px;
}

.hero__content p.info {
  font-size: .85rem;
  width: 500px;
  display: none;
}

}

/* MEDIA QUERY FOR MOVIES */

@media only screen and (max-width: 940px){
  .moive__list__wrapper {
    overflow-x: scroll;
  }

  i.arrow__movies {
    display: none;
  }

  .section__container.movies__section{
    padding-left: 32px; 
  }

  .movie__list__item:hover .movie__list__item__img {
    height: unset;
  }
}