/* IMPORTED FONT */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* STYLING FOR ALL */
* {
  box-sizing: border-box;
  margin: 0;
  font-size: 16px;
  text-decoration: none;

}

body {
  font-family: 'Open Sans', sans-serif;
}

/* FONTS */
.card-title {
  font-size: 3.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-weight: 600;
}

.card-subtitle {
  font-size: 1.625rem;
  font-weight: 400;
  margin: 1rem 0;
}

.email-form-title {
  font-size: 1.2rem;
  font-weight: 400;
  padding-bottom: 20px;
}

/* BANNER WRAP SECTION */
.banner-wrap {
  background-image: url(./assets/bgimage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  border-bottom: 10px solid #222222;
  position: relative;
  z-index: 1;
}

.overlay {
  z-index: -1;
  height: 100%;
  width: 100%;
  background: black;
  position: absolute;
  top: 0;
  opacity: 60%;
}

h1 {
    font-size: 3.2rem;
    color: white;
}

/* NAVBAR */
.navbar {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    margin: 0 45px;
    padding-top: 45px;
}

.navbar > svg {
  height: 32px;
}

.navbar > svg {
  height: 32px;
}

.navbar > a {
  padding: 7px 17px;
  color: white;
  background-color: red;
  text-decoration: none;
  border-radius: 3px;
}

.banner-container {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 45px);
    text-align: center;
}

/* GET STARTED FORM */
.get-started-form {
  height: 60px;
  display: flex;
}

.get-started-form input {
  height: 100%;
  width: 450px;
  padding-left: 10px;
}

.get-started-form button {
  background-color:  red;
  color: white;
  height: 100%;
  font-size: 1.625rem;
  border: none;
  min-height: 60px;
  padding: 0 26px;
  border-left: 1px solid #333;
}

.get-started-form button:hover {
  background-color: rgb(70, 27, 27);
  transition: all 0.3s;
}

.sign-in:hover {
  color: black;
  transition: all 0.3s;
}

.info-container {   /* first non-static element 
                       and parent of the child */
  background: black;
  color: white;
  /* position: relative; */
  display: flex;
  padding: 70px 45px;
  border-bottom: 10px solid #222222;
}

.info {
  display: flex;
   flex-direction: column; /* using the column 
   changes the justify-content and align-items
   properties */
  justify-content: center;
}

/* VIDEO DISPLAY */
.tv-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-container img {
  z-index: 1;
}

.tv-container video {
  position: absolute;
}

/* FOOTER */
footer {
  background: black;
}

.footer-items {
  margin: 0 47.5px;
  padding: 70px 45px;
}

.footer-top {
  margin-bottom: 30px;
}

footer ul li, .questions-title {
  color: #757575;
}

.footer-links li {
  font-size: 13px;
  line-height: 2;
}

footer ul li:hover {
  text-decoration: underline;
  cursor: pointer;
}

.questions-title:hover {
  text-decoration: underline;
}

.footer-links {
  list-style-type: none;
  columns: 4;
  padding: 0;
}

.language {
  height: 53px;
  width: 142px;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #999999;
  padding: 0 10px;
  margin-top: 30px;
  border-radius: 3px;
}

.language select {
  padding: 10px;
  width: 100%;
  border: none;
  /* appearance: none; */
  background: black;
  color: #999999;
  /* background: url(./assets/carrot.png) no-repeat 100%; */
} 

/* FAQ SECTION */
.faq-section {
  background: black;
  border-top: 8px solid #222; /* thicker divider for emphasis */
  padding: 50px 20px;
}

.faq {
  color: #fff;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq h2 {
  font-size: 2.5rem; 
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  color: #e50914; /* Netflix red heading */
}

.faq details {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.faq summary:hover {
  color: #e50914; /* Netflix red on hover */
}

.faq p {
  margin: 12px 0 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  transition: all 0.3s ease;
}