:root {
    --bg-color: #050505;
    --accent-color: #ff007f;
    /* Hot Pink */
    --accent-secondary: #ffd700;
    /* Gold */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero h1 span {
    display: block;
    -webkit-text-stroke: 1px var(--text-primary);
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
    border-left: 2px solid var(--accent-secondary); /* Gold highlight for hero intro */
    padding-left: 1.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-secondary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); /* Gold glow instead of pink */
}

.btn-secondary {
    border: 1px solid var(--accent-secondary); /* Gold border for secondary buttons */
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-color) 30%, transparent 100%);
    z-index: 2;
}

.music-card h3 {
    margin-bottom: 0.5rem;
}

.music-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Gallery Hover Scaling */
.gallery img {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: crosshair;
}

.gallery div:hover img {
    transform: scale(1.05);
}

/* Video Section */
.videos iframe {
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s ease;
}

.videos iframe:hover {
    filter: grayscale(0) contrast(1);
}

/* Sections */
section {
    padding: 10rem 5%;
}

.section-title {
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent-color);
}

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

.music-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: var(--transition);
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary); /* Gold border on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.music-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Animations */
/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.btn:active {
    transform: scale(0.95);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }

    /* Hide desktop nav alignment */
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem !important;
        line-height: 1.1 !important;
    }

    .hero p {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        line-height: 1.4 !important;
        word-wrap: break-word;
    }

    .hero-image {
        width: 100%;
        opacity: 0.3;
    }

    .hero-overlay {
        background: linear-gradient(0deg, var(--bg-color) 20%, transparent 100%);
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    section {
        padding: 5rem 5%;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        justify-content: center;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    div[style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

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

    form[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    input[style*="grid-column: span 2"],
    textarea[style*="grid-column: span 2"],
    button[style*="grid-column: span 2"] {
        grid-column: 1 !important;
    }

    .locations>div>div {
        width: 80px !important;
        margin: 0.5rem;
    }

    footer {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem !important;
    }

    nav>div:last-child .btn {
        display: none;
    }

    /* Hide extra nav buttons on mobile to save space */
    .hero-content {
        margin-top: 6rem;
        width: 100%;
        overflow-wrap: break-word;
    }
}

/* Movile View */

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span {
    background: var(--accent-secondary); /* Turn gold when active */
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {

    #navbar .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 48%;
        max-width: 400px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 2000;
        border-left: 2px solid var(--accent-secondary); /* Gold border for mobile menu */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    #navbar .nav-links.active {
        display: flex;
        right: 0;
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        z-index: 2100;
        padding: 5px;
        margin-right: -10px;
    }

    .menu-toggle span {
        width: 25px;
        /* Slightly smaller for cleaner look */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-right {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
        margin-right: 1.5rem;
        order: 2;
    }

    .nav-right .btn {
        display: none !important;
    }

    .nav-right a.cart-icon,
    .nav-right a[href="cart.php"] {
        display: flex !important;
    }

    .menu-toggle {
        order: 3;
    }

    /* Section Enhancements */
    section {
        padding: 4rem 5% !important;
    }

    .hero {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-top: 4rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        line-height: 1.1 !important;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 2px solid var(--accent-color);
        padding-top: 1rem;
        font-size: 0.9rem !important;
    }

    .section-title h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    .section-title h2 span {
        display: block;
    }

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

    .mobile-scroll {
        display: flex !important;
        overflow-x: auto !important;
        gap: 1.5rem !important;
        padding: 0 5% 3rem 5% !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) transparent;
    }

    .mobile-scroll::-webkit-scrollbar {
        height: 3px;
    }

    .mobile-scroll::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

    .mobile-scroll>div,
    .mobile-scroll>.music-card {
        flex: 0 0 300px !important;
        scroll-snap-align: start;
    }

    nav {
        padding: 0.8rem 5% !important;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px) !important;
    }
}