body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

header {
    background: url(headerbg.png) center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-in;
    position: relative;
}

header img.logo {
    width: 150px;
    position: absolute;
    top: 20px;
    left: 20px;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

header a {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

header a:hover {
    background: #c0392b;

}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    animation: fadeInUp 1s ease-in;
}

.about {
    text-align: center;

}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 1rem auto;
    text-align: center;
}

.about-background {
    background: url('aboutbg.png') center/cover no-repeat;
    background-attachment: fixed;
    width: 100%;
    animation: fadeIn 2s ease-in;
}


.intro-photos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.intro-photos img {
    width: 45%;
    border-radius: 8px;
    animation: fadeInUp 2s ease-in;
}

.movies {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

#movies h2 {
    text-align: center;
}



.movie {
    flex: 1 1 400px;
    background: #222;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.movie:hover {
    transform: translateY(-5px);
}

.movie iframe {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    border: none;
}

.learn-more {
    color: #e74c3c;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

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

.social a {
    margin: 0 1rem;
    color: #e74c3c;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social a:hover {
    color: #c0392b;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    font-size: 0.9rem;
}

.collaborations {
    padding: 4rem 2rem;
    text-align: center;
}

.collaborations h2 {
    margin-bottom: 1rem;
}

.collaborations p {
    margin-bottom: 2rem;
}

.playlist iframe {
    border-radius: 8px;
}

.contact-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.75rem 1.5rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 1rem;
}

.contact-button:hover {
    background: #c0392b;
}



@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 2rem 1rem;
    }

    header h1 {
        font-size: 2.5rem;
        margin-top: 5rem;
    }

    header p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    header img.logo {
        width: 100px;
        max-width: 30%;
        top: 10px;
        left: 10px;
    }
    
    

    .contact-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        top: 10px;
        right: 10px;
    }

    .intro-photos {
        flex-direction: column;
        align-items: center;
    }

    .intro-photos img {
        width: 90%;
        margin-bottom: 1rem;
    }

    .movies {
        flex-direction: column;
        align-items: center;
    }

    .movie {
        width: 90%;
    }

    .movie iframe {
        height: 200px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .social a {
        display: block;
        margin: 0.5rem auto;
    }

    .about p {
        padding: 0 1rem;
    }

    .collaborations iframe {
        width: 100%;
        height: 250px;
    }
}

