/* styles.css */

/* Color Palette */
:root {
    --charred-black: #1C1C1C;
    --rust-red: #8B2E2E;
    --dusty-gold: #C2A14D;
    --bone-white: #F5F1E6;
    --steel-gray: #4A4A4A;
}

/* Fonts */
body {
    font-family: 'Roboto Slab', serif; /* Secondary body font */
    background-color: var(--charred-black);
    color: var(--bone-white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, .logo {
    font-family: 'Oswald', sans-serif; /* Primary header font alternative */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header and Navigation */
header {
    background-color: var(--steel-gray);
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: var(--dusty-gold);
}

ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

a {
    color: var(--bone-white);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--rust-red);
}

/* Main Sections */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero, .about, .listen, .contact, .merch {
    text-align: center;
}

h1 {
    color: var(--dusty-gold);
    border-bottom: 2px solid var(--rust-red);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--bone-white);
}

.cta {
    background-color: var(--rust-red);
    color: var(--bone-white);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: var(--dusty-gold);
    color: var(--charred-black);
}

/* Listen Page Styles */
.episode {
    background-color: var(--steel-gray);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    border: 1px solid var(--dusty-gold);
}

.episode h2 {
    color: var(--rust-red);
}

audio {
    width: 100%;
    margin: 1rem 0;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

label {
    display: block;
    margin-top: 1rem;
    color: var(--steel-gray);
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    background-color: var(--steel-gray);
    border: 1px solid var(--dusty-gold);
    color: var(--bone-white);
}

button {
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--steel-gray);
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}