/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    font-family: 'Poppins', sans-serif;
    /* Premium Dark Theme with Spotlight Effect */
    background: radial-gradient(circle at 50% 50%, #2b0c44 0%, #1a0529 60%, #000000 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    /* Ensure width is constrained */
}

/* Spotlight Animation Overlay */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    animation: spotlight-move 15s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: -2;
}

@keyframes spotlight-move {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10%, 10%);
    }

    50% {
        transform: translate(-5%, 5%);
    }

    75% {
        transform: translate(5%, -10%);
    }

    100% {
        transform: translate(0, 0);
    }
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Background Visualizer (Equalizer) */
.visualizer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

.visualizer-container .bar {
    width: 5%;
    background: linear-gradient(to top, rgba(240, 147, 251, 0.5), transparent);
    animation: equalizer 2s ease-in-out infinite;
    border-radius: 10px 10px 0 0;
}

.visualizer-container .bar:nth-child(even) {
    animation-duration: 1.5s;
}

.visualizer-container .bar:nth-child(odd) {
    animation-duration: 2.3s;
}

.visualizer-container .bar:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.visualizer-container .bar:nth-child(2) {
    height: 60%;
    animation-delay: 0.2s;
}

.visualizer-container .bar:nth-child(3) {
    height: 30%;
    animation-delay: 0.4s;
}

.visualizer-container .bar:nth-child(4) {
    height: 75%;
    animation-delay: 0.1s;
}

.visualizer-container .bar:nth-child(5) {
    height: 50%;
    animation-delay: 0.3s;
}

.visualizer-container .bar:nth-child(6) {
    height: 80%;
    animation-delay: 0.5s;
}

.visualizer-container .bar:nth-child(7) {
    height: 45%;
    animation-delay: 0.2s;
}

.visualizer-container .bar:nth-child(8) {
    height: 60%;
    animation-delay: 0.4s;
}

.visualizer-container .bar:nth-child(9) {
    height: 35%;
    animation-delay: 0s;
}

.visualizer-container .bar:nth-child(10) {
    height: 55%;
    animation-delay: 0.3s;
}

@keyframes equalizer {

    0%,
    100% {
        height: 20%;
        opacity: 0.3;
    }

    50% {
        height: 80%;
        opacity: 0.8;
    }
}

.loader {
    text-align: center;
}

.sound-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50px;
    margin-bottom: 20px;
}

.bar {
    width: 4px;
    height: 10px;
    background: #ffffff;
    margin: 0 2px;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    animation-delay: 0.3s;
}

.bar:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        height: 10px;
    }

    50% {
        height: 30px;
    }
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-notes {
    width: 100%;
    height: 100%;
    position: relative;
}

.note {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    animation: float 6s ease-in-out infinite;
}

.note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.note:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.note:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 2s;
}

.note:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.note:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.5);
}

/* Floating Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
    overflow: hidden;
}

.music-control:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.music-control i {
    font-size: 24px;
    color: #fff;
    z-index: 2;
}

.music-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-control.playing .music-waves {
    opacity: 1;
}

.music-control.playing i {
    font-size: 20px;
}

.music-waves span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: wave-ripple 2s infinite linear;
}

.music-waves span:nth-child(1) {
    animation-delay: 0s;
}

.music-waves span:nth-child(2) {
    animation-delay: 0.5s;
}

.music-waves span:nth-child(3) {
    animation-delay: 1s;
}

.music-waves span:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes wave-ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
        border-width: 2px;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-width: 0px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, height 0.3s ease;
    height: 80px;
    /* Fixed height for stability */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px);
    height: 70px;
    /* Slightly smaller on scroll */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Remove vertical padding */
    height: 100%;
    /* Fill navbar height */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-weight: 600;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f093fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #f093fb, #f5576c);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(15px, 9999px, 86px, 0);
    }

    10% {
        clip: rect(98px, 9999px, 31px, 0);
    }

    20% {
        clip: rect(54px, 9999px, 20px, 0);
    }

    30% {
        clip: rect(13px, 9999px, 93px, 0);
    }

    40% {
        clip: rect(87px, 9999px, 59px, 0);
    }

    50% {
        clip: rect(74px, 9999px, 5px, 0);
    }

    60% {
        clip: rect(21px, 9999px, 62px, 0);
    }

    70% {
        clip: rect(25px, 9999px, 14px, 0);
    }

    80% {
        clip: rect(2px, 9999px, 89px, 0);
    }

    90% {
        clip: rect(79px, 9999px, 70px, 0);
    }

    100% {
        clip: rect(32px, 9999px, 66px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(69px, 9999px, 86px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 6px, 0);
    }

    20% {
        clip: rect(98px, 9999px, 56px, 0);
    }

    30% {
        clip: rect(54px, 9999px, 35px, 0);
    }

    40% {
        clip: rect(5px, 9999px, 49px, 0);
    }

    50% {
        clip: rect(46px, 9999px, 80px, 0);
    }

    60% {
        clip: rect(69px, 9999px, 57px, 0);
    }

    70% {
        clip: rect(76px, 9999px, 23px, 0);
    }

    80% {
        clip: rect(48px, 9999px, 7px, 0);
    }

    90% {
        clip: rect(63px, 9999px, 61px, 0);
    }

    100% {
        clip: rect(25px, 9999px, 19px, 0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-image {
    animation: slideInRight 1s ease-out;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #f093fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.4);
    /* Neon Glow */
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Shows Section */
.shows {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.shows-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.shows-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(245, 87, 108, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 87, 108, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    justify-content: center;
}

.about-text {
    padding: 3rem;
    max-width: 800px;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Music Section */
.music {
    padding: 100px 0;
}

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

.music-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.music-card-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    /* Vinyl Spin Effect */
    border-radius: 50%;
    /* Make circular like a record */
    transition: transform 10s linear;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.music-card:hover .music-card-image {
    animation: vinyl-spin 4s linear infinite;
}

@keyframes vinyl-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.music-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.music-card-artist {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

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

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.platform-link.spotify:hover {
    background: #1db954;
}

.platform-link.apple:hover {
    background: #fc3c44;
}

.platform-link.audiomack:hover {
    background: #ff6600;
}

.platform-link.boomplay:hover {
    background: #ff6b35;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}



.gallery-grid {
    display: flex;
    /* Changed from grid to flex for horizontal scroll */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-width: 300px;
    /* Fixed width for slider items */
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: center;
    /* Snap to center */
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    object-position: left 10px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-size: 1.2rem;
    color: #f093fb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    transform: translateY(-3px);
}

.contact-form {
    padding: 2rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 20px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

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

    .about-text {
        padding: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* Reduce section padding for tablet/mobile */
    .about,
    .music,
    .shows,
    .gallery,
    .contact,
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .shows-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 20px;
    }

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

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

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .music-card {
        padding: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .nav-container {
        padding: 0 15px;
        /* Keep side padding, no vertical */
        /* height inherited from 100% */
    }

    .navbar {
        height: 60px;
        /* Smaller fixed height on mobile */
    }

    .navbar.scrolled {
        height: 60px;
        /* Keep same height on scroll for mobile stability */
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .nav-menu {
        top: 60px;
        /* Align with new navbar height */
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0;
        z-index: 1001;
        /* Above navbar items */
    }

    .music-control {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 9999 !important;
        /* Force on top */
    }

    .music-control i {
        font-size: 20px;
    }

    /* Mobile specific adjustments */
    .gallery-item {
        min-width: 85vw;
        /* Show slightly less than full width to encourage scrolling */
    }

    .shows-card {
        padding: 2rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f5576c, #f093fb);
}

/* Loading screen fade out */
.loading-hidden {
    opacity: 0;
    pointer-events: none;
}