/* =========================================================
   GLOBAL: Reset & Base
   ========================================================= */

html, body {
    margin: 0;
    padding: 0;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: inline;          /* browser default for img */
    vertical-align: baseline; /* browser default */
}

body {
    box-sizing: border-box;
    background-color: var(--st-bg);
    color: var(--st-on-bg);
    font-family: var(--st-font-body), system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--st-font-heading), system-ui, sans-serif;
}

/* Ensure all elements inherit box-sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

.truncate {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* =========================================================
   Footer (stf_)
   ========================================================= */


/* FOOTER WRAPPER */
#stf_footer {
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--st-surface-alt);   
}

/* TITLE */
.stf_socials_title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--st-on-surface-alt-hdr);       
}

/* LIST */
.stf_socials_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ITEM */
.stf_social_item {
    display: inline-block;
}

/* LINK (ICON BUTTON) */
.stf_social_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;

    font-size: 1.65rem;
    text-decoration: none;

    color: var(--st-on-surface-alt-hdr);    
    border: 1px solid color-mix(in srgb, var(--st-on-surface-alt-hdr) 20%, transparent);
    
    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: 
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.stf_social_link:hover {
    opacity: 1;
    color: var(--st-on-surface-alt-hdr);                 /* brighter accent */
    background: color-mix(in srgb, var(--st-on-surface-alt-hdr) 50%, black 20%);
    transform: scale(1.1);
}

/* =========================================================
   Divider (divider_)
   ========================================================= */
.divider_section {
    width: 100%;
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
}

.divider_line {
    width: 100%;
    max-width: 900px;
    height: 1px;
    border: none;
    position: relative;

    /* subtle horizontal fade */
    background: linear-gradient(
        to right,
        transparent,
        var(--st-border, --st-bg),
        transparent
    );
    opacity: 0.8;
}


/* =========================================================
   Navigation (st-nav)
   ========================================================= */

/* --- Mobile-first nav shell --- */

#nav.st-nav {
    position: absolute; /* or fixed if you prefer */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--st-nav-bg);
	opacity: var(--st-nav-opacity);
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

/* Hamburger toggle (mobile) */
.st-nav-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.st-nav-toggle-bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 3px 0;
    background-color: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Menu list (mobile: hidden by default) */
.st-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* When nav is open on mobile */
#nav.st-nav.st-nav-open .st-nav-menu {
    max-height: 500px; /* big enough to show all items */
}

/* Menu items (mobile layout) */
.st-nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-nav-item:first-child {
    border-top: none;
}

.st-nav-link {
    display: block;
    padding: 0.6rem 0;
    color: var(--st-on-nav);
    text-decoration: none;
    font-size: 0.95rem;
}

/* Active/current item state */
.st-nav-item.current .st-nav-link {
    font-weight: 600;
	color: var(--st-on-nav-act);
   
}

/* Optional: transform hamburger into "X" when open */
#nav.st-nav.st-nav-open .st-nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

#nav.st-nav.st-nav-open .st-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

#nav.st-nav.st-nav-open .st-nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* DESKTOP LAYOUT */
@media (min-width: 768px) {

    #nav.st-nav {
        text-align: center;
        padding: 1.5em 0 1.5em 0;
    }

    /* Hide hamburger on desktop */
    .st-nav-toggle {
        display: none;
    }

    .st-nav-menu {
        line-height: 0;
        position: relative;
        display: inline-block;
        margin: 0;
        height: 21px;
        max-height: none;      /* undo mobile collapse */
        overflow: visible;     /* allow pseudo-element lines */
    }



    .st-nav-menu::before {
        left: 100%;
        margin-left: 1px;
    }

    .st-nav-menu::after {
        right: 100%;
        margin-right: 1px;
    }

    .st-nav-item {
        display: inline-block;
        margin: -9px 0.5em 0 0.5em;
        border-radius: 0.5em;
        padding: 0.85em;
        border: solid 1px transparent;
        border-top: none; /* undo mobile border */
        transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    }

    /* Hover + current/active styles */
    .st-nav-item:hover {
        border-color: rgba(192, 192, 192, 0.35);
    }

    .st-nav-item.current {
        border-color: rgba(192, 192, 192, 0.35);
    }

    .st-nav-link {
        text-decoration: none;
        border: 0;
        outline: 0;
        padding: 0;           /* desktop pill padding is on li */
        font-size: 0.95rem;
    }
}




/* ================================================
   BLOCK: Page Header XL Logo (phixl_)
   ================================================ */

.phixl_section {
    width: 100%;
}

/* Header background container */
#phixl_header.phixl_header {
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* PARALLAX EFFECT (desktop) */
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Inner wrapper */
.phixl_inner {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

/* Content layout */
.phixl_header_content {
    color: #ffffff;
}

/* Logo area */
.phixl_logo_wrap {
    margin: 0 0 1rem 0;
}

.phixl_logo {
    text-decoration: none;
    display: inline-block;
}

.phixl_logo_img {
    max-width: 45vh;
    height: auto;
}

.phixl_logo_text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Optional heading text */
.phixl_heading {
    margin-top: 0rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #phixl_header.phixl_header {
        background-attachment: scroll; /* fallback */
    }
    .phixl_logo_img {
        max-width: 80%;
    }

    .phixl_logo_text {
        font-size: 2.2rem;
    }

    .phixl_heading {
        font-size: 1.25rem;
    }
}


/* =======================================================
   BANNER SIMPLE (bnrs_)
   ======================================================= */

.bnrs_section {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Banner block */
.bnrs_banner {
    width: 100%;
    padding: 5rem 1.5rem;
    background-color: var(--st-surface);  
    position: relative;
    text-align: center;
}


/* Content Container */
.bnrs_header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.bnrs_heading {
    margin: 0 0 1rem 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--st-on-surface-hdr);
}

/* Subheading */
.bnrs_subheading {
    margin: 0 auto;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 300;
    line-height: 1.55;
    color: var(--st-on-surface);
    opacity: 0.9;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .bnrs_banner {
        padding: 3.5rem 1.25rem;
    }

    .bnrs_heading {
        font-size: 1.9rem;
    }
}



/* ==========================================================
   MUSIC CAROUSEL SIMPLE (mcsl_)
   ========================================================== */

.mcsl_section {
    width: 100%;
    padding: 2rem 0;
    position: relative;
	background-color: var(--st-surface-alt);  
}

.mcsl_empty {
    text-align: center;
    opacity: 0.6;
}

.mcsl_wrapper {
    position: relative;
    overflow: hidden;
}

/* Track */
.mcsl_track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 1rem 0;
}

/* Hide scrollbar (still scrollable) */
.mcsl_track::-webkit-scrollbar {
    display: none;
}
.mcsl_track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Items */
.mcsl_item {
    min-width: 200px;
    flex: 0 0 auto;
    text-align: center;
}

/* SQUARE IMAGE WRAPPER */
.mcsl_image_wrap {
    width: 100%;
	max-width: 200px; 
    aspect-ratio: 1/1; /* auto-square */
    overflow: hidden;
    border-radius: 8px;
    display: block;
    background: #222; /* fallback */
}

.mcsl_image {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* ensures perfect square visuals */
    display: block;
}

/* Text */
.mcsl_item_header  {
    margin-top: 0.75rem;

}
.mcsl_item_header a {
	text-decoration:none;
	 color: var(--st-on-surface-alt);
}

.mcsl_title {
    font-size: 1rem;
    margin: 0;
}

.mcsl_genre {
    margin: 0.25rem 0 0;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Arrows */
.mcsl_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.85);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 35px;
    text-align: center;
    display: none; /* shown on desktop only */
}

.mcsl_arrow_left {
    left: 0;
}

.mcsl_arrow_right {
    right: 0;
}

/* Show arrows on desktop */
@media (min-width: 768px) {
    .mcsl_arrow {
        display: block;
    }
}



/* ============================================
   PAGE HEADER SMALL LOGO (phisl_)
   ============================================ */

.phisl_section {
    width: 100%;
}

/* Main header wrapper */
.phisl_header {
    width: 100%;
    min-height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* PARALLAX EFFECT (desktop) */
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Optional overlay if needed */
.phisl_header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* optional; adjust or remove */
    pointer-events: none;
}

.phisl_inner {
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Logo */
.phisl_logo_wrap {
    margin: 0;
}

.phisl_logo_img {
    max-width: 45vh;  
    height: auto;
}

.phisl_logo_text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

/* Heading under logo */
.phisl_heading {
    margin-top: 0.35rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .phisl_header {
        min-height: 28vh; /* slightly taller on mobile for readability */
    }

    .phisl_logo_img {
        max-width: 80%;
    }

    .phisl_logo_text {
        font-size: 1.5rem;
    }

    .phisl_heading {
        font-size: 1.05rem;
    }
}




/* ============================================
   CONTENT BASIC CTA (cbc_)
   ============================================ */

.cbc_section {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    color: var(--st-on-bg);
}

.cbc_wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero full-width image (position = full) */
.cbc_hero {
    margin-bottom: 2rem;
}

.cbc_hero_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid color-mix(in srgb, var(--st-border) 60%, transparent);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Header (heading + subheading) */
.cbc_header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.cbc_heading {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--st-on-bg-hdr);
}

.cbc_subheading {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--st-on-bg);
}

/* Two-column layout (image + body) */
.cbc_layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

/* Reverse for image-right layout */
.cbc_layout--reverse {
    flex-direction: row-reverse;
}

.cbc_col {
    flex: 1 1 50%;
    min-width: 0;
}

/* Image column */
.cbc_image_wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.cbc_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body text */
.cbc_body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--st-text-primary);
}

.cbc_body_single {
    margin-top: 1rem;
}

/* CTA footer */
.cbc_footer {
    margin-top: 2.25rem;
    text-align: center;
}

.cbc_button {
    display: inline-block;
    padding: 0.8rem 1.9rem;
    border-radius: 999px;
    background: var(--st-cta-bg);
    color: var(--st-cta-text);
	cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

.cbc_button:hover {
    background: var(--st-cta-bg-hover);
    color: var(--st-cta-text);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.cbc_button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .cbc_section {
        padding: 2.5rem 1.25rem;
    }

    .cbc_heading {
        font-size: 1.6rem;
    }

    .cbc_subheading {
        font-size: 0.98rem;
    }

    .cbc_layout,
    .cbc_layout--reverse {
        flex-direction: column;
    }

    .cbc_layout {
        gap: 1.5rem;
    }
}

/* ========================================
   PHOTO GALLERY CAROUSEL (pgc_)
   ======================================== */

.pgc_section {
    width: 100%;
    padding: 2rem 0;
    position: relative;
}

.pgc_empty {
    text-align: center;
    opacity: 0.6;
}

.pgc_wrapper {
    position: relative;
    overflow: hidden;
}

/* Track */
.pgc_track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
}

/* Hide scrollbar (still scrollable) */
.pgc_track::-webkit-scrollbar {
    display: none;
}
.pgc_track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Items */
.pgc_item {
    flex: 0 0 auto;
}

/* Thumbnails */
.pgc_thumb_link {
    display: inline-block;
}

.pgc_thumb {
    display: block;
    height: 360px;        /* main size control */
    width: auto;
    border-radius: 6px;
    object-fit: cover;    /* handles mixed aspect ratios */
    background: #111;
}

/* Arrows */
.pgc_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 32px;
    text-align: center;
    display: none; /* desktop only */
}

.pgc_arrow_left {
    left: 0;
}

.pgc_arrow_right {
    right: 0;
}

@media (min-width: 768px) {
    .pgc_arrow {
        display: block;
    }
}

/* LIGHTBOX  */

.pgc_lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pgc_lightbox.pgc_lightbox_open {
    display: flex;
}

.pgc_lightbox_inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.pgc_lightbox_image {
    max-width: 90vw;   
    max-height: 90vh;  
    width: auto;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: contain;  
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* Close button */
.pgc_lightbox_close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}





/* ============================================
   EVENTS FUTURE (ef_)
   ============================================ */

.ef_section {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
}

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

.ef_article {
    width: 100%;
}

/* Header */
.ef_header {
    text-align: center;
    margin-bottom: 2rem;
}

.ef_heading {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
	color: var(--st-on-bg-hdr);
}

.ef_subheading {
    margin: 0;
    font-size: 1.05rem;
	color: var(--st-on-bg);
}

/* Songkick embed */
.ef_songkicks_wrapper {
    margin-top: 1.5rem;
}

.ef_songkicks_container {
    width: 100%;
}


/* Events list */
.ef_events_list {
    margin: 0;
    padding: 0;
}

/* Each event as a clickable row */
.ef_event_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ef_event_link:hover .ef_event_row {
}

/* Event row layout */
.ef_event_row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--st-border);
}

/* Date box */
.ef_event_date {
    min-width: 70px;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.35rem;
    background: var(--st-primary);
	color: var(--st-on-primary);
}

.ef_event_day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.ef_event_month {
    font-size: 0.85rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.ef_event_year {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1.2;
}

/* Event info */
.ef_event_info {
    flex: 1;
}

/* Top line: location + time */
.ef_event_mainline {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.ef_event_location {
    margin: 0;
    font-size: 1.1rem;
	color: var(--st-on-bg-hdr);
}

.ef_event_time {
    font-size: 0.85rem;
    opacity: 0.85;
    white-space: nowrap;
	color: var(--st-on-bg-hdr);
}

/* Venue + price */
.ef_event_venue_price {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.ef_event_venue {
    font-weight: 600;
}

.ef_event_price {
    margin-left: 0.25rem;
}

/* "More details" */
.ef_event_more {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    text-decoration: underline;
    opacity: 0.9;
}

/* No events msg */
.ef_no_events {
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* RESPONSIVE  */

@media (max-width: 768px) {

    .ef_section {
        padding: 2.5rem 1.25rem;
    }

    .ef_heading {
        font-size: 1.7rem;
    }

    .ef_event_row {
        align-items: flex-start;
    }

    .ef_event_mainline {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef_event_time {
        white-space: normal;
    }
}



/* ============================================
   BAND MEMBERS (bm_)
   ============================================ */

.bm_section {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
}

.bm_header {
    text-align: center;
    margin-bottom: 2rem;
	color: var(--st-on-bg-hdr);
}

.bm_heading {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.bm_subheading {
    margin: 0;
    font-size: 1.05rem;
    opacity: 0.85;
	color: var(--st-on-bg);
}

/* Responsive grid for 1–N members */
.bm_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

/* Member card */
.bm_card {
    background: var(--st-surface-alt);
	color: var(--st-on-surface-alt);
    border-radius: 10px;
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.bm_photo_wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem auto;
    border-radius: 50%;
    overflow: hidden;
    background: #222;
}

.bm_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bm_card_header {
    margin-bottom: 0.75rem;
}

.bm_member_name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
	color: var(--st-on-surface-alt-hdr);
}

.bm_member_role {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Description + collapsible behavior */
.bm_description {
    margin: 0;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

/* Inner spans created by JS */
.bm_description .bm_short_text,
.bm_description .bm_full_text {
    display: inline;
}

.bm_is_hidden {
    display: none !important;
}

/* Show more / Show less button */
.bm_toggle_btn {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.1rem 0;
    border: none;
    background: none;
    color: var(--st-on-surface-alt);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .bm_section {
        padding: 2.5rem 1.25rem;
    }

    .bm_heading {
        font-size: 1.7rem;
    }

    .bm_photo_wrap {
        width: 100px;
        height: 100px;
    }
}





/* ============================================
   QUOTES SLIDER (q_)
   ============================================ */

.q_section {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
}

.q_wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.q_article {
    width: 100%;
}

/* Header */
.q_header {
    text-align: center;
    margin-bottom: 2rem;
}

.q_heading {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
	color: var(--st-on-bg-hdr);
}

.q_subheading {
    margin: 0;
    font-size: 1.05rem;
    color: var(--st-on-bg);
}

/* Slider container */
.q_slider {
    margin-top: 1.5rem;
}

/* Quote card */
.q_card {
    display: none;
    text-align: left;
    position: relative;
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--st-secondary);
    box-sizing: border-box;
}


.q_card.q_card--active {
    display: block;
    animation: q_fade_in 0.35s ease-out;
}

/* Big quote mark */
.q_mark_inline {
    font-size: 6rem;
    line-height: 0;
    vertical-align: bottom;
    opacity: 0.5;
	 font-family: Georgia, serif;
}


/* Quote text */
.q_text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--st-on-secondary);
}


.q_source  {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--st-on-secondary);
}

.q_source a {
    color: var(--st-on-secondary);
    text-decoration: none;
}

.q_source a:hover {
    text-decoration: underline;
}



/* Dots nav */
.q_dots {
    margin-top: 1rem;
    text-align: center;
}

.q_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin: 0 4px;
    border: none;
    padding: 0;
    background: var(--st-on-bg);
    cursor: pointer;
}

.q_dot.q_dot--active {
    width: 18px;
    background: var(--st-on-bg-hdr);
}

/* Animation */
@keyframes q_fade_in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .q_section {
        padding: 2.5rem 1.25rem;
    }

    .q_heading {
        font-size: 1.7rem;
    }

    .q_card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}


/* ===============================
   JOIN MAILING BANNER (jmb_)
   =============================== */

.jmb_section {
    width: 100%;
    padding: 3rem 1.5rem;
    background: var(--st-surface);
}

.jmb_wrapper {
    max-width: 1100px;                  /* match other sections */
    margin: 0 auto;
    text-align: center;
    padding: 2.25rem 2rem;
}

/* Header */

.jmb_header {
    margin-bottom: 1.5rem;
}

.jmb_heading {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.6rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--st-on-surface-hdr);
}

.jmb_subheading {
    margin: 0 auto;
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--st-on-surface);
}

/* Form */

.jmb_form {
    margin-top: 1.25rem;
}

.jmb_form_row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Inputs */

.jmb_input {
    padding: 0.55rem 0.9rem;            /* shallower height */
    border-radius: 999px;
    border: 1px solid var(--st-border);
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.jmb_input::placeholder {
    color: color-mix(in srgb, var(--st-on-surface) 90%, #000 40%);
}

.jmb_input_email,
.jmb_input_email_confirm {
    flex: 1 1 220px;
    max-width: 280px;
}



.jmb_input_error {
    border-color: #ff6b6b;
}

/* Button */

.jmb_button {
    display: inline-block;
    padding: 0.8rem 1.9rem;
	cursor: pointer;
	border: none;
    outline: none;
    border-radius: 999px;
    background: var(--st-cta-bg);
    color: var(--st-cta-text);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.jmb_button:hover {
    background: var(--st-cta-bg-hover);
    color: var(--st-cta-text);
    transform: translateY(-1px);
}

.jmb_button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Messages */

.jmb_message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.jmb_message--error {
    color: #ffb0b0;
}

.jmb_message--success {
    color: #b4ffb4;
}

.jmb_message--hidden {
    display: none;
}

/* Responsive */

@media (max-width: 768px) {
    .jmb_wrapper {
        padding: 1.9rem 1.35rem;
    }

    .jmb_heading {
        font-size: 1.45rem;
    }

    .jmb_form_row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .jmb_input_email,
    .jmb_input_email_confirm {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .jmb_button {
        width: 100%;
    }
}




/* ================================
   YouTube Embed Block (ytb_)
   ================================ */

.ytb_section {
    width: 100%;
    padding: 2rem 0;
	background: var(--st-surface);
}

.ytb_wrapper {
    max-width: 840px;
    margin: 0 auto;
}

/* Facade Wrapper */
.ytb_facade {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #000;
}

.ytb_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.ytb_play_button {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.ytb_play_inner {
    background: rgba(255, 255, 255, 0.8);
    padding: 14px;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ytb_play_icon {
    width: 38px;
    height: 38px;
    color: #000;
}

/* Hover effect */
.ytb_facade:hover .ytb_play_inner {
    transform: scale(1.12);
    opacity: 1;
}



/* ============================================
   MUSIC LIST BOXES (mlb_)
   ============================================ */

   /* Content Container */
.mlb_header {
    text-align: center;
    margin-bottom: 1.75rem;
}

/* Title */
.mlb_heading {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--st-on-bg-hdr);
}

/* Subheading */
.mlb_subheading {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--st-on-bg);
}

.mlb_section {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
}

.mlb_wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive grid */
.mlb_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Card */
.mlb_item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.9rem 0.9rem 1.1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Thumb area */
.mlb_thumb_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
    margin-bottom: 0.6rem;
}

.mlb_thumb_link {
    display: block;
    width: 100%;
    height: 100%;
}

.mlb_thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder if no thumb */
.mlb_thumb_placeholder {
    width: 100%;
    height: 100%;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mlb_thumb_placeholder_text {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.8;
}

/* Overlay: play for songs */
.mlb_overlay_play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    color: #fff;
}

.mlb_overlay_play_icon {
    font-size: 1.4rem;
}

/* Active/playing state */
.mlb_overlay_play.mlb_playing {
    background: #ffffff;
    color: #000;
}

.mlb_overlay_play.mlb_playing .mlb_overlay_play_icon {
    content: "⏸";
}

/* Hover */
.mlb_thumb_wrap:hover .mlb_overlay_play {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* Overlay: Album label */
.mlb_overlay_label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Body */
.mlb_body {
    padding: 0 0.1rem;
}

.mlb_title {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 600;
	text-align: center;
}

.mlb_title_link {
    color: inherit;
    text-decoration: none;
}

.mlb_title_link:hover {
    text-decoration: underline;
}

.mlb_meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    opacity: 0.9;
}

.mlb_genre {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mlb_section {
        padding: 2.5rem 1.25rem;
    }

    .mlb_grid {
        gap: 1.25rem;
    }
}


/* ============================================
   ALBUM DETAIL HERO (ad_ prefix)
   ============================================ */



.ad_section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin: 0;
    padding: 0;
    color: #ffffff;
}

.ad_inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}


.ad_square {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 20px;

    max-width: 480px;
    margin: 0 auto;
}

/* Logo */

.ad_logo_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ad_logo_img {
    max-height: 40px;
    width: auto;
}

.ad_logo_text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Title */

.ad_square_title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
}

/* Album Art */

.ad_square_art {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
}

/* Album Pill BELOW the art */

.ad_album_pill {
    margin-top: 0.5rem;
    background: rgba(0,0,0,0.75);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
}

.ad_album_pill_label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* Responsive */

@media (max-width: 600px) {
    .ad_square_art {
        width: 190px;
        height: 190px;
    }

    .ad_square {
        padding: 1.6rem;
    }

    .ad_square_title {
        font-size: 1.6rem;
    }
}

/* HEADER */
.ad_headers {
    text-align: center;
    margin-bottom: 2rem;
}

.ad_headings {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
}

.ad_subheadings {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Specific */
.streaming_head {
  color: var(--st-on-bg-hdr);
}

.streaming_subhead {
  color: var(--st-on-bg);
}

.tracks_head {
  color: var(--st-on-bg-hdr);
}

.tracks_subhead {
  color: var(--st-on-bg);
}

/* === STREAMING SECTION WRAPPER === */

.sd_stream_section {
    padding: 3rem 1.5rem;
    text-align: center;

}

.sd_stream_inner {
    max-width: 600px;
    margin: 0 auto;
}



/* Button List */

.sd_stream_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
	margin-top: 2em;
}

/* CTA BUTTON */

.sd_stream_btn {
    width: 100%;
    max-width: 420px;

    background: #ffffff;
    border-radius: 14px;

    padding: 0.9rem 1rem;
    text-decoration: none;

    color: #222;
    font-weight: 600;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.10);

    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sd_stream_btn:hover {
    transform: translateY(-3px);
    background: #fafafa;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}


/* Inner content (icon + label) */
.sd_stream_btn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Icon */

.sd_stream_icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Label */

.sd_stream_label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111;
}

/* Responsive */

@media (max-width: 500px) {
    .sd_stream_btn {
        max-width: 100%;
    }
}





/* === SECTION WRAPPER === */

.sd_info_section {
    padding: 3rem 1.5rem;

}

.sd_info_wrapper {
    max-width: 1100px;
    margin: 0 auto;
}



/* GRID LAYOUT */

.sd_info_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* When only one column is present */
.sd_info_cols.sd_info_cols--single {
    grid-template-columns: 1fr;
}

/* Columns */

.sd_info_col {
    padding: 1rem;
}

/* Text column */
.sd_info_body {
    font-size: 1rem;
    line-height: 1.65;
 
}


/* Vibes */

.sd_vibes_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.sd_vibe_pill {
    padding: .2rem .7rem;
    font-size: .7rem;
    border-radius: 999px;
    border: 1px solid var(--st-border);
}

/* Video box inside right column */

.sd_video_box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Facade */

.sd_ytb_facade {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
}

.sd_ytb_thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

/* Play button overlay */

.sd_ytb_play_button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sd_ytb_play_inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.sd_ytb_play_icon {
    width: 28px;
    height: 28px;
    color: #000;
}

.sd_ytb_facade:hover .sd_ytb_play_inner {
    transform: scale(1.07);
}

/* Iframe when playing */

.sd_ytb_facade iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

/* RESPONSIVE */

@media (max-width: 780px) {
    .sd_info_cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sd_info_section {
        padding: 2.5rem 1.25rem;
    }

    .sd_info_heading {
        font-size: 1.6rem;
    }
}



/* Tracklist section */

.ad_tracklist_section {
    padding: 3rem 1.5rem;
}

.ad_tracklist_wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.ad_tracklist_heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #222;
}

/* Tracklist container */

.ad_tracklist_list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Individual row */

.ad_track_row {
    display: flex;
    align-items: center;
    gap: 1rem;

    background-color: var(--st-secondary);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Thumbnail */

.ad_track_thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Title */

.ad_track_info {
    flex: 1 1 auto;
}

.ad_track_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--st-on-secondary);
}

/* Play Button */

.ad_track_play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;

    background: #3a3a3e;
    color: #fff;

    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.15s ease, transform 0.1s ease;
}

.ad_track_play:hover {
    background: #151515;
    transform: scale(1.06);
}

.ad_track_play:active {
    transform: scale(0.94);
}

/* Responsive */

@media (max-width: 500px) {
    .ad_track_row {
        padding: 0.8rem;
    }
    
    .ad_track_thumb {
        width: 48px;
        height: 48px;
    }
}


/* ============================== */
/* SONG DETAIL                    */
/* ============================== */

/* === SECTION WRAPPER (hero style) === */

.sd_section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin: 0;
    padding: 0;
    color: #fff;
}

.sd_inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
    z-index: 2;
}

/* === LOGO (small, sd_ classes) === */

.sd_logo_wrap {
    margin-bottom: 0.5rem;
}

.sd_logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
}

.sd_logo_img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.sd_logo_text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

/* === SQUARE PLAYER (STACKED LAYOUT) === */

.sd_player_square {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;

    max-width: 480px;
    margin: 0 auto;
}

/* TITLE */

.sd_square_title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

/* ALBUM ART + PLAY OVERLAY */

.sd_square_art_wrap {
    position: relative;
    display: inline-block;
}

.sd_square_art {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
}

/* PLAY BUTTON OVER IMAGE */

.sd_square_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #5bffb2, #27a673);
    color: #0a0a0a;
    font-size: 1.9rem;
    font-weight: bold;

    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0,0,0,0.45);

    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.sd_square_play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 15px 30px rgba(0,0,0,0.55);
}

.sd_square_play:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.sd_square_play.sd_square_play--active {
    opacity: 0.9;
}

/* WAVEFORM */

.sd_square_wave_wrap {
    position: relative;
    width: 100%;
    max-width: 240px;         /* same width as art */
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    margin: 0 auto;
}

.sd_square_wave {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.sd_square_progress {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #5bffb2, #4fcbff);
    mix-blend-mode: screen;
    pointer-events: none;
}



/* RESPONSIVE */

@media (max-width: 600px) {
    .sd_square_art {
        width: 180px;
        height: 180px;
    }

    .sd_square_wave_wrap {
        max-width: 180px;
        height: 45px;
    }

    .sd_player_square {
        padding: 1.5rem;
    }
}


/* Preview CTA under player (initially hidden) */

.sd_preview_cta {
    display: none;          /* <-- important */
    margin-top: 2rem;
    padding: 1rem 1.25rem;

    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;

    max-width: 480px;
    margin-left: auto;
    margin-right: auto;

    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;

    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.sd_preview_cta--visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    overflow: hidden;
    position: relative;
}

.sd_preview_cta--visible::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 130%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    animation: sd_ctaSweep 4s ease-in-out infinite;
}

@keyframes sd_ctaSweep {
    0%   { left: -150%; }
    50%  { left: 120%; }
    100% { left: 120%; }
}


/* === SECTION WRAPPER === */

/* HEADER */
.sd_headers {
    text-align: center;
    margin-bottom: 2rem;
}

.sd_headings {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
}

.sd_subheadings {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Specific */
.streaming_head {
  color: var(--st-on-bg-hdr);
}

.streaming_subhead {
  color: var(--st-on-bg);
}

.about_head {
  color: var(--st-on-surface-alt-hdr);
}

.about_subhead {
  color: var(--st-on-surface-alt);
}

.lyrics_head {
	 color: var(--st-on-bg-hdr);
}



.sd_info_section {
    padding: 3rem 1.5rem;
    background-color: var(--st-surface-alt);
	color: var(--st-on-surface-alt);
 
}

.sd_info_wrapper {
    max-width: 1100px;
    margin: 0 auto;

}





/* === LYRICS SECTION WRAPPER === */
.sd_lyrics_section {
    padding: 3rem 1.5rem;
    text-align: center;
}

.sd_lyrics_wrapper {
    max-width: 800px;
    margin: 0 auto;
}



/* Lyrics Body */
.sd_lyrics_body {
    font-size: 1.05rem;
    line-height: 1.75;
    white-space: normal;
    opacity: 0.95;

    /* Center lyrics text */
    text-align: center;

    /* Optional visual aesthetic */
    padding: 1rem 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .sd_lyrics_heading {
        font-size: 1.7rem;
    }

    .sd_lyrics_body {
        font-size: 1rem;
    }
}

