* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: black;
  color: white;
}
.lang-select {
  display: inline-block;
  margin-right: 10px;
}

.lang-select a {
  color: white;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-dropdown select {
  padding: 6px 10px;
  background-color: black;
  color: white;
  border: 1px solid red;
  border-radius: 4px;
}


.logo {
  font-size: 2rem;
  font-weight: bold;
  color: red;
}

.btn {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}
/* Hero */
.hero {
  height: 100vh;
  background: url('https://assets.nflxext.com/ffe/siteui/vlv3/f7f833e7-cc1c-4a3a-b46e-70b0c6db0d93/8b93c18c-d221-4a27-88c3-59bfc95c1217/IN-en-20230605-popsignuptwoweeks-perspective_alpha_website_large.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.email-form input {
  padding: 10px;
  font-size: 1rem;
  width: 300px;
  max-width: 80%;
  border: none;
  outline: none;
}
.email-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
}.movie-cards {
  padding: 40px 20px;
  background-color: #111;
  color: white;
}
.movie-cards h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center; /* 👈 centers the heading */
  color: #fff;
}
.card-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.movie-card {
  width: 180px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.movie-card img {
  width: 180px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.card-text {
  color: white;
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
}
.movie-section {
  padding: 40px 20px;
  background-color: #111;
  color: white;
}

.movie-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.scroll-wrapper {
  position: relative;
}

.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.7);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.card-row {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.card-row::-webkit-scrollbar {
  display: none;
}
