/* ===============================
   GLOBAL RESET & TYPOGRAPHY
================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
}

/* ===============================
   HEADER WITH TEXT BRAND
================================ */

/* ===============================
   HEADER â€“ CENTERED MENU
================================ */

.site-header {
    background: #ff2d2d;
    position: relative;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    position: relative;
}

.top-bar {
    min-height: 50px;
}

/* BRAND / LOGO */
.brand-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 25px;
}

.brand-name {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* SITE LOGO IMAGE */
.brand-name .site-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

/* MENU (CENTER TOP) */
.main-nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* MENU LINKS */
.main-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

/* HOVER LINE */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}
/* INNER PAGES: SEPARATE MENU AND BRAND */
body:not(.home-page) .top-bar {
    display: flex;
    justify-content: center;
    padding: 16px 20px;
}

body:not(.home-page) .brand-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* SAFETY: NEVER SHOW BRAND INSIDE NAV */
.main-nav .brand-name {
    display: none;
}


/* ===============================
   HERO (HOME PAGE)
================================ */

.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
}

/* ===============================
   SPOTIFY SECTION
================================ */

.spotify-section {
    background: #8b3a1f;
    padding: 80px 10%;
    color: #fff;
    text-align: center;
}

.spotify-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.spotify-embed iframe {
    max-width: 100%;
    border-radius: 12px;
}

/* ===============================
   QUOTE / PRESS
================================ */

.quote-section {
    background: #f4f1ec;
    padding: 100px 15%;
    text-align: center;
}

.quote-section blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.quote-source {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* ===============================
   VIDEO SECTION
================================ */

.video-section {
    background: #000;
    padding: 100px 10%;
    text-align: center;
    color: #fff;
}

.video-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===============================
   NEWSLETTER
================================ */

.newsletter-section {
    background: #fff;
    padding: 100px 10%;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 30px;
    color: #555;
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-section input {
    padding: 15px;
    width: 280px;
    border: 1px solid #ccc;
}

.newsletter-section button {
    padding: 15px 25px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.success {
    margin-bottom: 20px;
    color: green;
}

/* ===============================
   FOOTER
================================ */

.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 10%;
    text-align: center;
}

.footer-socials {
    margin-bottom: 20px;
}

.footer-socials a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
    letter-spacing: 2px;
}

.footer-copy {
    font-size: 12px;
    color: #aaa;
}

/* ===============================
   ABOUT PAGE (EDITORIAL)
================================ */

/* BIO */
.about-bio {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 20px;
}

.about-bio-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.about-bio-image img:hover {
    transform: scale(1.02);
}

.about-bio-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-bio-text p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
    max-width: 520px;
}

.about-bio-text a {
    color: #ff2d2d;
    text-decoration: none;
}

/* ADVOCACY */
.about-advocacy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 140px auto;
    padding: 0 20px;
    align-items: center;
}

.advocacy-image img {
    width: 100%;
    display: block;
}

.advocacy-box {
    background: #ff2d2d;
    color: #fff;
    padding: 40px;
    max-width: 360px;
    margin-left: -80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advocacy-box h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.advocacy-box ul {
    list-style: none;
    padding: 0;
}

.advocacy-box li {
    margin-bottom: 10px;
}

.advocacy-box a {
    color: #fff;
    text-decoration: underline;
}

/* AWARDS */
.about-awards-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    max-width: 1100px;
    margin: 140px auto;
    padding: 0 20px;
}

.awards-text h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.awards-text ul {
    list-style: none;
    padding: 0;
}

.awards-text li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.awards-text li:first-child {
    font-weight: 600;
}

.awards-text a {
    color: #ff2d2d;
}

.awards-image img {
    width: 100%;
    display: block;
}
/* ===============================
   MUSIC PAGE
================================ */

.album-section {
    padding: 80px 10%;
}

.album-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.album-cover {
    width: 100%;
    max-width: 280px;
}

.album-meta h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.album-meta span {
    font-size: 13px;
    color: #333;
}

.album-actions {
    margin: 15px 0;
}

.album-actions button {
    background: #ff2d2d;
    border: none;
    color: #fff;
    padding: 6px 14px;
    margin-right: 10px;
    cursor: pointer;
}

.tracklist {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.tracklist tr {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tracklist td {
    padding: 8px 5px;
}

.price {
    background: #ff2d2d;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
}

.zigzag {
    height: 40px;
    background:
        linear-gradient(135deg, transparent 75%, #fff 75%) 0 0/40px 40px,
        linear-gradient(225deg, transparent 75%, #fff 75%) 0 0/40px 40px;
}
/* ===============================
   LIVE / EVENTS PAGE
================================ */

.live-section {
    background: #f6f1e7; /* cream */
    padding: 140px 20px;
}

.live-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.live-block {
    margin-bottom: 120px;
}

.live-block p {
    font-size: 16px;
    color: #111;
    margin-bottom: 20px;
}

.live-links a {
    color: #ff2d2d;
    text-decoration: underline;
    margin: 0 12px;
    font-size: 14px;
}
/* ===============================
   PHOTO PAGE
================================ */

.photo-section {
    padding: 80px 10%;
    background: #fff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.photo-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.photo-item img:hover {
    transform: scale(1.03);
}

/* SHARE LINK */
.photo-share {
    margin-top: 60px;
    text-align: center;
}

.photo-share a {
    color: #ff2d2d;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ===============================
   PRESS PAGE
================================ */

.press-section {
    background: #000;
    padding: 120px 20px;
}

.press-container {
    max-width: 900px;
    margin: 0 auto;
}

.press-item {
    margin-bottom: 24px;
}

.press-source {
    color: #2a6cff; /* blue links */
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
}

.press-excerpt {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* ===============================
   MENU DROPDOWN
================================ */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    background: #000;
    min-width: 140px;
    display: none;
    z-index: 10;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.dropdown-menu a:hover {
    background: #ff2d2d;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}
/* ===============================
   PRESS KIT (UPDATED)
================================ */

.presskit-intro {
    background: #fff;
    text-align: center;
    padding: 140px 20px 90px;
}

.presskit-intro h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.presskit-intro blockquote {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    color: #222;
}

.presskit-intro blockquote span {
    display: block;
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

/* IMAGE SECTIONS */
.presskit-image {
    background: #000;
}

.presskit-image img {
    width: 100%;
    display: block;
}

/* MEDIA */
.presskit-media {
    background: #fff;
    padding: 120px 10%;
    text-align: center;
}

.presskit-media h2 {
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.media-embed {
    max-width: 720px;
    margin: 0 auto 80px;
}

/* ===============================
   CONTACT PAGE
================================ */

.contact-section {
    min-height: calc(100vh - 220px);
    padding: 80px 20px;
    background: #fff;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.contact-success {
    background: #e6fffa;
    border: 1px solid #38b2ac;
    color: #065f46;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    gap: 20px;
}

.contact-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 140px;
    padding: 12px;
    background: #ff2a2a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #e60000;
}

.contact-email {
    margin-top: 30px;
    font-size: 16px;
}

.contact-email a {
    color: #ff2a2a;
    text-decoration: none;
    margin-left: 6px;
}

/* MOBILE */
@media (max-width: 600px) {
    .contact-row {
        flex-direction: column;
    }
}
.global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.global-player.hidden {
    display: none;
}

.player-controls button {
    background: #ff2d2d;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 6px 14px;
    cursor: pointer;
}
/* ===============================
   PRESS KIT FULL PAGE IMAGE
================================ */

.presskit-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and footer keep their natural height */
.presskit-wrapper {
    flex: 1; /* fills space between header & footer */
    width: 100%;
    overflow: hidden;
}

/* The image itself */
.presskit-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ðŸ”¥ fills page without distortion */
    display: block;
}
.poster-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.full-poster {
    width: 100%;
    height: auto;
    display: block;
}
<style>
/* 🎧 Active track row */
.active-row {
    background: rgba(255, 0, 0, 0.08);
}

.tracklist button.playing {
    color: red;
}

/* 📱 Mobile polish */
@media (max-width: 768px) {
    .album-header {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .album-cover {
        max-width: 240px;
    }

    .tracklist button {
        font-size: 20px;
        padding: 8px 12px;
    }

    .audio-player {
        padding: 16px;
    }

    .audio-player button {
        font-size: 22px;
    }

    .audio-player input[type=range] {
        height: 6px;
    }
}
