/* Basic reset and layout */
html,
body {
    scroll-behavior: smooth;

    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s;
    }

    #menu-toggle:checked~.nav-links {
        transform: translateX(0);
    }

    .menu-icon {
        display: block;
    }
}


/* Sections */
section {
    display: none;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

section.active {
    display: block;
    animation: fade 0.6s;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section */
.hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;


}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    color: white;
}

.btn:hover {
    opacity: 0.9;
}

/* Highlight box */
.highlight {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
}

/* About section */
.about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about img {
    max-width: 400px;
    border-radius: 15px;
    flex: 1;
}

.about .text {
    flex: 2;
}

/* Grid for tracks */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    width: 80%;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 50%;
    border-radius: 10px;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Forms */
form {
    display: grid;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

input,
textarea,
select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}

/* Buttons */
button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

footer p {
    margin: 0;
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: #1f1b2e;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.popup-content .private-title {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

/* Month boxes in Shows section */
.month-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.month {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    flex: 1 1 250px;
    min-width: 200px;
}

.month h3 {
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.month ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month ul li {
    padding: 5px 0;
}



/* 🎵 Custom Audio Player Container */
.seekBar {
    flex: 1;
    width: 100%;
    /* Full width of parent container */
    height: 10px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    margin: 0;
    /* Extra gap remove */
    padding: 0;
    /* Thumb alignment fix */
}

.seekBar::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
}

.seekBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #007bff;
    margin-top: -4px;
    /* Thumb vertically center */
}

.custom-audio-player {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    /* Ensure full width for slider alignment */
}

.controls-top {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    /* Full width of player container */
}

.seekBar {
    flex: 1;
    min-width: 0;
    /* Prevent overflow issues */
}

.current-time,
.duration {
    font-size: 14px;
    color: #fff;
    min-width: 35px;
    text-align: center;
    white-space: nowrap;
}




/* ======================= */
/* Toast Notifications CSS */
/* ======================= */
.custom-toast {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}


