:root {
    --primary-color: #d4af37;
    /* Gold */
    --text-light: #f5f5f5;
    --text-dim: #cccccc;
    --bg-dark: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background & Overlay */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/artist_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.6) blur(2px);
    transform: scale(1.05);
    /* Slight zoom to avoid blurred edges */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.95));
    z-index: -1;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1rem 4rem;
    /* Added top padding to clear fixed header */
}

.album-cover {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Sections General */
section {
    padding: 6rem 1rem;
    scroll-margin-top: 100px;
    /* Fix for fixed header blocking content on anchor click */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

/* Bio */
.bio-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2px;
    /* Minimal border radius for clean look */
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    backdrop-filter: blur(5px);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

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

.music-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
    backdrop-filter: blur(5px);
}

.music-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.music-card h3 {
    margin-bottom: 1rem;
    font-weight: 400;
}

.music-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.platform-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.platform-link:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

/* Contact */
#contact {
    text-align: center;
    padding-bottom: 8rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.8;
}

.socials {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.socials a {
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: black;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simplification for mobile MVP */
    }

    header {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}