/* Base Styles */
:root {
    --primary: #FFD700;
    --secondary: #CE1126;
    --accent: #009639;
    --dark: #000000;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


section {
    padding: 80px 20px;
}

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

h1,
h2,
h3,
h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

p {
    margin-bottom: 15px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container img {
    height: 50px;
    margin-right: 15px;
    mix-blend-mode: multiply;
}

.logo {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: auto;

}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;

}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Navbar Social Icons */
.nav-social {
    display: flex;
    align-items: center;
    margin-left: 20px;
    gap: 10px;
}

.nav-social a {
    background: var(--secondary);
    color: var(--light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social a:hover {
    background: #ec0c26;

}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--dark);
    font-size: 1.5rem;
    position: relative;
    z-index: 1001;
}



/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('images/pan.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light);
    line-height: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    background: rgba(206, 17, 38, 0.8);
    padding: 15px 40px 15px 40px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.4;
}

/* About Section */
.about {
    background: var(--gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}



.mission-box {
    padding: 10px 30px 0 30px;
    border-radius: 10px;

}

.mission-box h3 {
    font-size: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.extra-margin {
    margin-bottom: 15px;
}

.mission-item i {
    background: var(--primary);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.mission-item h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--dark);
}

.mission-item p {
    line-height: 1.5;
}



/* Steelpan Section */
.steelpan-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Projects Section */
.projects {
    background: var(--gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-content {
    padding: 25px;
}

.festival-logo {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.festival-logo img {
    max-width: 160px;
    margin-right: 15px;
}

.watch-btn {
    display: inline-block;
    text-align: center;
    background: var(--secondary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.watch-btn:hover {
    background: #ec0c26;
}



/* Partners Section */
.partners-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partners-text {
    flex: 1;
}

.partners-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.partners-img img {
    width: 100%;
    height: auto;
    display: block;
}

.partners-strip {
    background: var(--gray);
    color: var(--dark);
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
}

.partner-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.partner-pill {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    backdrop-filter: blur(10px);
}

.partner-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}


.partner-pill.show {
    opacity: 1;
    transform: translateY(0);
}

#partner-cta {
    text-align: center;
    background: var(--secondary);
    background: linear-gradient(135deg, var(--secondary), #ec0c26);
    color: var(--light);
    padding: 30px 20px 20px 20px;
    font-size: 1.3rem;
    width: 100%
}

#partner-cta strong {
    color: var(--primary);
}

/* Partner CTA Animation */
#partner-cta p {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

#partner-cta p.show {
    opacity: 1;
    transform: translateY(0);
}



/* Contact Section */
.contact {
    background: var(--gray);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background: var(--primary);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 30px 20px;
}

/* Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .partners-content,
    .contact-content {
        flex-direction: column;
    }

    .about-img,
    .partners-img {
        order: -1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;

    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links a {
        color: var(--light);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-social {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }


    .partner-pill {

        padding: 6px 25px;

        font-size: 0.9rem;

    }


    h2 {
        font-size: 2rem;
    }


    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.6rem;

    }

}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateX(0);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ec0c26;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hideme {
    display: none !important;
}

footer p {
    margin-bottom: 0px;
}

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

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


.hero-thumb {
    width: 150px;
    padding: 10px;
    background: var(--light);
    border-radius: 20px;
    max-height: 120px;
    margin-bottom:20px;
}

.mylist {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 10px;
    padding-left: 0;
}

.mylist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

/* Add yellow check icons before each bullet */
.mylist li::before {
    content: "\f00c";
    /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;

}


.social-links a {
    display: inline-block;
    background: var(--text);
    color: var(--light);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--dark);
    
}




/* Steelpan Image Strip */
.steelpan-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.steelpan-strip img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.steelpan-strip img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Animation setup for steelpan images */
.steelpan-strip img {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.steelpan-strip img.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .steelpan-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .steelpan-strip img {
        height: 180px;
    }
}

@media (max-width: 600px) {


    .steelpan-strip img {
        height: 150px;
    }

    #partner-cta {
        font-size: 1.1rem;
    }

        .mission-box {
            padding: 15px 15px 0 15px;
        }
}