/* --- GLOBAL RESET & VARS --- */
:root {
    --bg-dark: #0a0a0c;
    --card-bg: rgba(20, 20, 25, 0.7);
    --gold: #e0a96d;
    --gold-hover: #f1c28d;
    --text-main: #f5f5f7;
    --text-muted: #9e9ea7;
    --border: rgba(224, 169, 109, 0.15);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

/* --- STICKY NAVIGATION --- */
.main-nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-avatar {
    width: 50px;
    height: 50px;
    border-radius: 20%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    transform: rotate(-15deg) translateY(-2px);
    color: var(--gold);
}

/* --- CINEMATIC HERO SECTION --- */
.cinematic-hero-section {
    height: 75vh;
    background: url('../images/7.jpg') no-repeat center center/cover; /* Replace with an atmospheric portrait later */
    background-color: #111; 
    position: relative;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,12,0.4), var(--bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-contain {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.hero-mini-badge {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.sig-container {
    max-width: 320px;
    margin: 0 auto 20px;
}

.artist-sig {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}

.hero-subtext-groove {
    font-family: var(--font-heading);
    letter-spacing: 6px;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-cta-button-row .premium-btn {
    text-decoration: none;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.premium-btn.gold {
    background: var(--gold);
    color: var(--bg-dark);
}

.premium-btn.gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.premium-btn.outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.premium-btn.outline:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* --- MAIN WRAPPER & REUSABLE CARDS --- */
.premium-site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.section-container {
    padding: 60px 0;
}

.section-header-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

.card-panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(6px);
}

.panel-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
}

/* --- MUSIC ROW (SPLIT DECK) --- */
.split-spotlight-deck {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media(min-width: 850px) {
    .split-spotlight-deck {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.sc-attribution {
    margin-top: 10px;
    font-size: 11px;
}

.sc-attribution a {
    color: var(--text-muted);
    text-decoration: none;
}

/* LYRICS PANE */
.lyrics-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-top: 10px;
}

.lyrics-artist-by {
    font-size: 0.85rem;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.scrollable-lyrics-pane {
    height: 230px;
    overflow-y: auto;
    padding-right: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.scrollable-lyrics-pane::-webkit-scrollbar {
    width: 4px;
}

.scrollable-lyrics-pane::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.section-marker {
    color: var(--gold);
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.85rem;
}

/* --- LATEST NEWS CARDS (4 COLUMNS ON DESKTOP) --- */

/* --- ABOUT & TIMELINE LAYOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

@media(min-width: 900px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bio-quote {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.5;
}

.timeline-main-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

/* Timeline Vertical Line Track */
.artist-timeline {
    position: relative;
    border-left: 2px solid rgba(224, 169, 109, 0.15);
    padding-left: 20px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    position: relative;
}

/* The little gold dot on the line track */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Styling for the "Present" live status item */
.highlight-item::before {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.news-masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width: 600px) { .news-masonry-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1000px) { .news-masonry-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.news-art-placeholder {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #1b1b22;
}

/* Placeholders gradient tints till you add real covers */
.design-a { background: linear-gradient(45deg, #2c1a1a, #141419); }
.design-b { background: linear-gradient(45deg, #1a222c, #141419); }
.design-c { background: linear-gradient(45deg, #221a2c, #141419); }

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 0.75rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- TOUR TICKET MATRIX --- */
.tour-ticket-matrix {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-ticket-row {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

@media(min-width: 768px) {
    .tour-ticket-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.tour-badge-date {
    background: rgba(224, 169, 109, 0.1);
    color: var(--gold);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.tour-text-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
}

.tour-venue-details h3 {
    font-size: 1.2rem;
}

.tour-venue-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tour-support-billing {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-action-links {
    display: flex;
    gap: 10px;
}

.tix-btn {
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tix-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.tix-btn.secondary {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.tix-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* SOLD OUT STATE */
.sold-out-lock {
    opacity: 0.5;
}

.sold-out-badge {
    background: #222;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* --- CONTACT & FOOTER --- */
.contact-footer-deck .card-panel h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.panel-meta-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.noir-heavy-form, .fan-club-inline-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input-inline-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media(min-width: 500px) {
    .form-input-inline-row { grid-template-columns: 1fr 1fr; }
}

input[type="text"], input[type="email"], textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.noir-submit-action, .fan-club-inline-row button {
    background: white;
    color: var(--bg-dark);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.noir-submit-action:hover, .fan-club-inline-row button:hover {
    background: var(--gold);
}

@media(min-width: 600px) {
    .fan-club-inline-row {
        flex-direction: row;
    }
    .fan-club-inline-row input { flex-grow: 1; }
}

.noir-footer-container {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}