* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

.header {
  height: 100vh;
  width: 100%;
  padding: 10px 8%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./assets/images/netflix-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.nav {
  /* height: 100px; */
  width: 100%;
  padding: 10px 0px;
  display: flex;
  /* color: #ffffff; */
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
}

#lng-select {
  padding: 7px 10px;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

.signin-btn {
  background-color: #db0001;
  color: #ffffff;
  padding: 10px 20px;
  margin: 0px 0px 0px 10px;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.header-content {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 50px;
  text-align: center;
}

.header-content h1 {
  font-size: 50px;
  max-width: 950px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}

.header-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 400;
}

.header-content {
  font-size: 20px;
}
.getStarted-section {
  display: flex;
  margin: 20px auto 60px;
  align-items: center;
  max-width: 600px;
  overflow: hidden;
}
.getStarted-section input {
  flex: 1;
  height: 50px;
  font-size: 18px;
  padding: 15px;
  color: #fff5f5;
  border-radius: 3px;
  background-color: #000;
  opacity: 0.8;
  margin-left: 20px;
  border: 1px solid #777;
}

.getStarted-section button {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 3px;
  margin-left: 10px;
  background: #db0001;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.getStarted-section i {
  width: 10px;
}

.features {
  border-top: 6px solid #333;
  padding: 80px 10%;
  font-size: 22px;
}

.features h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features-content {
  padding: 20px 12%;
  display: flex;
  align-items: center;
  width: 100%;
}

.features-content-text {
  flex-basis: 50%;
  margin-bottom: 20px;
}

.features-content-img {
  flex-basis: 50%;
  margin-bottom: 20px;
}

.features-content-img video {
  display: block;
  width: 80%;
  margin: auto;
  cursor: pointer;
}

.features-content-img img {
  display: block;
  width: 90%;
  margin: auto;
  cursor: pointer;
}

.faq {
  padding: 10px 12%;
  font-size: 18px;
  border-top: 6px solid #333;
  text-align: center;
}
.faq-list {
  margin: 60px auto;
  width: 100%;
  max-width: 900px;
}
.faq h2 {
  margin-top: 40px;
  font-size: 40px;
  font-weight: 600;
}

.faq li {
  list-style: none;
  width: 100%;
  padding: 5px;
}

.faq-list input[type="radio"] {
  display: none;
}

.faq-list li label {
  padding: 20px;
  background: #303030;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 2px;
  cursor: pointer;
}

.faq-list li label:hover {
  background-color: #605d5d;
}

label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 34px;
  transition: transform 0.5s;
}

.faq-list input[type="radio"]:checked + label:after {
  transform: rotate(135deg);
}

.faq-list .content {
  max-height: 0;
  background: #303030;
  overflow: hidden;
  text-align: left;
  padding: 0 20px;
  transition:
    max-height 0.5s,
    padding 0.5s;
}

.faq-list input[type="radio"]:checked + label + .content {
  max-height: 600px;
  padding: 30px 20px;
}

/* --- footer-Section ---  */

.footer {
  padding: 50px 15% 10px 15%;
  border-top: 6px solid #333;
  color: #777;
}

.footer h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.footer .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0px;
}
.footer .row .col {
  margin-bottom: 20px;
}
.footer .row .col li {
  list-style: none;
  margin-bottom: 10px;
}

.footer .row .col li a {
  font-size: 14px;
  text-decoration: none;
  color: #777;
}

.footer .row .col li a:hover {
  text-decoration: underline;
}

.footer #lng-select {
  border: 1px solid #b8b0b0;
}

.copyright-text {
  font-size: 14px;
  margin: 20px 0px;
}

.developer {
  text-align: center;
  padding: 20px;
}

.developer p {
  color: #b10808;
  font-weight: bold;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */

@media (max-width: 768px) {
  .logo {
    width: 100px;
  }
  .header-content h1 {
    font-size: 32px;
  }

  .header-content h3 {
    font-size: 18px;
  }

  .features h2 {
    font-size: 25px;
  }

  .features-content {
    flex-direction: column;
    text-align: center;
  }

  .getStarted-section {
    flex-direction: column;
    gap: 15px;
  }

  .getStarted-section input {
    width: 100%;
    margin-left: 0;
  }

  .getStarted-section button {
    margin-left: 0;
  }

  .features-content {
    flex-direction: column;
    text-align: center;
  }

  .header-content h1 {
    font-size: 32px;
  }

  .header-content h3 {
    font-size: 18px;
  }

  .features h2 {
    font-size: 30px;
  }

  .getStarted-section {
    flex-direction: column;
    gap: 15px;
  }

  .getStarted-section input {
    width: 100%;
    margin-left: 0;
  }

  .getStarted-section button {
    margin-left: 0;
  }

  .footer .row {
    flex-direction: column;
    gap: 20px;
  }
}
