@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --netflix-red: #e50914;
    --netflix-red-hover: #f40612;
    --dark-bg: #000000;
    --text-color: #ffffff;
    --input-bg: rgba(0, 0, 0, 0.5);
    --border-color: rgba(255, 255, 255, 0.3);
    --max-width: 1100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero p, .cta-form {
    animation: fadeIn 0.8s ease-out forwards;
}

.main {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('./Images/IN-en-20241223-TRIFECTA-perspective_1502c512-be5f-4f14-b21a-e3d75fe159ab_large.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%),
                linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
}

nav {
    position: relative;
    z-index: 10;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
}

.logo img {
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

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

select {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid var(--border-color);
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background-color: var(--netflix-red);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--netflix-red-hover);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.hero {
    position: relative;
    z-index: 10;
    height: calc(100vh - 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.hero .email-note {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 600px;
}

.cta-form input {
    flex: 1;
    background: rgba(22, 22, 22, 0.7);
    border: 1px solid var(--border-color);
    color: white;
    padding: 18px;
    border-radius: 4px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cta-form input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(44, 44, 44, 0.8);
}

.btn-large {
    background-color: var(--netflix-red);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.btn-large:hover {
    background-color: var(--netflix-red-hover);
    transform: scale(1.02);
}

/* Feature Sections */
.separation-bar {
    height: 8px;
    background-color: #232323;
}

section {
    padding: 72px 20px;
    border-bottom: 8px solid #232323;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: space-between;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

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

.section-img {
    flex: 1;
}

.section-img img {
    width: 100%;
    display: block;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 8px solid #232323;
}

.faq h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    width: 100%;
    margin-bottom: 40px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #2d2d2d;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #414141;
}

.accordion-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.accordion-content {
    background-color: #2d2d2d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.1, 1);
    border-top: 1px solid #000;
}

.accordion-content p {
    padding: 24px 30px;
    font-size: 1.4rem;
    color: #fff;
}

.accordion-item input[type="radio"] {
    display: none;
}

.accordion-item input[type="radio"]:checked ~ .accordion-content {
    max-height: 1000px;
}

.accordion-item input[type="radio"]:checked ~ .accordion-header svg {
    transform: rotate(45deg);
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

/* Footer Styles */
footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 70px 20px 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

footer p {
    margin-bottom: 30px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

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

#footer-language-select {
    width: fit-content;
    padding: 12px 24px;
    background: black;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Responsiveness */
@media (max-width: 950px) {
    .section-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .section-text h2 {
        font-size: 2.2rem;
    }
    
    .section-text p {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .faq h2 {
        font-size: 2.2rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .cta-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        justify-content: center;
        font-size: 1.1rem;
    }

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