/*
        ==================================
        NEW DESIGN: MIDNIGHT INDUSTRIAL
        ==================================
        */

:root {
    --bg-color: #121212;
    --panel-color: #1A1A1A;
    --text-color: #E0E0E0;
    --text-muted: #888888;
    --accent-color: #FFFFFF;
    --accent-hover: #E0E0E0;
    --border-color: #333333;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Base & Typography */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    /* Subtle noise texture for an industrial feel */
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAKxJREFUaIHt1rENACAMAEHt/Vd7wWoESUrA/c33f2dkZ2SnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6VnpWelZ6Vn5vM0N8AImTjP4vH4AAAAASUVORK5CYII=');
    font-family: var(--font-body);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: 1.5px;
    color: #FFFFFF;
}

p {
    line-height: 1.7;
    color: var(--text-muted);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--bg-color);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 6rem 0;
    overflow: hidden;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1600px;
    /* widen header */
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    flex: 1;
}

.nav-brand img:not(.logo-text-image) {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid var(--accent-color);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text-image {
    max-height: 32px;
    width: auto;
    border-radius: 0 !important;
    border: none !important;
    margin-right: 0;
    margin-left: 0.75rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1.5;
    /* reduce center dominance so edges spread */
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta .btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Widen navbar spacing on large screens */
@media (min-width: 1200px) {
    .nav-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    line-height: 1;
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }

    .nav-brand {
        flex: none;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Smaller nav logo on mobile */
    .logo-text-image {
        max-height: 22px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--panel-color);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-left: 1px solid var(--border-color);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Components */
.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    color: var(--accent-color);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 80px;
    /* Account for header */
    margin-bottom: 80px;
    /* Account for CTA section */
}

.mobile-menu-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-mobile {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff6b35, var(--accent-color));
}

/* Hero Section */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 5s ease-in-out;
    filter: grayscale(70%) contrast(1.2) brightness(0.8);
    z-index: 1;
    transform: scale(1);
}

.hero-slide:nth-child(1) {
    background-image: url('./Asstes/jai (1).jpeg');
}

.hero-slide:nth-child(2) {
    background-image: url('./Asstes/jai (4).jpeg');
}

.hero-slide:nth-child(3) {
    background-image: url('./Asstes/jai (5).jpeg');
}

.hero-slide.active {
    opacity: 1 !important;
    z-index: 2;
    animation: zoomInOut 5s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 25%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 75%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 8rem;
    line-height: 1;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8));
}

.hero-welcome {
    text-align: center;
    margin: 2rem auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-welcome-line {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
    padding: 0.25rem 0.85rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 9999px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 1rem 0;
}

.hero-name-logo {
    max-height: 85px;
    width: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
    display: block;
    margin-right: 20px;
}

.hero-name-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8));
}

.hero-description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-role {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.hero-location {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-divider {
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-color);
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero-welcome {
        margin: 1.5rem auto;
        max-width: 90%;
    }

    .hero-title-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .hero-welcome-line {
        font-size: clamp(1.4rem, 6vw, 2rem);
        letter-spacing: 2px;
        display: block;
        margin: 0 0 0.4rem 0;
        white-space: normal;
        overflow-wrap: anywhere;
        padding: 0.2rem 0.6rem;
    }

    .hero-name {
        display: flex;
        margin-bottom: 0.75rem;
    }

    .hero-name-logo {
        max-height: 60px;
        margin-right: 16px;
    }

    .hero-description {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .hero-role,
    .hero-location {
        font-size: 1.1rem;
        letter-spacing: 1px;

    }

    .hero-tagline {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 20px;
    }

    .hero-cta {
        flex-direction: column;
        width: 80%;
    }

    .hero-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .hero-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Live Moments: 2x2 grid on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img,
    .gallery-item video {
        height: 180px;
    }
}

/* About Section */
#about .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#about .about-image img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.5s ease;
}

#about .about-image:hover img {
    filter: grayscale(0%);
}

#about h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.skills-grid {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-item .skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.skill-bar-bg {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 1px;
}

.skill-bar-fill {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.stat-item {
    background-color: var(--panel-color);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-color);
}

.stat-item .stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    #about .grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Bio Styling */
.bio-header {
    margin-bottom: 3rem;
    text-align: center;
}

.bio-header h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.bio-tagline:before,
.bio-tagline:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.bio-tagline:before {
    left: 0;
}

.bio-tagline:after {
    right: 0;
}

.bio-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bio-card {
    background: var(--panel-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bio-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: left 0.5s ease;
}

.bio-card:hover:before {
    left: 100%;
}

.bio-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.bio-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.bio-card-icon i {
    font-size: 1.5rem;
    color: var(--bg-color);
}

.bio-card:hover .bio-card-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.bio-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.bio-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.bio-card p strong {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .bio-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bio-header h3 {
        font-size: 2.5rem;
    }

    .bio-card {
        padding: 1.5rem;
    }
}

/* Music Section */
#music {
    background-color: var(--panel-color);
}

#music .spotify-embed {
    max-width: 900px;
    margin: 2rem auto 0 auto;
}

#music iframe {
    border-radius: 2px !important;
    border: 1px solid var(--border-color);
}

/* Services Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.package-card.popular {
    border-color: var(--accent-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 0.25rem 1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    transform: translateY(-50%);
}

.package-card h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.package-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 40px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    text-align: center;
    color: var(--accent-color);
    margin: auto 0 2rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.features-list .fa-check {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.features-list .fa-times {
    color: #555;
    margin-right: 0.75rem;
}

.package-card .btn {
    width: 100%;
}

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

@media (max-width: 768px) {
    .packages-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .package-card h3 {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 2.5rem;
    }
}

/* Gallery Section */
#gallery {
    background-color: var(--panel-color);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%) contrast(1.1);
}

/* Ensure videos in the grid match image sizing */
.gallery-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background: #000;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Events Section */
.event-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    align-items: stretch;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.event-item:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.event-date {
    padding: 1.5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--accent-color), #ffc58a);
    color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}

.event-date .month {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.event-date .day {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.event-info {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
}

.event-info p {
    margin: 0;
    color: var(--text-muted);
}

.event-info .location {
    color: var(--text-color);
    font-weight: 500;
}

.event-action {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.event-action .btn-secondary {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
    }

    .event-action {
        justify-content: flex-start;
        padding-top: 0;
    }
}

/* Testimonials Section */
#testimonials {
    background-color: var(--panel-color);
}

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

.testimonial-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* When no photo is shown, reduce left padding/gap */
.testimonial-author.no-photo {
    gap: 0.5rem;
}

.testimonial-author.no-photo .author-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-author.no-photo img {
    display: none !important;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #fff;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    padding: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.contact-info-item h4 {
    font-size: 1.5rem;
    margin: 0 0 0.25rem 0;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-control {
    width: 100%;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--panel-color);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h4 {
    font-size: 1.75rem;
}

.footer-logo {
    max-height: 40px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Smaller footer logo on mobile */
@media (max-width: 768px) {
    .footer-logo {
        max-height: 28px;
    }
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Disabled footer social link state injected by site-settings.js */
.footer-socials a.social-disabled {
    opacity: .35;
    filter: grayscale(1);
    cursor: not-allowed;
    pointer-events: none;
    transition: opacity .2s ease;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--bg-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.footer-contact .contact-info i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    width: 16px;
}

.footer-contact .contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-info a:hover {
    color: var(--accent-color);
}

.footer-cta {
    margin-top: 1.5rem;
}

.footer-cta .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-cta .btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

/* --- Utility & Helper classes --- */
.hidden {
    display: none;
}

/* --- Loading Screen (Original, kept for functionality) --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 155, 95, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* --- Modals (Original, restyled for new theme) --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal-content {
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #fff;
}

#galleryModal img {
    max-height: 75vh;
    object-fit: contain;
}

#galleryModal video {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    background: #000;
}

#galleryModal .modal-content {
    max-width: 1000px;
}

#modalImageTitle {
    font-size: 2rem;
    margin-top: 1rem;
}

#modalImageDescription {
    color: var(--text-muted);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-nav-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

#prevImage {
    left: 1rem;
}

#nextImage {
    right: 1rem;
}

/* --- Toast Notifications --- */
.toast-root {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6000;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--panel-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    min-width: 260px;
    max-width: 90vw;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

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

.toast .toast-icon {
    font-size: 18px;
}

.toast .toast-message {
    flex: 1;
}

.toast .toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

.toast .toast-close:hover {
    color: #fff;
}

.toast.info {
    border-left: 4px solid var(--accent-color);
}

/* Services Page Specific Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--bg-color) 0%, var(--panel-color) 100%);
    padding-top: 120px;
    padding-bottom: 4rem;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(15px);
        opacity: 0.9;
    }
}

.services-section {
    background-color: var(--panel-color);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Updated Package Card Styles */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.package-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.package-card h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    color: var(--accent-color);
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.features-list .fa-check {
    color: var(--accent-color);
    margin-right: 0.75rem;
    width: 16px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    color: var(--accent-color);
    margin: auto 0 2rem 0;
}

/* Add-ons Section */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.addon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addon-header .addon-info {
    display: flex;
    align-items: center;
}

.addon-header i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    width: 20px;
}

.addon-header span {
    font-weight: 600;
    color: var(--text-color);
}

.addon-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Background Effects */
.bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

.bg-circle:nth-child(3) {
    top: 60%;
    left: 60%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===== MUSIC PAGE STYLES ===== */

/* Music Hero Section */
.music-hero {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.music-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./Asstes/jai (1).jpeg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.music-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.music-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Music Controls */
.music-controls {
    padding: 2rem 0;
    background: rgba(26, 26, 26, 0.05);
    backdrop-filter: blur(10px);
}

.music-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #333;
    color: #333;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e50914;
    border-color: #e50914;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

/* Tracks Grid */
#music-tracks {
    padding: 4rem 0;
    background: var(--panel-color);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.track-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.track-card:hover .track-artwork img {
    transform: scale(1.05);
}

.track-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.track-play-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #e50914;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-play-btn:hover {
    background: #b8070f;
    transform: scale(1.1);
}

.track-info {
    padding: 1.5rem;
}

.track-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.track-artist {
    color: #666;
    margin-bottom: 1rem;
}

.track-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}

.track-genre {
    background: #e50914;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

/* Featured Playlists */
#featured-playlists {
    padding: 4rem 0;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.playlist-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.playlist-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.playlist-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.playlist-card:hover .playlist-artwork img {
    transform: scale(1.05);
}

.playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.playlist-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.playlist-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.playlist-actions {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.playlist-actions .btn-secondary {
    background: #333;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
}

.playlist-actions .btn-secondary:hover {
    background: #e50914;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

/* Track Modal */
.track-modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.track-modal-body {
    display: grid;

    .gallery-item video {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        filter: grayscale(0) contrast(1.05);
    }

    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.track-artwork {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-modal-content:hover .track-play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: #e50914;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #b8070f;
    transform: scale(1.1);
}

.track-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.track-info p {
    margin-bottom: 1rem;
    color: #666;
}

.audio-player {
    margin: 2rem 0;
}

.audio-player audio {
    width: 100%;
    height: 40px;
}

.track-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.track-actions .btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design for Music Page */
@media (max-width: 768px) {
    .music-hero-title {
        font-size: 2.5rem;
    }

    .music-hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .music-filters {
        padding: 0 1rem;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .track-modal-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .track-actions {
        flex-direction: column;
    }

    .track-actions .btn {
        min-width: auto;
    }
}

/* Subtle left border accents for upcoming vs past */
.event-item.upcoming {
    border-left: 3px solid #34d399;
}

.event-item.past {
    border-left: 3px solid #f59e0b;
}