:root {
    --bg: #222222;
    --text: #eeeeee;
    --accent: #0bb4aa;
    --border: #3a3a3a;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

a {
    color: var(--accent);
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, .site-title, .nav-list a {
    font-family: 'Onest', sans-serif;
}

/* Header / hero */
.site-header {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.site-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 28px;
}

.site-title {
    margin: 0;
    padding-right: 24px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

.site-nav {
    margin-top: 4px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    border-bottom-color: var(--accent);
}

.hero-title-wrap {
    display: flex;
    align-items: flex-end;
    flex: 1;
    width: 100%;
    padding-bottom: 32px;
}

.page-hero-title {
    margin: 0;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Song/embed pages */
main.wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-intro {
    margin-bottom: 32px;
}

.song-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bandcamp-embed {
    width: 100%;
    max-width: 700px;
}

.bandcamp-embed iframe {
    display: block;
    border-radius: 2px;
}

.bandcamp-embed-album {
    display: flex;
    justify-content: center;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    font-size: 0.85rem;
    color: #999;
}

.back-to-top {
    color: var(--accent);
    text-decoration: none;
}

/* Admin (not part of the public site's visual identity, kept plain/functional) */
.song-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.song-admin-table th,
.song-admin-table td {
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.song-admin-form {
    margin: 24px 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.song-admin-form label {
    display: block;
    margin-bottom: 12px;
}

.song-admin-form input,
.song-admin-form select {
    display: block;
    width: 100%;
    max-width: 480px;
    margin-top: 4px;
    padding: 8px 10px;
    background: #fff;
    color: #222;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.song-admin-form button,
.song-admin-table button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}
