@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: "Martel Sans", sans-serif;
}

/* Hero Section */
.main {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url("https://assets.nflxext.com/ffe/siteui/vlv3/9d3533b2-0e2b-40b2-95e0-ecd7979cc88b/a3873901-5b7c-46eb-b9fa-12fea5197bd3/IN-en-20240311-popsignuptwoweeks-perspective_alpha_website_medium.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Navigation */
nav {
    width: 80%;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 20px 60px;
    position: relative;
    z-index: 10;
}

nav img {
    width: 148px;
    height: auto;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 8px 16px;
    background-color: rgba(23,23,23,0.7);
    color: white;
    border-radius: 5px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgba(23,23,23,0.9);
}

.red-btn {
    background-color: #E50914;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.red-btn:hover {
    background-color: #c6050f;
}

.red-btn-sm {
    background-color: #E50914;
    border: none;
    color: white;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.red-btn-sm:hover {
    background-color: #c6050f;
}

/* Hero Content */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    gap: 24px;
    padding: 0 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero p {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 400;
    margin-bottom: 8px;
}

.hero .subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.hero-input {
    flex: 1;
    padding: 16px 12px;
    font-size: 16px;
    background-color: rgba(23,23,23,0.7);
    color: white;
    border-radius: 5px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    min-width: 200px;
}

.hero-input::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Section Separator */
.seperation {
    height: 8px;
    background: linear-gradient(to right, rgba(33, 13, 22, 1) 16%, rgba(184, 40, 105, 1), rgba(229, 9, 20, 1), rgba(184, 40, 105, 1), rgba(33, 13, 22, 1) 84%);
}

/* Feature Sections */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    padding: 80px 20px;
    gap: 60px;
}

.feature-content {
    flex: 1;
    max-width: 500px;
}

.feature-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-content p {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.4;
}

.feature-media {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-media img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.feature-media video {
    position: absolute;
    width: 75%;
    height: auto;
}

/* Specific positioning for different sections */
.first .feature-media video {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.third .feature-media video {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    z-index: -1;
}



/* FAQ Section */
.FAQ {
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.FAQ h2 {
    text-align: center;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 40px;
}

.faq-item {
    background-color: #2d2d2d;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #414141;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    cursor: pointer;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

/* CTA Section */
.cta-section {
    text-align: center;
    color: white;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 24px;
}

.cta-section .hero-buttons{
  padding-left: 40px;
}

/* Footer */
footer {
    color: rgb(179, 179, 179);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-weight: 300;
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact a {
    color: rgb(179, 179, 179);
    text-decoration: underline;
}

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

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

.footer-column a {
    color: rgb(179, 179, 179);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-country {
    margin: 20px 0;
    font-size: 16px;
}

.footer-legal {
    font-size: 13px;
    line-height: 1.4;
}

.footer-legal a {
    color: lightblue;
    text-decoration: underline;
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
    nav {
        height: 60px;
        padding: 15px 0;
    }
    
    nav img {
        width: 120px;
    }

    .main {
        height: 80vh;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-input {
        width: 100%;
    }

    .red-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
        text-align: center;
    }

    .feature-section.reverse {
        flex-direction: column;
    }

    .feature-media {
        order: -1;
    }

    .feature-section.reverse .feature-media {
        order: 1;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    nav {
        padding: 10px 15px;
        height: 50px;
    }

    nav img {
        width: 100px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .red-btn-sm {
        padding: 6px 12px;
        font-size: 12px;
    }

    .main {
        height: 70vh;
    }

    .hero {
        gap: 20px;
        padding: 0 15px;
    }

    .feature-section {
        padding: 40px 15px;
        gap: 30px;
    }

    .FAQ {
        padding: 40px 15px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 40px 15px;
    }
}

/* Icon styles */
.language-icon, .dropdown-icon, .arrow-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}