@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: black;
    color: white;
}

body {
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

/* Main hero background */
.main {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url("images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Navbar */
nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 70px;
}

nav img {
    height: 70px;
    width: 140px;
}

nav button {
    margin-left: 10px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.lang-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.sign-in-btn {
    background-color: red;
    color: white;
    border: none;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
}

.hero h2 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    margin: 1rem 0;
    max-width: 650px;
}

.hero div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.email-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.email-form input {
    background-color: transparent;
    color: gray;
    border: 1px solid #8c8c8c;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.email-form input::placeholder {
    color: #8c8c8c;
}

.email-form button {
    background-color: red;
    color: white;
    padding: 13px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
}

/* Trending Section */
.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.image-row {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 10px 0;
    scrollbar-width: thin;
}

.image-row::-webkit-scrollbar {
    display: none;
}

.image-container {
    position: relative;
    flex-shrink: 0;
}

.image-container img {
    width: 112px;
    height: 156.8px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.rank {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* Reasons Section */
.reasons {
    padding: 50px 20px;
    background-color: #000;
    text-align: center;
}

.reasons h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.reason-card {
    background: linear-gradient(to right, #1a1a2e, #1f1f2f);
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    min-height: 180px;
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reason-card p {
    color: #ccc;
    font-size: 0.95rem;
}

.reason-card img {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
}

.faq {
    background-color: black;
    color: white;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq details {
    background: #303030;
    margin-bottom: 10px;
    border: none;
    padding: 0;
   
}

.faq summary {
    list-style: none;
    padding: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    
}

.faq summary::-webkit-details-marker {
    display: none;
    
}

.faq summary::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    right: 20px;
   
}

.faq details[open] summary::after {
    content: '×';
    transform: rotate(45deg);
}

.faq p {
    padding: 20px;
    font-size: 1.2rem;
    margin: 0;
    border-top: 1px solid #555;
   
}

.footer {
    background-color: #000;
    color: #757575;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer a {
    color: #757575;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer p {
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.lang-select {
    margin-bottom: 20px;
}

.lang-select select {
    background-color: #000;
    color: #757575;
    padding: 10px 15px;
    border: 1px solid #757575;
    font-size: 14px;
}
.email-container {
  text-align: center;
  margin: 40px 20px;
  color: white;
}




.netflix-footer {
  background-color: #000;
  color: #999;
  font-size: 14px;
  padding: 40px 20px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto; 
}

.language-selector {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #666;
  border-radius: 4px;
  padding: 8px 12px;
  color: #fff;
  margin-bottom: 20px;
}

.language-selector select {
  background: transparent;
  color: #fff;
  border: none;
  outline: none;
  font-size: 14px;
  margin-left: 8px;
}

.language-selector select option {
  color: #000;
}

.globe-icon {
  font-size: 16px;
}

.netflix-footer .country {
  margin: 10px 0;
  color: #aaa;
}

.netflix-footer .recaptcha-text {
  font-size: 13px;
  color: #666;
}

.netflix-footer .recaptcha-text a {
  color: #3b82f6;
  text-decoration: none;
}



