* .iosevka-charon-light {
  font-family: "Iosevka Charon", monospace;
  font-weight: 300;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(rgba(0,0,0.3),rgba(0,0,0,0.3)), url(assets/netflligdash.jpeg);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
     background-image: linear-gradient(rgba(0,0,0.6),rgba(0,0,0,0.6)), url(assets/netflligdash.jpeg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.6); */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}
/* EMAIL SIGNUP FORM */
.email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 20px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 4px 0 0 4px;
    background: rgba(22, 22, 22, 0.7);
    color: #fff;
    min-width: 300px;
}

.email-input::placeholder {
    color: #8c8c8c;
}

.get-started-btn {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #f40612;
}

/* TRENDING SECTION */
.trending {
    border-top: 2px solid red;
    padding: 30px 0;
    background-color: #000;
}

.trending h2 {
    font-size: 2rem;
    /* margin-bottom: 30px; */
    /* margin-top: 0px; */
    font-weight: 600;
}

.movie-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.movie-card {
    flex: 0 0 auto;
    width: 200px;
}

.movie-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.movie-card img:hover {
    transform: scale(1.05);
}
/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background-color: #000;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(149deg, #192247 0%, #210e17 96.86%);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

/* FAQ SECTION */
.faq {
    padding: 80px 0;
    background-color: #000;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    margin-bottom: 8px;
    background-color: #2d2d2d;
    border-radius: 4px;
}

.faq-item summary {
    padding: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '×';
}

.faq-content {
    padding: 0 24px 24px;
    border-top: 1px solid #404040;
}

.faq-content p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.faq-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-signup p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/* FOOTER */
.footer {
    padding: 80px 0 40px;
    background-color: #000;
    border-top: 1px solid #333;
}

.footer p {
    color: #737373;
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: #737373;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-country {
    color: #737373;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .email-signup {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-input {
        border-radius: 4px;
        min-width: auto;
        width: 100%;
    }
    
    .get-started-btn {
        border-radius: 4px;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item summary {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .faq-content p {
        font-size: 1.2rem;
    }
}
.logo img {
    width: 200px;
    padding-left: 50px;

}

 nav .btn {
    padding: 8px 12px;
    padding-bottom: 5px;
     margin-left: 900px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
}

nav {
    display: flex;
    
}

nav .btn a {
    color: #f40612;
}

.red-line {
    position: absolute;
    top: 96%;
    border-top: 2px solid red;

}