/* --- Reset & box model --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green:      #c5dac5;
    --green-mid:  #8aad8a;
    --white:      #ffffff;
    --black:      #1a1a1a;
    --muted:      #5c5c5c;
    --serif:      Georgia, 'Times New Roman', Times, serif;
    --max-width:  720px;
}

body {
    background-color: var(--white);
    font-family: var(--serif);
    color: var(--black);
    line-height: 1.75;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: normal;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.05rem; }

p {
    text-align: left;
    margin-bottom: 1rem;
}

/* Bio Page */
nav {
    display: flex;
    gap: 2rem;
    padding: 1.2rem 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--green-mid);
}

nav a {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
}

nav a:hover {
    color: var(--muted);
    text-decoration: none;
}

/* Bio Page */
#mainImage {
    width: 100%;
    margin-bottom: 2rem;
}

#maintitle {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
}

#subtitle {
    font-size: 1rem;
    font-weight: normal;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* Button Logic and Style */
.toggle-row {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--green);
}

.textButton {
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    padding: 0.2rem 0;
    margin-right: 1.5rem;
}

.textButton:hover {
    color: var(--black);
}

/* Bio Page */
.bio-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* Music Page */
.albumsEntry {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--green);
}

.albumsEntry:last-child {
    border-bottom: none;
}

.albumCoverArt {
    width: 150px;
    min-width: 150px;
    height: auto;
    float: none;
    margin: 0;
    align-self: flex-start;
}

.album-text {
    flex: 1;
    min-width: 0;
}

.albumTitle {
    text-align: left;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.album-text p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.streaming-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.streaming-link {
    font-size: 0.8rem;
    border: 1px solid var(--green);
    padding: 0.25rem 0.65rem;
    text-decoration: none;
    color: inherit;
    letter-spacing: 0.05em;
}

.streaming-link:hover {
    background-color: var(--green);
    color: var(--bg);
}

/* Bio Page — AIJO roster */
#bio2-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.roster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin: 1.5rem 0;
}

.roster-section h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.roster-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.roster-others {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Events Page */
h1.events-heading {
    margin-bottom: 1.5rem;
}

.event {
    float: none;
}

.event-entry {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--green);
}

.date-block {
    flex: 0 0 52px;
    background-color: var(--green);
    padding: 0.5rem;
    text-align: center;
}

.date-block .month {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.date-block .day {
    display: block;
    font-size: 1.75rem;
    line-height: 1.1;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: left;
}

.event-content {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0;
}

.year-filter-container {
    margin-bottom: 1.5rem;
}

.year-filter-container select {
    background: transparent;
    border: 1px solid var(--green);
    color: inherit;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
}

.year-heading {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 1.5rem 0 0.25rem;
}

/* Press Page */
h1.press-heading {
    margin-bottom: 2rem;
}

.press-list {
    display: flex;
    flex-direction: column;
}

.press-entry {
    padding: 2rem 0;
    border-bottom: 1px solid var(--green);
}

.press-entry:last-child {
    border-bottom: none;
}

.press-source {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.press-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.press-entry p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.press-entry p:last-child {
    margin-bottom: 0;
}

.press-attribution {
    font-size: 0.8rem !important;
    color: var(--muted);
    margin-top: 0.5rem;
}

.press-list-ordered {
    font-size: 0.9rem;
    line-height: 1.9;
    padding-left: 1.4rem;
    margin-bottom: 0.75rem;
}

.press-quote blockquote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    border-left: 2px solid var(--green);
    padding-left: 1rem;
    margin-bottom: 0.75rem;
}

/* Publications */
.pub-source {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--green);
}

.pub-source:last-child {
    border-bottom: none;
}

.pub-source-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.pub-source-link {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
    text-decoration: none;
}

.pub-source-link:hover {
    color: inherit;
}

.pub-entry {
    padding: 0.75rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--green) 30%, transparent);
}

.pub-entry:last-child {
    border-bottom: none;
}

.pub-title {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.pub-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* Footer */
.site-footer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--green);
}

.footer-link {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
}

.footer-link:hover {
    color: inherit;
}
