:root {
    --bg-color: #0a0a0a;       /* Deepest Black */
    --panel-color: #111111;    /* Off-Black for sections */
    --text-main: #b0b0b0;      /* Muted Grey (never pure white) */
    --accent-rust: #8b2e2e;    /* The "Bleeding Through" Red */
    --accent-steel: #4a5a6a;   /* Industrial Blue/Grey */
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, .brand {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e0e0e0;
}

/* Navigation */
nav {
    border-bottom: 1px solid #222;
    padding: 1.5rem 0;
    background: var(--panel-color);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Sections */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('../assets/band-bg.jpg');
    background-size: cover;
    background-position: center;
}

.album-art-feature {
    width: 300px;
    height: 300px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.tracklist {
    background: var(--panel-color);
    padding: 2rem;
    border-left: 3px solid var(--accent-rust);
    max-width: 600px;
    margin: 2rem auto;
}

.track-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
    cursor: pointer;
}

.track-row:hover {
    color: var(--accent-rust);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid #222;
    margin-top: 4rem;
}

/* Utility: Film Grain Texture */
.noise-overlay {
    position: relative;
    overflow: hidden;
}
.noise-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2NkQAKrVq36zwjjgzhhZWGMYAEYB8RmROaABADeOQ8CXl/xfgAAAABJRU5ErkJggg==');
    opacity: 0.05;
    pointer-events: none;
}
/* Buttons */
.btn-solid {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-rust);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-head);
    border: 1px solid var(--accent-rust);
    transition: all 0.3s;
    margin-right: 10px;
}
.btn-solid:hover {
    background: transparent;
    color: var(--accent-rust);
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #888;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-head);
    border: 1px solid #444;
    transition: all 0.3s;
    margin-right: 10px;
}
.btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* Forms */
.form-group { margin-bottom: 1.5rem; }

label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    color: #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box; /* Fixes padding width issues */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-rust);
    box-shadow: 0 0 10px rgba(139, 46, 46, 0.2);
}