/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    padding: 3rem 1rem;
    text-align: center;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section with Video Background */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0 0 1rem;
}

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

.buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    border: none;
}

.btn-secondary:hover {
    background: #495057;
}

/* Soundtrack Section */
#soundtrack {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

#soundtrack h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#soundtrack p {
    margin-bottom: 1.5rem;
}

#soundtrack .platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#soundtrack .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
}

/* FAQ Section */
#faq {
    background: #f8f8f8;
    padding: 4rem 1rem;
    text-align: center;
}

#faq h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.faq-item p {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    display: none; /* Initially hidden */
}

.faq-item.active p {
    display: block; /* Show content when active */
}

.faq-link {
    color: #007bff;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-feedback {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.faq-feedback a {
    color: #007bff;
    text-decoration: none;
}

.faq-feedback a:hover {
    text-decoration: underline;
}

/* FAQ Transition Effect */
.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Footer Section */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .buttons .btn {
        font-size: 0.9rem;
    }

    #soundtrack h2, #faq h2 {
        font-size: 1.8rem;
    }

    #faq .faq-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}


/* About Section */
#about {
    background: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

#about p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 1rem;
    }
}