@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif;
}

body {
  background-color: #0f0f0f;
}

.main {
  background-image: url(Assets/Images/bgimage.jpg);
  background-position: center center;
  background-size: max(1200px 100vw);
  background-repeat: no-repeat;
  height: 75vh;
  position: relative;
}

.main .box {
  height: 75vh;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0.64;
  background-color: black;
}

nav {
  max-width: 60vw;
  justify-content: space-between;
  margin: auto;
  display: flex;
  align-items: center;
  height: 190px;
}

nav span img {
  width: 160px;
  position: fixed;
  top: 30px;
  left: 70px;
  z-index: 5;
}

nav button {
  position: relative;
  z-index: 10;
}

.navbar{
  display: flex;
  width: 400px;
  justify-content: space-around;
  background-color: rgb(0, 0, 0);
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid gray;
  transition: all 0.2s ease-in-out;
}

.navbar a{
  text-decoration: none;
  color: gray;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.navbar a:hover{
  color: white;
}

.hero {
  font-family: "Martel Sans", sans-serif;
  height: calc(100% - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  gap: 14px;
  padding: 0 30px;
}

.hero > :nth-child(1),
.hero > :nth-child(2) {
  font-weight: bolder;
  font-size: 58px;
  text-align: center;
}

.hero > :nth-child(3) {
  font-weight: 400;
  font-size: 20px;
  color: #a5a3a3;
  text-align: center;
}

.separation {
  height: 3px;
  background-color: gray;
}

.btn {
  position: fixed;
  top: 32px;
  right: 130px;
  padding: 3px 8px;
  font-weight: bold;
  /* background-color: rgba(255, 255, 255, 0); */
  color: #ffffff;
  border-radius: 100px;
  border: 1px solid gray;
  padding: 7px 25px;
  background-color: #000000e2;
  z-index: 10;
}

@media (max-width:555px){
  .btn{
    right: 10px;
    top: 110px;
  }
}

@media (max-width:555px){
  .btn, .navbar, nav span img{
    position: absolute;
    
  }
}

@media (max-width:555px){
  nav span img{
    left: 50px;
    top: 15px;
    clip-path: inset(0 132px 0 0);
  }
}

select{
  font-weight: bold;
  padding: 1px;
}

.lang-dropdown{
  background-color: #fffdfd00;
  color: white;
  border: 0;
}

.btn-red {
  background-color: #e50914;
  color: #fffefe;
  padding: 9px 29px;
  font-size: 25px;
  border-radius: 100px;
  border: 0;
  margin-left: 13px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.6s ease-in-out;
}

.btn-red:hover{
  background-color: #a20d15;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main input {
  padding: 14px 180px 14px 15px;
  color: #ffffff;
  font-size: 14px;
  border: 1px solid gray;
  border-radius: 100px;
  background-color: #000000b8;
}

.btn-sign {
  position: fixed;
  top: 30px;
  right: 40px;
  color: rgb(0, 0, 0);
  border-radius: 100px;
  border: 0;
  padding: 9px 16px;
  margin-left: 11px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.6s ease-in-out;
}

.btn-sign:hover{
  background-color: #a5a3a3;
}

/*  */

.blur {
  background-image: linear-gradient(
    rgba(255, 0, 0, 0.367),
    rgba(0, 0, 0, 0.425),
    rgba(113, 71, 71, 0.581)
  );
}

.trending-now {
  padding: 20px;
  margin: auto;
  max-width: 90vw;
  width: 80%;
}

@media (max-width:900px){
  .trending-now{
    width: 95%;
  }
}

.trending-now h2 {
  margin-bottom: 15px;
  font-size: 24px;
  text-align: left;
  color: #ffffff;
  cursor: default;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
  height: 0;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
}

.scroll-btn{
  margin-top: 25%;
  justify-content: center;
  background-color: #414141;
  height: 85px;
  border: 0;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.scroll-btn:hover{
  background-color: #272727;
}

.movie-card {
  flex: 0 0 auto;
  width: 170px;
  background-color: #333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(93, 86, 86, 0.2);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #cfb76f;
  z-index: 10;
}

.movie-card:hover{
  transform: scale(1.1)
}

.movie-card p {
  padding: 10px;
  font-size: 16px;
  color: #ffc107;
}

.plan-sec,
.more-sec,
.faq,
footer {
  padding: 20px;
  max-width: 90vw;
  margin: auto;
  width: 80%;
}

@media (max-width:600px) {
  .plans{
    display: flex;
    flex-wrap: wrap;
  }
}

.planh2 {
  color: #ffffff;
  padding-left: 12px;
  cursor: default;
}

.plans {
  display: flex;
}

.plans-box {
  position: relative;
  background-image: linear-gradient(
    rgba(13, 0, 47, 0.947),
    rgba(66, 92, 186, 0.751)
  );
  height: 220px;
  width: 100%;
  margin: 1%;
  border: 1px solid rgba(86, 89, 95, 0.568);
  border-radius: 20px;
  color: white;
  padding: 2%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.plans-box:hover{
  transform: scale(1.03);
}

.plan-head {
  font-size:larger;
  padding-top: 20px;
}

.pop {
  position: absolute;
  color: rgb(255, 255, 255);
  top: 0;
  right: 0;
  background-color: #333;
  padding: 15px;
  border-radius: 0 19px 0 10px;
}

.quality {
  padding: 10px 0;
  width: 100%;
  max-width: 90vw;
  font-weight: bold;
  color: #bac3cf;
}

.tick {
  color: #bac3cf;
  z-index: 10;
  font-weight: 500;
}

.tick img {
  width: 16px;
}

.price {
  position: absolute;
  color: #bac3cf;
  bottom: 30px;
}

/* next part */

.moreh1,
.faq h2 {
  color: #ffffff;
  font-weight: bolder;
  padding-left: 12px;
  font-size: 35px;
  cursor: default;
}

.more-box {
  position: relative;
  background-color: #272727;
  height: 100px;
  width: 100%;
  margin: 15px 5px;
  border: 1px solid rgba(86, 89, 95, 0.568);
  border-radius: 20px;
  color: white;
  padding: 2%;
  cursor: pointer;
}

.more-head {
  font-size: 18px;
  cursor: text;
}

.svg {
  position: absolute;
  bottom: 10px; /* Distance from the bottom */
  right: 10px; /* Distance from the right */
}

.svg3 {
  padding: 40px 0px 0px 200px;
}

/* faq */

.faqbox {
  display: flex;
  background-color: #272727;
  border: 1px solid rgba(86, 89, 95, 0.568);
  border-radius: 20px;
  color: white;
  justify-content: space-between;
  padding: 24px;
  margin: 10px auto;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.6s ease-in-out;
}

.faqbox:hover {
  background-color: #414141;
}

.btn-red-down {
  display: flex;
  background-color: #e50914;
  color: white;
  padding: 9px 29px;
  font-size: 15px;
  border-radius: 100px;
  border: 0;
  margin: 10px auto;
  cursor: pointer;
  font-weight: bold;
}

footer,
.footer a, .questions button {
  color: #bac3cf;
}

footer .questions {
  padding: 20px 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width:600px){
  .footer{
    grid-template-columns: 1fr 1fr;
  }
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-end {
  margin-top: 4vw;
  margin-bottom: 1vw;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  border-radius: 100px;
  border: 1px solid gray;
  padding: 7px 25px;
  max-width: 94px;
}

.questions button{
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  border-radius: 20px;
  transition: all 0.7s ease-in-out;
}

.questions button:hover{
  border: 1px solid grey;
  border-radius: 20px;
  background-color: #00aaff;
  color: #0f0f0f;
}
