/* ========================================
   SOLEN BRIGEL - OFFICIAL BRAND COLORS (LIGHT INVERTED)
   Orange (#D96038) + White + Near-Black text
   ======================================== */

:root {
    /* Brand Colors - INVERTED SOLEN PALETTE */
    --orange: #D96038;
    --navy: #1A2332;
    --cream: #F5E6DD;
    --dark-navy: #0D1117;
    --light-cream: #FFFAF7;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    /* Light theme surfaces */
    --bg: #ffffff;
    --bg-alt: #F8F8F8;
    --text: #111111;
    --text-muted: rgba(0, 0, 0, 0.55);

    /* Shadow Effects */
    --shadow-orange: 0 4px 12px rgba(217, 96, 56, 0.25);
    --shadow-orange-hover: 0 8px 24px rgba(217, 96, 56, 0.38);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Animated gradient text (mirrors webjamarov .gradient-text) ── */
.gradient-text {
    background: linear-gradient(135deg, #0a0a0a 0%, #555555 50%, #0a0a0a 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ── Section label (mirrors webjamarov .section-label) ── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 12px;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 0 2px 8px rgba(217, 96, 56, 0.4);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    box-shadow: 0 2px 4px rgba(217, 96, 56, 0.3);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(217, 96, 56, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    z-index: 1;
}

.rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.52) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 50%, #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(0, 0, 0, 0.7));
}

@keyframes glow-pulse {

    0%,
    100% {
        text-shadow:
            0 4px 12px rgba(217, 96, 56, 0.5),
            0 8px 24px rgba(217, 96, 56, 0.3);
    }

    50% {
        text-shadow:
            0 4px 16px rgba(217, 96, 56, 0.7),
            0 8px 32px rgba(217, 96, 56, 0.5);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background-color: #C5502A;
    box-shadow: var(--shadow-orange-hover);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
}

/* ========== SECTIONS ========== */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #0a0a0a 0%, #555555 50%, #0a0a0a 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
    letter-spacing: 8px;
}

/* ========== ABOUT SECTION ========== */
/* ── 1ª sección interna: BLANCA ── */
.section-about {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(217, 96, 56, 0.2) 0%,
            transparent 50%,
            rgba(245, 230, 221, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.05);
}

.about-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--orange);
    text-shadow: none;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-manifesto {
    background: linear-gradient(135deg,
            rgba(217, 96, 56, 0.15) 0%,
            rgba(245, 230, 221, 0.15) 100%);
    border-left: 4px solid var(--orange);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-orange);
}

.about-manifesto p {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    color: #0a0a0a;
    line-height: 1.6;
}


/* Upcoming Releases Section */
.upcoming-releases {
    margin-top: 3rem;
}

.releases-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--orange);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(217, 96, 56, 0.4);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.release-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(217, 96, 56, 0.1);
    border: 2px solid rgba(217, 96, 56, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 96, 56, 0.2), transparent);
    transition: left 0.5s ease;
}

.release-card:hover::before {
    left: 100%;
}

.release-card:hover {
    background: rgba(217, 96, 56, 0.15);
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(217, 96, 56, 0.4);
    transform: translateY(-5px);
}

.release-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--orange);
    text-shadow: 0 4px 12px rgba(217, 96, 56, 0.5);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.release-info {
    flex: 1;
}

.release-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #0a0a0a;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.release-date {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
    opacity: 1;
}

/* Responsive for releases */
@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .release-number {
        font-size: 3rem;
        min-width: 50px;
    }

    .release-name {
        font-size: 1.2rem;
    }
}


/* ========== MUSIC SECTION ========== */
/* ── 3ª sección interna: BLANCA ── */
.section-music {
    background: #ffffff;
}

.music-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.music-card {
    background-color: var(--bg-alt);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(217, 96, 56, 0.2) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.music-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange-hover);
    transform: translateY(-10px);
}

.music-card:hover::before {
    opacity: 1;
}

.music-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.music-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.music-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.music-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #555555 50%, #0a0a0a 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
    margin-bottom: 1rem;
}

.music-card p {
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.music-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.music-links a {
    padding: 0.6rem 1.2rem;
    background-color: rgba(217, 96, 56, 0.08);
    border: 1px solid var(--orange);
    color: #0a0a0a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.music-links a:hover {
    background-color: var(--orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.music-links a i {
    margin-right: 0.5rem;
}

/* ========== TOUR SECTION ========== */
.section-tour {
    background: linear-gradient(180deg,
            var(--navy) 0%,
            var(--dark-navy) 50%,
            var(--navy) 100%);
}

.tour-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--dark-navy);
    border: 1px solid rgba(217, 96, 56, 0.3);
    transition: all 0.3s ease;
}

.tour-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
    transform: translateX(10px);
}

.tour-date {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--orange);
    text-shadow: 0 4px 12px rgba(217, 96, 56, 0.4);
}

.tour-date div:first-child {
    font-size: 3rem;
    line-height: 1;
}

.tour-date div:last-child {
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.tour-info h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tour-info p {
    color: rgba(0, 0, 0, 0.55);
    font-weight: 300;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    font-size: 2rem;
    color: #0a0a0a;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--orange);
    text-shadow: 0 4px 12px rgba(217, 96, 56, 0.4);
    transform: scale(1.3) rotate(15deg);
}

.footer-copy {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.9rem;
    font-weight: 400;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-orange-hover);
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #0a0a0a;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--orange);
    text-shadow: 0 4px 12px rgba(217, 96, 56, 0.4);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #555555 50%, #0a0a0a 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
    margin-bottom: 1rem;
}

.modal-content p {
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 2rem;
    font-weight: 400;
}

#newsletterForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#newsletterForm input {
    padding: 1rem;
    background-color: #f8f8f8;
    border: 2px solid rgba(217, 96, 56, 0.3);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#newsletterForm input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

#newsletterForm button {
    padding: 1rem;
    background-color: var(--orange);
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: var(--shadow-orange);
}

#newsletterForm button:hover {
    background-color: #C5502A;
    box-shadow: var(--shadow-orange-hover);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .music-container {
        grid-template-columns: 1fr;
    }

    .tour-item {
        grid-template-columns: 80px 1fr auto;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 340px;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.2rem !important;
        letter-spacing: 3px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
        letter-spacing: 5px;
    }

    .hero-subtitle {
        letter-spacing: 4px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .music-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* ========== GALLERY SECTION ========== */
/* ── 4ª sección interna: NEGRA ── */
.section-gallery {
    background: #0a0a0a;
    border-top: none;
}

/* Text overrides for black gallery section */
.section-gallery .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 50%, #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

.section-gallery .gallery-caption,
.section-gallery .gallery-overlay p,
.section-gallery p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.gallery-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange-hover);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(217, 96, 56, 0.9) 0%,
            rgba(26, 35, 50, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4 / 5;
    }
}

/* ========== PREVIEW PLAYER SECTION ========== */
/* ── 2ª sección interna: NEGRA ── */
.section-preview {
    background: #0a0a0a;
}

/* Text overrides for black preview section */
.section-preview .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 50%, #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

.section-preview .preview-date,
.section-preview .preview-note,
.section-preview .release-date {
    color: rgba(255, 255, 255, 0.55);
}

.section-preview .release-name {
    color: #ffffff;
}

.section-preview .releases-title {
    color: var(--orange);
}

.preview-container {
    max-width: 800px;
    margin: 0 auto;
}

.preview-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.03);
    border: 2px solid rgba(217, 96, 56, 0.2);
    padding: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.preview-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(217, 96, 56, 0.4);
    transform: translateY(-5px);
}

.preview-artwork {
    position: relative;
    overflow: hidden;
}

.preview-artwork img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1);
}

.preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(217, 96, 56, 0.5);
}

.preview-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.preview-artist {
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.preview-date {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 2rem;
    opacity: 1;
}

.audio-player {
    background: rgba(13, 17, 23, 0.8);
    padding: 1.5rem;
    border: 1px solid rgba(217, 96, 56, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(217, 96, 56, 0.4);
}

.play-btn:hover {
    background: #C5502A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 96, 56, 0.6);
}

.progress-container {
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(217, 96, 56, 0.2);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange) 0%, #FF8C5A 100%);
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    font-family: monospace;
}

.volume-control {
    font-size: 1.2rem;
    color: var(--orange);
}

.preview-note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    font-style: italic;
}

#audioPreview {
    display: none;
}

@media (max-width: 768px) {
    .preview-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .preview-artwork img {
        height: 300px;
    }

    .audio-player {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-container {
        width: 100%;
    }
}

/* Waveform Visualization Updates */
.waveform-container {
    flex: 1;
    position: relative;
    height: 80px;
}

.waveform-canvas {
    width: 100%;
    height: 80px;
    display: block;
    cursor: pointer;
}

.waveform-progress {
    display: none !important;
}

.progress-time {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    font-family: monospace;
}

/* Update audio player height */
.audio-player {
    background: rgba(13, 17, 23, 0.8);
    padding: 1.5rem;
    padding-bottom: 3rem;
    border: 1px solid rgba(217, 96, 56, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ========== ELEGANT AUDIO PLAYER ========== */
.elegant-audio-player {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto 1rem;
    padding: 1.2rem 1.5rem;
    max-width: 620px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(217, 96, 56, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-audio-player:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 96, 56, 0.8);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(217, 96, 56, 0.4);
    transform: translateY(-3px);
}

/* Cover art thumbnail in player */
.elegant-cover-art {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.elegant-cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Streaming links row — icon only ── */
.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 2rem;
    max-width: 620px;
}

.streaming-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.2s ease, background 0.2s ease;
}

.streaming-btn svg {
    width: 20px;
    height: 20px;
}

.streaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.4), 0 10px 24px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.streaming-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.streaming-spotify:hover {
    color: #1DB954;
}

.streaming-apple:hover {
    color: #FC3C44;
}

.streaming-amazon:hover {
    color: #00A8E1;
}

.streaming-tidal:hover {
    color: #ffffff;
}

.elegant-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('images/la_invitacion_cover.jpg');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.elegant-play-btn:hover {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.12);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        url('images/la_invitacion_cover.jpg');
}

.elegant-play-btn:active {
    transform: scale(1);
}

.elegant-play-btn i {
    margin-left: 3px;
    /* Optical centering for play icon */
}

.elegant-play-btn.playing i {
    margin-left: 0;
}

.elegant-player-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.elegant-track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elegant-track-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.elegant-track-time {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.elegant-progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

.elegant-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;

    background: linear-gradient(90deg,
            var(--orange) 0%,
            #FF8C5A 100%);

    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(217, 96, 56, 0.6),
        0 0 20px rgba(217, 96, 56, 0.3);

    transition: width 0.1s linear;
}

.elegant-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);

    width: 16px;
    height: 16px;
    border-radius: 50%;

    background: white;
    border: 2px solid var(--orange);

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(217, 96, 56, 0.5);

    opacity: 0;
    transition: opacity 0.3s ease;
}

.elegant-progress-bar:hover .elegant-progress-handle {
    opacity: 1;
}

/* Responsive Design - Elegant Audio Player */
@media (max-width: 768px) {
    .elegant-audio-player {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem;
        max-width: 90%;
    }

    .elegant-player-content {
        width: 100%;
    }

    .elegant-track-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Larger play button for easier touch */
    .elegant-play-btn {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    /* Taller progress bar for easier touch interaction */
    .elegant-progress-bar {
        height: 12px;
    }

    /* Larger track title for readability */
    .elegant-track-title {
        font-size: 1.1rem;
    }
}

/* Extra small devices optimization */
@media (max-width: 480px) {
    .elegant-audio-player {
        padding: 1.2rem;
        max-width: 95%;
        gap: 1rem;
    }

    /* Even larger touch targets on very small screens */
    .elegant-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    /* Increase progress bar height for easier tapping */
    .elegant-progress-bar {
        height: 14px;
    }

    /* Reduce fonts slightly for small screens */
    .elegant-track-title {
        font-size: 1rem;
    }

    .elegant-track-time {
        font-size: 0.8rem;
    }

    /* Better button spacing */
    .hero-ctas {
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Optimize hero text for small screens */
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    /* Better section title sizing */
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    /* Improve music cards on mobile */
    .music-card h3 {
        font-size: 1.5rem;
    }

    .music-links a {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Better footer on small screens */
    .footer-socials {
        gap: 1.5rem;
    }

    .footer-socials a {
        font-size: 1.75rem;
    }
}

/* Landscape mode optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .elegant-audio-player {
        flex-direction: row;
        max-width: 85%;
    }

    .elegant-track-info {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ══════════════════════════════════════
       AI VOICE WIDGET — LIGHT THEME
    ══════════════════════════════════════ */
#vw-trigger {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: vw-trig-pulse 3.5s ease infinite;
}

#vw-trigger:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(217, 96, 56, 0.5);
    transform: scale(1.07);
}

@keyframes vw-trig-pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(217, 96, 56, 0.25);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 14px rgba(217, 96, 56, 0);
    }
}

/* Proactive bubble */
#vw-proactive-bubble {
    position: fixed;
    bottom: 104px;
    right: 28px;
    max-width: 220px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px 16px 4px 16px;
    padding: 11px 32px 11px 14px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

#vw-proactive-bubble.vw-pb-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

#vw-pb-close {
    position: absolute;
    top: 8px;
    right: 9px;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

#vw-pb-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

#vw-pb-text {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.82);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Panel */
#vw-panel {
    position: fixed;
    bottom: 104px;
    right: 24px;
    width: 370px;
    z-index: 9998;
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.99) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(18px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#vw-panel.vw-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

#vw-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.8);
}

#vw-orb-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 35% 35%, rgba(217, 96, 56, 0.6) 0%, rgba(217, 96, 56, 0.2) 65%, transparent 100%);
    border: 1px solid rgba(217, 96, 56, 0.35);
}

#vw-orb-sm::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(transparent 0deg, rgba(217, 96, 56, 0.35) 70deg, transparent 140deg);
    animation: vw-orb-spin 4s linear infinite;
}

@keyframes vw-orb-spin {
    to {
        transform: rotate(360deg);
    }
}

#vw-orb-sm.vw-listening::after {
    animation-duration: 0.7s;
    background: conic-gradient(transparent 0deg, rgba(217, 96, 56, 0.7) 80deg, transparent 160deg);
}

#vw-orb-sm.vw-thinking {
    animation: vw-orb-think 0.9s ease-in-out infinite alternate;
}

@keyframes vw-orb-think {
    from {
        box-shadow: 0 0 6px rgba(217, 96, 56, 0.15);
    }

    to {
        box-shadow: 0 0 22px rgba(217, 96, 56, 0.5);
    }
}

.vw-htxt {
    flex: 1;
}

.vw-htxt h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.vw-htxt p {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

#vw-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#vw-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #111;
}

#vw-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 180px;
    max-height: 300px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.vw-msg {
    max-width: 90%;
    padding: 9px 13px;
    border-radius: 13px;
    font-size: 0.81rem;
    line-height: 1.55;
    animation: vw-msg-in 0.22s ease forwards;
}

@keyframes vw-msg-in {
    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vw-agent {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.8);
    border-radius: 4px 13px 13px 13px;
}

.vw-user {
    align-self: flex-end;
    background: rgba(217, 96, 56, 0.12);
    border: 1px solid rgba(217, 96, 56, 0.25);
    color: #111;
    border-radius: 13px 13px 4px 13px;
}

.vw-btn-group {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 2px;
    animation: vw-msg-in 0.22s ease forwards;
}

.vw-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: rgba(0, 0, 0, 0.85) !important;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vw-btn-wa:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
}

.vw-typing {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 11px 15px;
    border-radius: 4px 13px 13px 13px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.vw-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    animation: vw-dot 1.2s ease infinite;
}

.vw-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.vw-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes vw-dot {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

#vw-footer {
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.8);
}

#vw-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

#vw-wave.vw-vis {
    opacity: 1;
}

.vw-bar {
    width: 3px;
    border-radius: 3px;
    background: rgba(217, 96, 56, 0.6);
    height: 4px;
    animation: vw-bar 1.3s ease infinite;
}

.vw-bar:nth-child(1) {
    animation-delay: 0s
}

.vw-bar:nth-child(2) {
    animation-delay: 0.1s
}

.vw-bar:nth-child(3) {
    animation-delay: 0.22s
}

.vw-bar:nth-child(4) {
    animation-delay: 0.15s
}

.vw-bar:nth-child(5) {
    animation-delay: 0.05s
}

.vw-bar:nth-child(6) {
    animation-delay: 0.28s
}

.vw-bar:nth-child(7) {
    animation-delay: 0.12s
}

@keyframes vw-bar {

    0%,
    100% {
        height: 4px;
        opacity: 0.25;
    }

    50% {
        height: 20px;
        opacity: 1;
    }
}

#vw-status {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
    min-height: 16px;
}

#vw-status.vw-on {
    color: rgba(0, 0, 0, 0.65);
}

#vw-interim {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.45);
    font-style: italic;
    min-height: 18px;
}

#vw-controls {
    display: flex;
    justify-content: center;
}

#vw-mic-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#vw-mic-btn:hover {
    background: rgba(217, 96, 56, 0.1);
    border-color: rgba(217, 96, 56, 0.4);
    transform: scale(1.06);
}

#vw-mic-btn.vw-rec {
    background: rgba(217, 96, 56, 0.18);
    border-color: rgba(217, 96, 56, 0.6);
    animation: vw-mic-ring 0.85s ease infinite;
}

#vw-mic-btn.vw-busy {
    opacity: 0.35;
    cursor: not-allowed;
}

@keyframes vw-mic-ring {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(217, 96, 56, 0.35);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 18px rgba(217, 96, 56, 0);
    }
}

/* Mobile adjustments for voice widget */
@media (max-width: 767px) {
    #vw-trigger {
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
        right: 16px !important;
    }

    #vw-proactive-bubble {
        bottom: calc(96px + env(safe-area-inset-bottom)) !important;
        right: 16px !important;
        max-width: 180px !important;
    }

    #vw-panel {
        bottom: calc(96px + env(safe-area-inset-bottom)) !important;
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
        max-height: calc(100dvh - 140px - env(safe-area-inset-bottom)) !important;
    }

    #vw-messages {
        max-height: none !important;
        flex: 1 !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — SOLEN BRIGEL
   Breakpoint: 768px (tablet/mobile)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── HERO ── */
    .hero {
        background-position: center center;
        background-attachment: scroll;
        /* disable parallax on mobile */
        min-height: 100svh;
        /* safe viewport height */
    }

    .hero-content {
        padding: 1.5rem 1.2rem;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 5rem) !important;
        letter-spacing: 4px !important;
        margin-bottom: 0.6rem !important;
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 3.5vw, 1rem) !important;
        letter-spacing: 4px !important;
        margin-bottom: 2rem !important;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.9rem;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* ── AUDIO PLAYER in hero ── */
    .elegant-audio-player {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 1.2rem;
        margin: 1.2rem auto;
        max-width: 95vw;
    }

    .elegant-player-content {
        min-width: 0;
        flex: 1;
    }

    /* ── SECTIONS ── */
    .section {
        padding: 3.5rem 1.2rem !important;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
        letter-spacing: 4px !important;
        margin-bottom: 2rem !important;
    }

    /* ── ABOUT ── */
    .about-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-image {
        max-height: 380px;
        overflow: hidden;
    }

    .about-image img {
        object-position: center top;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .releases-grid {
        grid-template-columns: 1fr !important;
    }

    .release-card {
        padding: 1.2rem !important;
    }

    /* ── MUSIC ── */
    .music-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .music-card img {
        height: 280px;
    }

    .music-card-content {
        padding: 1.5rem;
    }

    .music-card h3 {
        font-size: 1.6rem !important;
    }

    /* ── GALLERY ── */
    .gallery-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    /* ── PREVIEW PLAYER ── */
    .preview-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .preview-card {
        grid-template-columns: 1fr !important;
    }

    .audio-player {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    /* ── TOUR ── */
    .tour-container {
        gap: 1rem;
    }

    .tour-item {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 0.8rem !important;
        padding: 1.2rem !important;
    }

    .tour-date {
        font-size: 1.5rem !important;
    }

    .tour-info h4 {
        font-size: 1.2rem !important;
    }

    .tour-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── FOOTER ── */
    .footer-socials {
        gap: 1.5rem;
    }

    .footer-socials a {
        font-size: 1.8rem;
    }

    /* ── MODAL ── */
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 1rem;
    }

    .modal-content h3 {
        font-size: 2rem !important;
    }

    /* ── HAMBURGER BAR LINES: white on dark nav ── */
    .hamburger span {
        background-color: #ffffff !important;
    }
}

/* ── SMALL PHONES (max 480px) ── */
@media (max-width: 480px) {

    .section {
        padding: 2.5rem 1rem !important;
    }

    .hero-title {
        font-size: clamp(2.2rem, 16vw, 3.5rem) !important;
        letter-spacing: 2px !important;
    }

    .hero-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 3px !important;
    }

    .section-title {
        font-size: clamp(1.8rem, 12vw, 3rem) !important;
        letter-spacing: 2px !important;
    }

    .gallery-container {
        grid-template-columns: 1fr !important;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .elegant-audio-player {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .elegant-track-info {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }

    .music-links {
        flex-direction: column;
    }

    .music-links a {
        text-align: center;
    }

    .modal-content {
        padding: 1.5rem 1rem;
    }
}