/* CSS Variables for Emberveil Color Palette */
:root {
    --crimson: #9C1C1C;
    --neon-violet: #AD00FF;
    --ember-orange: #FF5A00;
    --charcoal-black: #0D0D0D;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --white: #ffffff;
    --glow-violet: rgba(173, 0, 255, 0.3);
    --glow-orange: rgba(255, 90, 0, 0.3);
    --glow-crimson: rgba(156, 28, 28, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--charcoal-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--glow-violet);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-violet), var(--ember-orange));
    margin: 0 auto 3rem;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow-violet);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px var(--glow-violet);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-violet);
    text-shadow: 0 0 10px var(--glow-violet);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-violet), var(--ember-orange));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) contrast(1.2);
    animation: heroImageFloat 20s ease-in-out infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--glow-violet) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--glow-orange) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--glow-crimson) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes heroImageFloat {
    0%, 100% { 
        transform: scale(1.05) translateY(0px); 
    }
    50% { 
        transform: scale(1.1) translateY(-10px); 
    }
}

@keyframes overlayPulse {
    0%, 100% { 
        opacity: 0.6; 
    }
    50% { 
        opacity: 0.8; 
    }
}

@keyframes overlayGlow {
    0% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0.6; 
        transform: scale(1.1); 
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(173,0,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        linear-gradient(135deg, rgba(13, 13, 13, 0.4) 0%, rgba(173, 0, 255, 0.1) 50%, rgba(255, 90, 0, 0.1) 100%);
    z-index: 1;
    animation: overlayPulse 6s ease-in-out infinite;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(173, 0, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 90, 0, 0.2) 0%, transparent 40%);
    animation: overlayGlow 10s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange), var(--crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-violet);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px var(--glow-violet); }
    100% { text-shadow: 0 0 50px var(--glow-violet), 0 0 30px var(--glow-orange); }
}

.hero-tagline {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-violet);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--glow-violet);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    color: var(--white);
    box-shadow: 0 0 20px var(--glow-violet);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--glow-violet);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-violet);
}

.btn-secondary:hover {
    background: var(--neon-violet);
    box-shadow: 0 0 20px var(--glow-violet);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-violet);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-violet);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.about-lead {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-influences {
    border-left: 3px solid var(--neon-violet);
    padding-left: 1rem;
    margin-top: 2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(173, 0, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-violet);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-violet);
    text-shadow: 0 0 15px var(--glow-violet);
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Music Section */
.music {
    padding: 100px 0;
    background: var(--charcoal-black);
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.album-art {
    display: flex;
    justify-content: center;
}

.album-cover {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--glow-violet);
    overflow: hidden;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.album-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.5;
    animation: albumGlow 3s ease-in-out infinite alternate;
}

@keyframes albumGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.album-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.album-subtitle {
    color: var(--neon-violet);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.album-description {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.album-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Discography Section */
.discography {
    padding: 100px 0;
    background: var(--dark-gray);
}

.discography-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.album-section-title, .singles-section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.album-item, .single-item {
    background: rgba(173, 0, 255, 0.05);
    border: 1px solid rgba(173, 0, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.album-item-header, .single-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.album-item-title, .single-item-title {
    font-size: 1.5rem;
    color: var(--white);
}

.album-item-year, .single-item-year {
    color: var(--neon-violet);
    font-weight: 600;
}

.album-item-subtitle, .single-item-subtitle {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.track {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.track:hover {
    background: rgba(173, 0, 255, 0.1);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--charcoal-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    padding: 10px 20px;
    background: rgba(173, 0, 255, 0.1);
    border: 1px solid var(--neon-violet);
    border-radius: 5px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-violet);
    box-shadow: 0 0 15px var(--glow-violet);
}

.contact-form h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-violet);
    border-radius: 5px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: var(--light-gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--ember-orange);
    box-shadow: 0 0 10px var(--glow-orange);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(173, 0, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--light-gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-violet);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(173, 0, 255, 0.2);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--charcoal-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .about-content,
    .album-showcase,
    .discography-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .album-cover {
        width: 250px;
        height: 250px;
    }
    
    .track-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .album-cover {
        width: 200px;
        height: 200px;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .hero-title,
    .album-cover,
    .stat-item {
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--neon-violet), var(--ember-orange));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--ember-orange), var(--neon-violet));
} 