:root {
    --site-bg: #0d0d0d;
    /* rich black, not pure #000 to avoid harsh contrast */
}

html {
    font-size: 18px;
    /* default is 16px -- bumping this scales all rem-based text site-wide */
}

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

body {
    font-family: 'Futura', 'Century Gothic', Helvetica, Arial, sans-serif;
    color: #fff;
}

.hero {
    min-height: 100vh;
    background-color: var(--site-bg);
    background-size: cover;
    background-position: 50% center;
    background-attachment: scroll;
    /* fixed can be laggy on mobile */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.hero #site-footer {
    width: 100%;
}

@media (max-width: 600px) {
    .hero {
        background-position: 50% center;
    }
}

.hero-divider {
    border: none;
    border-top: 1.5px solid rgba(255, 255, 255, 0.4);
    width: 40px;
    margin-top: 40px;
}

.scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* bump this back up once a real photo is in the hero */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 20px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.hero-logo {
    width: 110px;
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.25rem;
    transition: color 170ms ease-in-out;
}

.main-nav a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    transition: opacity 170ms ease-in-out;
}

.social-links a:hover {
    opacity: 0.6;
}

.social-icon {
    width: 26px;
    height: 26px;
    display: block;
}


/* Desktop: bigger logo, nav stays vertical */

@media (min-width: 700px) {
    .hero-content {
        padding-left: 80px;
    }
    .hero-logo {
        width: 180px;
    }
    .main-nav a {
        font-size: 1.4rem;
    }
}

.page-body {
    background-color: var(--site-bg);
    min-height: 100vh;
    color: #fff;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.logo-link h2 {
    font-size: 1.8rem;
    letter-spacing: 0.14em;
    font-weight: 500;
}

.page-header .main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0;
}

.logo-link {
    text-decoration: none;
    color: #fff;
}

.page-header .main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    transition: color 170ms ease-in-out;
}

.page-header .main-nav a:hover,
.page-header .main-nav a.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.contact-intro {
    text-align: center;
}

.contact-intro h3 {
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-line {
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 170ms ease-in-out;
}

.contact-details a:hover {
    border-color: #fff;
}


/* ===== BIO PAGE ===== */

.bio-content {
    max-width: 900px;
}

.page-name {
    font-family: 'Rounded Elegance', 'Futura', 'Century Gothic', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-bottom: 50px;
}

.bio-photo-large {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 2px;
    margin: 0 auto 50px;
    display: block;
}

.bio-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.30rem;
    margin-bottom: 24px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 700px) {
    .page-name {
        font-size: 3rem;
    }
}


/* ===== MUSIC / DISCOGRAPHY PAGE ===== */

.music-content {
    max-width: 900px;
}

.music-title {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
}

.album-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 30px 0;
}

.album-cover {
    width: 220px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.album-info h3 {
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.track-list {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    padding: 10px 24px;
    white-space: nowrap;
    transition: background-color 170ms ease-in-out, color 170ms ease-in-out;
}

.album-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 700px) {
    .album-buttons {
        align-items: flex-start;
    }
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.listen-btn:hover {
    background-color: #fff;
    color: var(--site-bg);
}


/* Desktop: image left, info right */

@media (min-width: 700px) {
    .album-row {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
    }
    .album-cover {
        width: 200px;
        height: 200px;
    }
}


/* ===== LISTEN (per-album) PAGE ===== */

.listen-content {
    max-width: 500px;
    text-align: center;
}

.listen-cover {
    width: 260px;
    height: 260px;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
}

.listen-album-title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.listen-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-buttons .listen-btn {
    width: 260px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 170ms ease-in-out;
}

.back-link:hover {
    color: #fff;
}

.more-note {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 420px;
    margin: 20px auto 0;
}


/* ===== STUDIO PAGE ===== */

.studio-content {
    max-width: 900px;
    text-align: center;
}

.studio-title {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}

.studio-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.studio-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.studio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.studio-photo:hover img {
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .studio-gallery {
        grid-template-columns: 1fr;
    }
    .studio-intro {
        text-align: center;
    }
}


/* ===== PHOTOS PAGE ===== */

.photos-content {
    max-width: 1000px;
    text-align: center;
}

.photos-title {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 30px;
}

.photos-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.photos-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.photos-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photos-photo:hover img {
    transform: scale(1.04);
}

@media (max-width: 700px) {
    .photos-gallery {
        grid-template-columns: 1fr;
    }
}


/* ===== LYRICS PAGES ===== */

.lyrics-content {
    max-width: 900px;
    text-align: center;
}

.lyrics-album-row {
    padding: 30px 0;
}

.lyrics-song-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.lyrics-song-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 170ms ease-in-out;
}

.lyrics-song-list a:hover {
    color: #fff;
}

.lyrics-pending {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

.lyrics-soon {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}


/* ===== INDIVIDUAL LYRICS PAGE ===== */

.lyrics-page-content {
    max-width: 600px;
    text-align: center;
}

.lyrics-page-title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.lyrics-album-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.lyrics-text {
    text-align: left;
    margin-bottom: 40px;
}

.lyrics-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
}

.lyrics-text p:last-child {
    margin-bottom: 0;
}

.lyrics-back-btn {
    display: inline-flex;
    margin-top: 10px;
}