/* ========================================
   CSS VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-neon-pink: #ff006e;
    --accent-neon-purple: #b537f2;
    --accent-neon-cyan: #00f7ff;
    --accent-neon-lime: #39ff14;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition-smooth: 0.3s ease-in-out;
    --glow-effect: 0px 0px 20px var(--accent-neon-cyan);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   NAVIGATION BAR (STICKY HEADER)
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 247, 255, 0.2);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all var(--transition-smooth);
}

header.scrolled {
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.15);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--accent-neon-cyan), var(--accent-neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--accent-neon-cyan);
    border-bottom-color: var(--accent-neon-cyan);
    text-shadow: 0 0 10px var(--accent-neon-cyan);
}

.nav-menu a.active {
    color: var(--accent-neon-pink);
    border-bottom-color: var(--accent-neon-pink);
    text-shadow: 0 0 10px var(--accent-neon-pink);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-neon-cyan);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-neon-cyan), var(--accent-neon-pink), var(--accent-neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 3s ease-in-out infinite;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-neon-pink), var(--accent-neon-purple));
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid var(--accent-neon-pink);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6), 0 0 60px rgba(181, 55, 242, 0.4);
    background: linear-gradient(135deg, var(--accent-neon-purple), var(--accent-neon-pink));
}

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

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent-neon-cyan);
    fill: none;
    stroke-width: 2;
}

/* ========================================
   GENRES SHOWCASE SECTION
   ======================================== */
.genres {
    min-height: 100vh;
    padding: 100px 2rem;
    background-color: var(--secondary-dark);
    position: relative;
}

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

.section-title h2 {
    margin-bottom: 1rem;
    color: var(--accent-neon-cyan);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.genres-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.genre-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 247, 255, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.genre-card:hover {
    border-color: var(--accent-neon-cyan);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.5), inset 0 0 20px rgba(0, 247, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.genre-card h3 {
    color: var(--accent-neon-pink);
    margin-bottom: 1rem;
}

.genre-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   ABOUT/BIO SECTION
   ======================================== */
.about {
    min-height: 100vh;
    padding: 100px 2rem;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(181, 55, 242, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(181, 55, 242, 0.1));
    border: 2px solid rgba(0, 247, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image::before {
    content: '♪';
    font-size: 8rem;
    color: rgba(255, 0, 110, 0.2);
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.about-text h2 {
    color: var(--accent-neon-cyan);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   CONTACT / BOOKINGS SECTION
   ======================================== */
.contact {
    min-height: 100vh;
    padding: 100px 2rem;
    background-color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,247,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.contact-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-container h2 {
    color: var(--accent-neon-pink);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-neon-cyan);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 247, 255, 0.2);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all var(--transition-smooth);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    align-self: center;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-neon-cyan), var(--accent-neon-purple));
    color: var(--primary-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ========================================
   FOOTER / SOCIAL SECTION
   ======================================== */
footer {
    background-color: var(--primary-dark);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(0, 247, 255, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-neon-cyan);
    border-radius: 50%;
    color: var(--accent-neon-cyan);
    transition: all var(--transition-smooth);
    font-size: 1.3rem;
    font-weight: 700;
}

.social-link:hover {
    background: var(--accent-neon-cyan);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.5);
    transform: scale(1.15) rotate(10deg);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(0, -40px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.7)) drop-shadow(0 0 20px rgba(181, 55, 242, 0.5));
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: slideInUp 0.8s ease-out forwards;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active a {
        padding: 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .genres-container {
        grid-template-columns: 1fr;
    }

    header {
        padding: 1rem;
    }

    nav {
        padding: 0;
    }

    .hero {
        padding-top: 100px;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .tagline {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu.active {
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .hero {
        padding: 80px 1rem 3rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-container,
    .genres-container {
        gap: 1.5rem;
    }

    .genre-card {
        padding: 1.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}
