/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WebGL Background */
#webgl-canvas,
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#webgl-canvas {
    z-index: -2;
}

#particles-canvas {
    z-index: -1;
}

:root {
    --primary-dark: #0a0a0a;
    --primary-light: #ffffff;
    --accent-red: #ff3366;
    --accent-purple: #9333ea;
    --bg-light: #f9fafb;
    --bg-dark: #1a1a1a;
    --text-gray: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    background: var(--primary-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-light);
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(255, 51, 102, 0.5));
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.5))
                drop-shadow(0 0 40px rgba(147, 51, 234, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 51, 102, 0.8))
                drop-shadow(0 0 60px rgba(147, 51, 234, 0.5));
    }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-red);
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--accent-purple);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 51, 102, 0.6),
                0 0 80px rgba(147, 51, 234, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.4),
                    0 0 40px rgba(147, 51, 234, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 51, 102, 0.6),
                    0 0 60px rgba(147, 51, 234, 0.4);
    }
}

/* Section Styles */
section {
    padding: 96px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text p {
    margin-bottom: 20px;
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.music-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.music-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.3),
                0 0 80px rgba(147, 51, 234, 0.2);
    border-color: var(--accent-red);
}

.music-card:hover .music-image {
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}

.music-image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-purple) 100%);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.music-info {
    padding: 24px;
}

.music-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.music-year {
    font-size: 14px;
    color: var(--text-gray);
}

/* Listen Section */
.listen {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    color: var(--primary-light);
    position: relative;
}

.listen .section-label {
    color: var(--accent-red);
}

.listen .section-title {
    color: var(--primary-light);
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.streaming-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.streaming-btn.spotify:hover {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.streaming-btn.apple:hover {
    background: #FA243C;
    color: white;
    border-color: #FA243C;
}

.streaming-btn.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

/* Bookings Section */
.bookings {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(10px);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 16px auto 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.booking-card:hover::before {
    transform: scaleX(1);
}

.booking-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.2),
                0 0 80px rgba(147, 51, 234, 0.1);
}

.booking-card.featured {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-color: var(--accent-red);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.booking-card:hover .booking-icon {
    transform: scale(1.1) rotate(5deg);
}

.booking-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.booking-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.booking-features {
    list-style: none;
    padding: 0;
}

.booking-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
}

.booking-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.booking-cta {
    text-align: center;
    margin-top: 48px;
}

/* Contact Section */
.contact {
    background: var(--primary-dark);
    color: var(--primary-light);
}

.contact .section-label {
    color: var(--accent-red);
}

.contact .section-title {
    color: var(--primary-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 24px 0 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
}

.method-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-light);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-text {
    opacity: 0.5;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--primary-light);
    text-align: center;
    padding: 48px 24px;
}

.footer p {
    opacity: 0.7;
    font-size: 14px;
    margin: 8px 0;
}

.footer-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-red);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-light);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    section {
        padding: 60px 0;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .streaming-links {
        flex-direction: column;
        align-items: stretch;
    }

    .streaming-btn {
        justify-content: center;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}
