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

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #fff8d6;
    color: #333;
    line-height: 1.6;
}
/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #f4d03f; /* gold */
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile menu hidden by default */
.nav-links {
    transition: max-height 0.4s ease;
}

.navbar a.active {
    color: #f4d03f; /* gold highlight */
    font-weight: bold;
}

/* Navigation Bar */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: #4b2e83;
    padding: 15px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* after scroll */
.navbar.scrolled {
    background: rgba(75, 46, 131, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	opacity:90%;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #f4d03f; 
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hero Section */
.hero {
    min-height: 90vh;
    height: auto;
    padding: 60px 20px;
    background: url('images/HeroImage.jpg') center/contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.hero-fade {
    opacity: 0;
    transform: translateY(30px);
    color: #2a1550; /* deep dark purple */
    transition: opacity 1s ease, transform 1s ease, color 1s ease;
}

.hero-fade.visible {
    opacity: 1;
    transform: translateY(0);
    color: #fff; /* or #f4d03f (gold) or your normal hero text colour */
}

.btn {
    background: #f4d03f;
    color: #4b2e83;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
}
/* Section Styling */
section {
    padding: 60px 10%;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4b2e83;
}

/* About Section */
.about p {
    max-width: 1000vm;
    margin: auto;
    font-size: 1.2rem;
    text-align: center;
	background: white;
	border-radius: 15px;
	font-family: "Times New Roman", Times, serif;
	size:10px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    align-items: start;
}


.song-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.spotify-more-btn {
    display: inline-block;
    margin: 30px auto 0;
    padding: 14px 30px;
    background: #1DB954; /* Spotify green */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.spotify-more-btn:hover {
    background: #17a74a;
    transform: scale(1.05);
}
.listen-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.videos-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumb-wrapper:hover .video-thumb {
    transform: scale(1.02);
}

/* Play button overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.video-thumb-wrapper:hover .play-button {
    background: rgba(0,0,0,0.8);
}
.platform {
    padding: 14px 26px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

/* Platform colours */
.platform.spotify {
    background: #1DB954;
}
.platform.apple {
    background: #000;
}
.platform.youtube {
    background: #FF0000;
}
.platform.audiomack {
    background: #FFA200;
}
.platform.boomplay {
    background: #00f8f8;
}

.platform:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#lightbox .close,
#lightbox .prev,
#lightbox .next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

#lightbox .close {
    top: 20px;
    right: 30px;
}

#lightbox .prev {
    left: 30px;
}

#lightbox .next {
    right: 30px;
}

#lightbox .prev:hover,
#lightbox .next:hover,
#lightbox .close:hover {
    color: #f4d03f;
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
}
.gallery-grid img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* Contact Section */
.contact p {
    text-align: center;
    font-size: 1.2rem;
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.video-card iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.video-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card img:hover {
    transform: scale(1.03);
}
.social-links {
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* YouTube */
.social.youtube {
    background: #ff0000;
}
.social.youtube:hover {
    background: #cc0000;
}

/* Facebook */
.social.facebook {
    background: #1877f2;
}
.social.facebook:hover {
    background: #0f5fcc;
}

/* Instagram (gradient) */
.social.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social.instagram:hover {
    opacity: 0.85;
}
/* Tiktok */
.social.tiktok {
    background: black;
}
/* Footer */
footer {
    background: #4b2e83;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {

    section {
        padding: 40px 6%;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 15px;
        background-position: center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

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

    .hero-content {
        max-width: 90%;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #f4d03f;
        border-radius: 3px;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #4b2e83;
        padding: 20px 0;
        gap: 15px;
    }

    .nav-links.open {
        display: flex;
    }

    .navbar a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

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

    iframe {
        width: 100% !important;
    }

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

    .gallery-grid img {
        height: 180px;
    }

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

    .video-thumb-wrapper {
        max-width: 100%;
    }

    .social-links {
        gap: 15px;
    }

    .social {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

}

