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

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --card: #1a1a1a;
    --border: #2a2a2a;
    --red: #cc2200;
    --red-hover: #e03300;
    --gold: #c8a84b;
    --text: #e8e8e8;
    --muted: #888888;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--black);
    color: var(--text);
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAV */
nav {
    background-color: var(--dark);
    border-bottom: 2px solid var(--red);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

nav ul li.brand {
    margin-right: auto;
}

nav ul li.brand a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: uppercase;
}

nav ul li a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 1.1rem 1.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
    background-color: rgba(200, 168, 75, 0.07);
}

/* MAIN */
main {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 2rem;
}

/* HOME */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 0 4rem;
}

.home-hero img {
    max-width: 680px;
    width: 100%;
    border: 3px solid var(--border);
    box-shadow: 0 0 60px rgba(204, 34, 0, 0.25);
}

.home-tagline {
    font-size: 1.15rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-style: italic;
}

.home-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--red);
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    background-color: var(--red);
    color: #fff;
}

.btn-gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* LISTEN PAGE */
.listen-header {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.album-art {
    flex: 0 0 auto;
    width: 260px;
}

.album-art img {
    width: 100%;
    display: block;
    border: 2px solid var(--border);
    box-shadow: 0 0 40px rgba(204, 34, 0, 0.2);
}

.album-info {
    flex: 1;
    min-width: 220px;
    padding-top: 0.5rem;
}

.album-info h1 {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.album-info .subtitle {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.stream-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stream-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.stream-link:hover {
    border-color: var(--gold);
    background-color: rgba(200, 168, 75, 0.06);
    color: var(--gold);
}

.stream-link .icon {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.player-section {
    margin-bottom: 3rem;
}

.player-section + .player-section {
    margin-top: 1rem;
}

/* CONTACT PAGE */
.contact-layout {
    max-width: 640px;
}

.contact-layout h1 {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-layout .subtitle {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-info {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.contact-form .field {
    margin-bottom: 1.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    background: none;
    border: 2px solid var(--red);
    color: var(--text);
    padding: 0.75rem 2.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
    background: var(--red);
    color: #fff;
}

.alert {
    padding: 0.85rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border-left: 3px solid;
}

.alert-success {
    background: rgba(40, 120, 40, 0.15);
    border-color: #4caf50;
    color: #80e080;
}

.alert-error {
    background: rgba(200, 30, 0, 0.15);
    border-color: var(--red);
    color: #ff7070;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
    letter-spacing: 0.06em;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .listen-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .album-art {
        width: 100%;
        max-width: 320px;
    }

    nav ul li.brand a {
        font-size: 1.1rem;
    }
}
