/* Global Styles */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #141414;
  margin: 0;
  padding: 0;
}

/* Section 1 Styling */
.sec1 {
  width: 100vw;
  height: 700px;
  position: relative;
  overflow: hidden;
  background-attachment: fixed; /* Parallax Effect */
}

.sec1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://assets.nflxext.com/ffe/siteui/vlv3/4da5d2b1-1b22-498d-90c0-4d86701dffcc/2151f7fd-6774-492c-8821-99c3b23be48d/PK-en-20240129-popsignuptwoweeks-perspective_alpha_website_large.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 1;
}

.text {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: white;
  text-align: center;
}

.text-heading {
  font-size: 3rem;
  margin-top: 15%;
  font-weight: bold;
}

.text-line-1,
.text-line-2 {
  font-size: 1rem;
  margin-top: 1.5%;
  line-height: 1.4;  /* Improved line height for better readability */
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 2% 5%;
  position: relative;
  z-index: 2;
}

.navtext {
  color: #e50914;
  font-family: 'Protest Revolution', sans-serif;
  font-size: 25pt;
  padding-left: 10px;
}

.navbtn .signin-btn {
  background-color: #e50914;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 14pt;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbtn .signin-btn:hover {
  background-color: #ff4040;
}

.navbtn .signin-btn:focus {
  outline: 2px solid #ff4040;
  transform: scale(1.05);  /* Smooth transition effect on focus */
}

/* Input Field Styling */
.input {
  display: flex;
  justify-content: center;
  margin-top: 2%;
}

.email {
  height: 50px;
  width: 300px;
  padding-left: 15px;
  border: 2px solid #333;
  border-radius: 5px;
  background-color: #1c1c1c;
  color: white;
  font-size: 14pt;
}

.email::placeholder {
  color: #ccc;
}

.email:focus {
  outline: 2px solid #e50914;
  padding-left: 18px;  /* Added padding on focus for better visibility */
}

/* Button Styling */
.btn {
  height: 50px;
  width: 150px;
  background-color: #e50914;
  border: none;
  color: white;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #ff4040;
}

.btn:focus {
  outline: 2px solid #ff4040;
  transform: scale(1.05); /* Smooth transition effect on focus */
}

/* Shared Styles for Input and Button */
input,
button {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .text-heading {
    font-size: 2rem;
  }
  .text-line-1, .text-line-2 {
    font-size: 1rem;
  }
  .email {
    width: 250px;
  }
  .btn {
    width: 120px;
  }
}
