/* =========================================
   CSS Reset & Variables
   ========================================= */
:root {
    --primary-color: #ffffff;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --text-muted: #b0b0b0;
    --font-heading: 'Yellowtail', cursive;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body, html {
    width: 100%;
    height: 100%;
    background-color: #020202; /* Extremely dark for blend modes */
    font-family: var(--font-body);
    color: var(--primary-color);
    overflow-x: hidden;
}

/* =========================================
   Parallax Background & Overlays
   ========================================= */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
}

.layer-1 {
    background-image: linear-gradient(rgba(2,2,2,0.6), rgba(2,2,2,0.6)), url('../img/techno_bg.png');
    z-index: 1;
    background-size: cover;
    background-position: center;
    animation: panBackground 15s ease-in-out infinite alternate;
}

.layer-2 {
    background-image: url('../img/techno_fg.png');
    z-index: 2;
    background-size: contain; /* Prevents DJ from zooming in too much */
    background-position: bottom right; /* Anchor DJ to the ground */
    mix-blend-mode: screen; 
    animation: panForeground 12s ease-in-out infinite alternate-reverse;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.1)
    );
    background-size: 100% 4px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.4;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.menu-icon:hover {
    color: var(--neon-cyan);
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: transparent;
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--neon-pink) inset, 0 0 15px var(--neon-pink);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0 4rem;
    margin-left: 10%;
    z-index: 5;
    position: relative; /* stay above background */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeUp 1.5s ease-out forwards;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    font-weight: 400;
    color: var(--primary-color);
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-cyan);
    transform: rotate(-5deg);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 2rem;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8), 0 0 20px var(--neon-pink);
}

.divider {
    width: 40px;
    height: 3px;
    background-color: var(--neon-pink);
    margin: 1rem 0;
    box-shadow: 0 0 10px var(--neon-pink);
}

.genres {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* =========================================
   Animations
   ========================================= */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panBackground {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

@keyframes panForeground {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1) translate(-3%, 1%); }
}

/* =========================================
   Responsive
   ========================================= */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    
    .hero-section {
        margin-left: 0;
        justify-content: center;
        padding: 0 2rem;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .brand-name {
        font-size: 5rem;
        transform: none;
    }
    
    .title-wrap {
        padding-left: 0;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }

    .layer-2 {
        background-position: center bottom;
    }
}
