/* Local Fonts (GDPR-safe, no Google request) */
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/lato-300.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: italic; font-weight: 300; font-display: swap; src: url('fonts/lato-300i.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/lato-400.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/lato-400i.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/lato-700.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/lato-900.woff2') format('woff2'); }

:root {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --bg-dark: #0f172a; /* Slate 900 */
    --accent: #9333ea;
}

/* ============================================
   CONSENT BANNER
   ============================================ */
#consentBanner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
    padding: 1.5rem 2rem;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
#consentBanner.visible { transform: translateY(0); opacity: 1; }

.consent-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
}
.consent-text { flex: 1; min-width: 280px; }
.consent-text h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--text-primary); }
.consent-text p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

.consent-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.consent-btn {
    padding: 0.6rem 1.2rem; border-radius: 6px; border: none;
    font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
}
.consent-btn-accept { background: var(--accent); color: #fff; }
.consent-btn-accept:hover { background: #a855f7; transform: translateY(-2px); }
.consent-btn-essential { background: rgba(255,255,255,0.1); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.15); }
.consent-btn-essential:hover { background: rgba(255,255,255,0.2); }
.consent-btn-settings { background: transparent; color: var(--text-secondary); text-decoration: underline; font-weight: 400; }
.consent-btn-settings:hover { color: var(--text-primary); }

.consent-details {
    width: 100%; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}
.consent-details.open { max-height: 300px; padding-top: 1rem; }

.consent-toggle-row { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.consent-toggle-row label { display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer; font-size: 0.9rem; color: var(--text-secondary); }
.consent-toggle-row input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 40px; height: 22px; min-width: 40px;
    background: rgba(255,255,255,0.15); border-radius: 11px;
    position: relative; cursor: pointer; transition: background 0.3s ease; margin-top: 2px;
}
.consent-toggle-row input[type="checkbox"]::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 16px; height: 16px; border-radius: 50%;
    background: #fff; transition: transform 0.3s ease;
}
.consent-toggle-row input[type="checkbox"]:checked { background: var(--accent); }
.consent-toggle-row input[type="checkbox"]:checked::after { transform: translateX(18px); }
.consent-toggle-row input[type="checkbox"]:disabled { opacity: 0.6; cursor: default; }
.consent-toggle-row strong { color: var(--text-primary); }

/* Spotify Consent Placeholder */
.spotify-consent-placeholder {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    width: 100%; height: 152px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.15);
    color: var(--text-secondary); font-size: 0.9rem; cursor: pointer;
    transition: all 0.3s ease;
}
.spotify-consent-placeholder:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); border-color: var(--accent); }
.spotify-consent-placeholder svg { width: 24px; height: 24px; fill: currentColor; }

/* Consent link in footer */
.consent-link { cursor: pointer; opacity: 0.6; transition: opacity 0.3s; font-size: 0.85rem; }
.consent-link:hover { opacity: 1; color: var(--accent); }

@media (max-width: 600px) {
    #consentBanner { padding: 1.2rem; }
    .consent-inner { flex-direction: column; align-items: stretch; }
    .consent-actions { flex-direction: column; }
    .consent-btn { width: 100%; text-align: center; }
}

/* Base Reset & Typography */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
    font-size: 1.15rem;
}

h1, h2, h3, h4, .logo {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Background Animated Gradient Shapes (Fixed) */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    will-change: transform;
    animation: floating 25s infinite alternate ease-in-out;
}

.shape-1 { width: 800px; height: 800px; background: radial-gradient(circle at center, rgba(147, 51, 234, 0.5) 0%, rgba(147, 51, 234, 0) 60%); top: -250px; left: -250px; }
.shape-2 { width: 700px; height: 700px; background: radial-gradient(circle at center, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 60%); bottom: -250px; right: -200px; animation-delay: -5s; animation-duration: 30s; }
.shape-3 { width: 900px; height: 900px; background: radial-gradient(circle at center, rgba(15, 118, 110, 0.5) 0%, rgba(15, 118, 110, 0) 60%); top: 30%; left: 40%; transform: translate(-50%, -50%); animation-delay: -10s; }
.shape-4 { width: 600px; height: 600px; background: radial-gradient(circle at center, rgba(190, 24, 93, 0.5) 0%, rgba(190, 24, 93, 0) 60%); bottom: 20%; left: 10%; animation-delay: -15s; animation-duration: 20s; }

@keyframes floating {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(50px, -80px) scale(1.1) rotate(45deg); }
    66% { transform: translate(-60px, 40px) scale(0.9) rotate(90deg); }
    100% { transform: translate(30px, -30px) scale(1) rotate(135deg); }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(15, 23, 42, 0.85); /* Increased opacity to compensate for removed blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #cbd5e1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.97);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu-overlay a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu-overlay a:hover {
    color: var(--accent);
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-cta {
    background: rgba(29, 185, 84, 0.2);
    color: #1DB954 !important;
    border: 1px solid rgba(29, 185, 84, 0.5);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: #1DB954;
    color: white !important;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
    transform: translateY(-2px);
}


/* Main Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* Offset for nav */
}

.view-section {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism Styles */
.glass-card, .glass-panel, .glass-footer {
    background: rgba(255, 255, 255, 0.08); /* Increased base opacity slightly for legibility without blur hit */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
}

.glass-panel {
    border-radius: 24px;
    padding: 3rem;
}

/* Hero Section (Modern Slider Style) */
.modern-hero {
    min-height: 80vh;
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "top    image"
        "bottom image";
    align-items: start;
    padding: 4rem;
    width: 100%;
    gap: 2rem 4rem;
}

.hero-content-top {
    grid-area: top;
    text-align: left;
    align-self: end;
}

.hero-content-bottom {
    grid-area: bottom;
    text-align: left;
    align-self: start;
}

.slide-tag {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-image-wrapper {
    grid-area: image;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    align-self: center;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.hero-card:hover .slide-image {
    transform: scale(1.05);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ffffff;
    color: var(--bg-dark);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button.outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.cta-button.outline:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}

.cta-button.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Modern About Section */
.modern-about {
    max-width: 1200px;
    padding: 2rem;
}

.about-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.about-image-column {
    flex: 1;
    position: relative;
    min-height: 400px;
    background: #000;
}

.about-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.about-text-column {
    flex: 1.2;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-column h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-box h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.about-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-footer-text {
    font-style: italic;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .about-card { flex-direction: column; }
    .about-image-column { min-height: 350px; }
    .about-text-column { padding: 3rem 2rem; }
    .about-grid { grid-template-columns: 1fr; }
}

/* Discography */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    width: 100%;
}

.disco-item {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.disco-item:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

/* Contact */
.contact-section {
    align-items: center;
}

.form-card {
    width: 100%;
    max-width: 600px;
    padding: 4rem;
    text-align: center;
}

.form-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.field-error {
    font-size: 0.82rem;
    color: #f87171;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.3s;
}

.form-field.invalid .field-error {
    opacity: 1;
    max-height: 2rem;
}

.form-field.invalid input,
.form-field.invalid textarea {
    border-color: rgba(248, 113, 113, 0.6);
    animation: shake 0.35s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    60%       { transform: translateX(6px); }
}

/* Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    animation: fadeUp 0.5s ease;
}

.form-success.visible {
    display: flex;
}

.success-icon {
    font-size: 3rem;
    animation: pop 0.4s ease;
}

@keyframes pop {
    0%   { transform: scale(0); }
    70%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-success h3 {
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4);
}

.contact-form button {
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 2rem;
}

/* Enhanced Footer Layout */
.glass-footer.modern-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 4rem;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.4);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.footer-subtext {
    font-style: italic;
    opacity: 0.6;
    font-size: 0.85rem;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.press-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.press-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.press-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.2);
}

.enhanced-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.enhanced-icons .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-icons .social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.enhanced-icons .social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.enhanced-icons .social-icon:hover svg {
    fill: #ffffff;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease-out; }

.visible { opacity: 1; transform: translate(0); }

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

/* Tablet */
@media (max-width: 900px) {
    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-card {
        display: flex;
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }
    .modern-hero {
        min-height: auto;
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    .hero-content-top, .hero-content-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: stretch;
        text-align: center;
    }
    .hero-logo { margin: 0 0 1rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-image-wrapper { width: 100%; max-width: 340px; margin: 0 auto; }
    .slide-title { font-size: 2.5rem; }

    /* About */
    .about-card { flex-direction: column; }
    .about-image-column { min-height: unset; aspect-ratio: 1 / 1; position: relative; }
    .about-hero-img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
    .about-text-column { padding: 3rem 2rem; }
    .about-grid { grid-template-columns: 1fr; }

    /* Discography */
    .section-header h2 { font-size: 2.5rem; }
    .view-section { padding: 4rem 1.5rem; }

    /* Footer */
    .glass-footer.modern-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-brand {
        align-items: center;
    }
    .enhanced-icons {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    body { font-size: 1rem; }

    /* Nav */
    .nav-content { padding: 1rem 1.25rem; }
    .logo img { height: 28px; }

    /* Hero */
    .hero-card { padding: 2rem 1.5rem; gap: 1.25rem; }
    .hero-logo { max-width: 220px; margin-bottom: 1rem; }
    .slide-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .cta-button { width: 100%; max-width: 280px; text-align: center; }

    /* Discography */
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.95rem; }
    .view-section { padding: 3rem 1.25rem; }

    /* About */
    .about-text-column { padding: 2rem 1.5rem; }
    .about-text-column h2 { font-size: 2rem !important; margin-bottom: 1.25rem !important; }
    .about-lead { font-size: 1.1rem; margin-bottom: 1.5rem; }
    .about-grid { gap: 1rem; margin-bottom: 1.5rem; }
    .about-box { padding: 1.2rem; }
    .about-image-column { aspect-ratio: 1 / 1; }

    /* Contact */
    .form-card { padding: 2.5rem 1.5rem; }
    .form-card h2 { font-size: 2rem; }
    .contact-form input, .contact-form textarea { padding: 0.85rem 1.2rem; font-size: 0.95rem; }

    /* Footer */
    .glass-footer.modern-footer {
        padding: 2rem 1.5rem;
    }
    footer { padding: 1.25rem; }
}

/* Artist Showcase Styles */
.artist-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    margin-top: 3rem;
}

.artist-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem;
    border-radius: 30px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.artist-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5); /* Background for transparent PNGs */
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%; /* Higher focus to keep heads in frame */
    border-radius: 50%; /* Applied directly to the image too */
    transform: scale(1.1); /* Standard zoom to see more of the artists */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; /* Fixes "bleeding" corners in some browsers */
    mask-image: -webkit-radial-gradient(white, black); /* Forced circular clipping */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.artist-card:hover .artist-image,
.artist-card-mini:hover .artist-image {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
}

.artist-card:hover .artist-image img,
.artist-card-mini:hover .artist-image img {
    transform: scale(1.2); /* Subtle extra zoom on hover */
}

.artist-image img.artist-zoom-in {
    transform: scale(2.1);
}

.artist-card:hover .artist-image img.artist-zoom-in,
.artist-card-mini:hover .artist-image img.artist-zoom-in {
    transform: scale(2.25);
}

.artist-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-title {
    font-weight: 300;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.artist-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mini Artist Cards (used in index.html) */
.artist-card-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
    gap: 1.5rem;
    border-radius: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card-mini:hover {
    transform: translateY(-8px);
}

.artist-card-mini .artist-image {
    width: 160px; /* Specific size for small circles */
    height: 160px;
}

.artist-card-mini h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.artist-title-mini {
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1rem;
}

.slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem; /* Space for the absolute buttons */
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0; /* space for box-shadow hover */
}

.artist-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
}

.artist-slider .artist-card-mini {
    flex: 0 0 calc(33.333% - 1.34rem); /* 3 per view accounting for 2rem gaps */
    min-width: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    margin-top: -22px; /* Half of height to perfectly center vertically */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.prev-btn {
    left: 0.5rem;
}

.next-btn {
    right: 0.5rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Responsive Arstist Cards */
@media (max-width: 900px) {
    .artist-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .artist-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .artist-info h3 {
        font-size: 2rem;
    }

    .artist-card-mini {
        padding: 1.5rem;
    }
    
    .artist-card-mini .artist-image {
        width: 140px;
        height: 140px;
    }

    .artist-slider .artist-card-mini {
        flex: 0 0 calc(50% - 1rem); /* 2 items on tablet */
    }

    .slider-wrapper {
        padding: 0 3rem;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .artist-slider .artist-card-mini {
        flex: 0 0 100%; /* 1 fully visible card on mobile */
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .slider-wrapper {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* Strictly prevent any width explosion on mobile */
    }

    .slider-btn {
        display: none;
    }
}


/* Blog Module Styles (extracted from blog.html) */
.blog-section {
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .blog-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .blog-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            border-radius: 6px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
        }

        .blog-img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .blog-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .blog-meta {
            font-size: 0.85rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .blog-excerpt {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .blog-readmore {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-readmore {
            color: var(--accent);
        }

/* Blog Slider (index.html preview) */
.blog-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
}

.blog-slide-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.blog-slide-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-slide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.blog-slide-card:hover .blog-readmore {
    color: var(--accent);
}

@media (max-width: 900px) {
    .blog-slide-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .blog-slide-card {
        flex: 0 0 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ============================================
   STICKY AUDIO PLAYER
   ============================================ */
.sticky-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    padding: 1rem 2rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

.sticky-player-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-player-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sticky-player-close {
    position: absolute;
    top: -35px;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sticky-player-close:hover {
    color: var(--text-primary);
    background: var(--accent);
    transform: scale(1.1);
}

.sticky-player-iframe {
    width: 100%;
    height: 80px; /* Small height for sticky bar */
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05); /* Placeholder if spotify takes a sec */
}

@media (max-width: 600px) {
    .sticky-player-bar {
        padding: 0.8rem 1rem;
        padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
    }
    .sticky-player-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
        /* Ensure easy touch targets on mobile */
        cursor: pointer;
    }
}