/* Base Styles */
:root {
    --primary-color: #e50914;
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --gray-dark: #303030;
    --gray-light: #757575;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --dark-color: #f4f4f4;
    --light-color: #141414;
    --gray-dark: #e6e6e6;
    --gray-light: #9e9e9e;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: var(--light-color);
}

img {
    width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
}

.btn:hover {
    opacity: 0.9;
}

.btn-signin {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 3rem;
    background: rgba(229, 9, 20, 0.9);
}

 .navbar-container {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.dropbtn {
    background-color: transparent;
    color: var(--light-color);
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: var(--light-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

 .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
} 

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-logo .logo {
    width: 80%;
    max-width: 500px;
    height: auto;
    
    opacity: 0; 
    transform: translateX(-20px); 
    animation: fadeInSlide 1s ease-out 0.5s forwards; 
}
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: 3.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.625rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    } */
    
    .hero-logo {
        justify-content: center;
    }
    
    .hero-logo .logo {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-get-started {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-logo .logo {
        width: 80%;
    }
} 
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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_large.jpg') no-repeat center center/cover;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.movie-card:hover .card-overlay {
    opacity: 1;
}

.card-info {
    width: 100%;
}

/* Footer */
.footer {
    background-color: rgba(0,0,0,0.8);
    padding: 70px 0;
    color: #757575;
    border-top: 8px solid #222;
    font-size: 13px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4%;
}

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

.footer-top p {
    color: #757575;
    font-size: 1em;
}

.footer-top a {
    color: #757575;
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links-column {
    flex-basis: 25%;
    margin-bottom: 20px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 16px;
}

.footer-links-column a {
    color: #757575;
    text-decoration: none;
}

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

.footer-bottom {
    margin-top: 20px;
}
.footer-bottom p{
    font-size: small;
}

.dropbtn {
    background-color: #000;
    color: #757575;
    padding: 8px 10px 8px 20px;
    font-size: 13px;
    border: 1px solid #333;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 140px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid #333;
}

.dropdown-content a {
    color: #757575;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.footer-copyright {
    color: #757575;
    font-size: 11px;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .footer-links-column {
        flex-basis: 50%;
    }
}

@media (max-width: 500px) {
    .footer-links-column {
        flex-basis: 100%;
    }
    
    .footer {
        padding: 50px 0;
    }
    
    .footer-container {
        padding: 0 5%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-links li {
        flex-basis: calc(33.33% - 1rem);
    }
}

@media (max-width: 480px) {
    .footer-links li {
        flex-basis: calc(50% - 1rem);
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .text-content {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .text-content p {
        font-size: 1.2rem;
    }
    
    .media-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-items {
        gap: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    } 
}
/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: #1E1427;
    border-top: 8px solid #2a1d3b;
    border-bottom: 8px solid #2a1d3b;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    padding: 0 3rem;
    color: #fff;
}

.text-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.text-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.media-content {
    flex: 1;
    position: relative;
}

.media-container {
    position: relative;
}

.media-container img {
    position: relative;
    z-index: 2;
}

.media-animation {
    position: absolute;
    top: 20%;
    left: 13%;
    width: 73%;
    height: 60%;
    z-index: 1;
}

.media-animation video {
    width: 100%;
    height: 100%;
}

.content-section:nth-child(3) .media-animation {
    top: 10%;
    left: 15%;
    width: 70%;
    height: 80%;
}

.download-container {
    position: relative;
}

.download-animation {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    width: 60%;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    z-index: 3;
}

.download-poster {
    width: 20%;
    margin-right: 1rem;
}

.download-text {
    flex: 1;
    font-size: 0.9rem;
    color: #fff;
}

.download-text div:first-child {
    font-weight: bold;
}

.download-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Kids profile image */
.content-section:nth-child(4) .media-content img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .text-content {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .text-content p {
        font-size: 1.2rem;
    }
    
    .media-content {
        width: 100%;
    }
}

/* Animation Classes */
.content-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for each section */
.content-section:nth-child(1) { transition-delay: 0.2s; }
.content-section:nth-child(2) { transition-delay: 0.4s; }
.content-section:nth-child(3) { transition-delay: 0.6s; }
.content-section:nth-child(4) { transition-delay: 0.8s; }

/* Media content animations */
.media-container img {
    transition: transform 0.5s ease-out;
}

.content-section.animate .media-container img {
    transform: scale(1.05);
}

/* Text content animations */
.text-content h2 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.text-content p {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}

.content-section.animate .text-content h2,
.content-section.animate .text-content p {
    opacity: 1;
    transform: translateX(0);
}

/* Reverse animation for alternate sections */
.reverse .text-content h2,
.reverse .text-content p {
    transform: translateX(30px);
}

.content-section.animate.reverse .text-content h2,
.content-section.animate.reverse .text-content p {
    transform: translateX(0);
}
/* Movie Rows */
.movie-rows {
    padding: 3rem 0;
    background-color: #1E1427;
    border-top: 8px solid #2a1d3b;
    border-bottom: 8px solid #2a1d3b;
}

.row-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.row-content {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: #e50914 #1E1427;
    padding-bottom: 1.5rem;
}

.row-content::-webkit-scrollbar {
    height: 8px;
}

.row-content::-webkit-scrollbar-track {
    background: #1E1427;
}

.row-content::-webkit-scrollbar-thumb {
    background-color: #e50914;
    border-radius: 10px;
}

.movie-card {
    min-width: 180px;  
    width: 150px;     
    height: 210px;    
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    display: block;
    transition: transform 0.3s ease;
}

.movie-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .movie-card {
        min-width: 120px;
        width: 120px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .movie-card {
        min-width: 100px;
        width: 100px;
        height: 150px;
    }
}

/* Custom FAQ Section */
.custom-faq {
    background-color: #1E1427;
    padding: 4rem 0;
    border-top: 8px solid #2a1d3b;
    border-bottom: 8px solid #2a1d3b;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
}

.faq-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

.faq-accordion {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-faq {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 4px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-faq:hover {
    background: #f40612;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .btn-faq {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}