/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    --color-bg: #080808;
    --color-bg-soft: #141414;
    --color-bg-section: #0c0c0c;
    --color-primary: #b11226;
    --color-primary-dark: #700d19;
    --color-primary-hover: #d41a30;
    --color-text: #f5f0e8;
    --color-text-secondary: #c8c0b8;
    --color-muted: #b8b0a8;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.15);
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1100px;
    --header-height: 70px;
    --transition: 0.3s ease;
}

/* ============================================
   1b. Google Fonts
   ============================================ */

/* ============================================
   2. Reset
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   3. Global Styles
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section--hidden {
    opacity: 0;
    transform: translateY(30px);
}

.section--revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 12px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f3b86c;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    opacity: 0.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn:hover::after,
.btn:active::after {
    transform: scale(2);
}

.btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn--outline {
    border-color: var(--color-border-light);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn--dark {
    background: rgba(18, 18, 18, 0.85);
    border: none;
}

.btn--dark:hover {
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
}

.btn--spotify {
    background: #1DB954;
    border-color: #1DB954;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
    color: #fff;
}

.btn--apple-music {
    background: #FB233B;
    border-color: #FB233B;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--apple-music:hover {
    background: #FC3C52;
    border-color: #FC3C52;
    color: #fff;
}

.text-center {
    text-align: center;
}

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

/* ============================================
   4. Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background var(--transition);
}

.header--scrolled {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../../resources/top.png') center/cover no-repeat;
    border-bottom: none;
}

.header--scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(177, 18, 38, 0.6) 0px,
            rgba(177, 18, 38, 0) 3px,
            rgba(177, 18, 38, 0) 8px,
            rgba(177, 18, 38, 0.25) 12px,
            rgba(177, 18, 38, 0) 16px,
            rgba(177, 18, 38, 0.45) 20px,
            rgba(177, 18, 38, 0) 26px
        ),
        linear-gradient(180deg, rgba(177, 18, 38, 0.5) 0%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.header__social {
    display: none;
    gap: 12px;
    align-items: center;
}

.header__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.header__social svg {
    width: 18px;
    height: 18px;
    fill: #e3dfda;
}

.nav__list {
    display: flex;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e3dfda;
    transition: color var(--transition);
    position: relative;
    overflow: hidden;
}

.nav__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212,34,3,0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.nav__link:hover::after {
    transform: scale(2);
}

.nav__list li:nth-child(odd) .nav__link {
    color: #e3dfda;
}

.nav__list li:nth-child(even) .nav__link {
    color: #b7b1a9;
}

.nav__link:hover,
.nav__list li:nth-child(odd) .nav__link:hover,
.nav__list li:nth-child(even) .nav__link:hover {
    color: #d42203;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   5. Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 45px;
}

/* Cinematic slow zoom on background image */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        url('../../resources/main.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 7%;
    left: 50%;
    width: min(52vw, 720px);
    height: 18%;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.9) 42%, rgba(8, 8, 8, 0.35) 72%, transparent 100%);
    filter: blur(10px);
    pointer-events: none;
}

/* Overlay gradients + noise over the image */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(177, 18, 38, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(177, 18, 38, 0.25) 0%, transparent 45%),
        linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,0) 40%, rgba(8,8,8,0) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

/* Stage light sweep overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    z-index: 0;
    background: radial-gradient(ellipse 40% 30% at 50% 50%, rgba(177, 18, 38, 0.18) 0%, transparent 70%);
    animation: stageLight 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes stageLight {
    0%   { transform: translate(-20%, -30%) rotate(0deg); }
    25%  { transform: translate(20%, 10%) rotate(90deg); }
    50%  { transform: translate(50%, 40%) rotate(180deg); }
    75%  { transform: translate(-10%, 50%) rotate(270deg); }
    100% { transform: translate(-20%, -30%) rotate(360deg); }
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 90px 24px 40px;
    min-width: 0;
}

.hero__content {
    text-align: left;
    min-width: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        url('../../resources/main.jpg') center/cover no-repeat,
        radial-gradient(ellipse at 30% 20%, rgba(177, 18, 38, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(177, 18, 38, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.65) 40%, rgba(8,8,8,0.92) 100%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero__brand {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 28px;
}

.hero__player {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-left: 30px;
}

.hero__title {
    width: 100%;
    margin-bottom: 0;
}

.hero__logo {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 60px rgba(177, 18, 38, 0.3));
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e0d6cc;
    margin-bottom: 20px;
    max-width: 500px;
    text-shadow: 0 0 30px rgba(177, 18, 38, 0.2);
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.hero__social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.hero__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--transition);
    border-radius: 4px;
}

.hero__social a:hover {
    border-color: var(--color-primary);
    background: rgba(177, 18, 38, 0.12);
}

.hero__social svg {
    width: 22px;
    height: 22px;
    fill: var(--color-text-secondary);
    transition: fill var(--transition);
}

.hero__social a:hover svg {
    fill: var(--color-text);
}

[data-platform="spotify"]:hover {
    border-color: #1DB954 !important;
}
[data-platform="spotify"]:hover svg {
    fill: #1DB954 !important;
}
[data-platform="apple_music"]:hover {
    border-color: #FA243C !important;
}
[data-platform="apple_music"]:hover svg {
    fill: #FA243C !important;
}
[data-platform="youtube"]:hover {
    border-color: #FF0000 !important;
}
[data-platform="youtube"]:hover svg {
    fill: #FF0000 !important;
}
[data-platform="instagram"]:hover {
    border-color: #E1306C !important;
}
[data-platform="instagram"]:hover svg {
    fill: #E1306C !important;
}
[data-platform="facebook"]:hover {
    border-color: #1877F2 !important;
}
[data-platform="facebook"]:hover svg {
    fill: #1877F2 !important;
}
[data-platform="tiktok"]:hover {
    border-color: #69C9D0 !important;
}
[data-platform="tiktok"]:hover svg {
    fill: #69C9D0 !important;
}
[data-platform="twitter"]:hover {
    border-color: #1DA1F2 !important;
}
[data-platform="twitter"]:hover svg {
    fill: #1DA1F2 !important;
}
[data-platform="bandcamp"]:hover {
    border-color: #629AA9 !important;
}
[data-platform="bandcamp"]:hover svg {
    fill: #629AA9 !important;
}
[data-platform="amazon_music"]:hover {
    border-color: #00A8E1 !important;
}
[data-platform="amazon_music"]:hover svg {
    fill: #00A8E1 !important;
}

.hero__player-inner {
    width: 100%;
    min-width: 0;
    max-width: 400px;
    flex: 0 1 auto;
    margin-top: 10px;
    margin-bottom: 0;
    background: rgba(31, 31, 31, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    border-radius: 8px;
    overflow: hidden;
}

.hero__player-inner iframe {
    display: block;
    width: 100%;
    min-width: 0;
        height: 152px;
    border: 0;
    border-radius: 7px;
    background: #121212;
}

/* ============================================
   6. Music
   ============================================ */
.music {
    background: var(--color-bg-soft);
}

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

.music__embed iframe {
    border-radius: 12px;
    width: 100%;
    height: 352px;
}

.music__links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   6b. Band
   ============================================ */
.band {
    position: relative;
    background: url('../../resources/bandaground.jpg') top/cover no-repeat;
}

.band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 0;
}

.band .container {
    position: relative;
    z-index: 1;
}
.band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 768px) {
    .band__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .band__grid .band-card {
        margin-top: 0 !important;
    }
}

.band-card {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bandFloat 5s ease-in-out infinite;
}

.band--reveal .band-card {
    animation: bandCardIn 0.7s ease-out both, bandFloat 5s ease-in-out infinite;
    animation-delay: var(--reveal-delay), calc(var(--reveal-delay) + 0.7s);
}

.band__grid .band-card:nth-child(1) { --reveal-delay: 0.1s; animation-delay: 0.1s, 0.8s; margin-top: 0; }
.band__grid .band-card:nth-child(2) { --reveal-delay: 0.25s; animation-delay: 0.25s, 0.95s; animation-duration: 0.7s, 4.5s; margin-top: 40px; }
.band__grid .band-card:nth-child(3) { --reveal-delay: 0.4s; animation-delay: 0.4s, 1.1s; animation-duration: 0.7s, 5.5s; margin-top: -12px; }
.band__grid .band-card:nth-child(4) { --reveal-delay: 0.55s; animation-delay: 0.55s, 1.25s; animation-duration: 0.7s, 4.8s; margin-top: 24px; }

@keyframes bandCardIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.band-card:hover {
    box-shadow: 0 8px 28px rgba(177, 18, 38, 0.25);
}

.band-card--jesus { background: rgba(55,6,6,0.7); }
.band-card--jesus:hover { box-shadow: 0 8px 28px rgba(180,20,20,0.35); }

.band-card--jose { background: rgba(34,54,91,0.7); }
.band-card--jose:hover { box-shadow: 0 8px 28px rgba(60,100,180,0.35); }

.band-card--andres { background: rgba(163,102,23,0.7); }
.band-card--andres:hover { box-shadow: 0 8px 28px rgba(220,150,40,0.35); }

.band-card--ramiro { background: rgba(20,1,10,0.7); }
.band-card--ramiro:hover { box-shadow: 0 8px 28px rgba(120,20,50,0.35); }

.band-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.band-card--jesus .band-card__photo { background: rgba(55,6,6,0.7); }
.band-card--jose .band-card__photo { background: rgba(34,54,91,0.7); }
.band-card--andres .band-card__photo { background: rgba(163,102,23,0.7); }
.band-card--ramiro .band-card__photo { background: rgba(20,1,10,0.7); }

.band-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.band-card__placeholder {
    font-size: 4rem;
    color: var(--color-muted);
}

.band-card__info {
    padding: 14px 16px;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.band-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    background: linear-gradient(180deg, #fff 0%, #a09888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

@media (max-width: 600px) {
    .band-card__name {
        font-size: 1.1rem;
    }
}

.band-card__role {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #d89753;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.modal--image {
    background: transparent;
    border: none;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: none;
    overflow: visible;
}

.modal--image img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-link {
    cursor: zoom-in;
}

/* ============================================
   7c. Member page (banda.php)
   ============================================ */
.member-page {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.member-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}

.member-page__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.member-page__photo {
}

.member-page__photo img {
    width: 100%;
    display: block;
}

.member-page__placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    font-size: 6rem;
    color: var(--color-muted);
}

.member-page__name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.member-page__role {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.member-page__intro {
    color: var(--color-muted);
    font-size: 0.95rem;
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.member-page__bio {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.member-page__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.member-social-link {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.member-social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Member navigation (other members thumbnails) */
.member-nav {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.member-nav__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 16px;
}

.member-nav__grid {
    display: flex;
    gap: 16px;
}

.member-nav__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.member-nav__card:hover {
    transform: translateY(-4px);
}

.member-nav__photo {
    width: 80px;
    height: 80px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow:
        -1px -1px 0 rgba(255,255,255,0.06),
        2px 2px 0 #222,
        4px 4px 0 #151515,
        6px 6px 20px rgba(0, 0, 0, 0.8);
}

.member-nav__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-nav__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    font-size: 1.5rem;
    color: var(--color-muted);
}

.member-nav__name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-align: center;
}

@media (max-width: 768px) {
    .member-page__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .member-page__placeholder {
        font-size: 4rem;
    }
}

/* ============================================
   7. Biography
   ============================================ */
.bio {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background:
        radial-gradient(ellipse at 16% 18%, rgba(177, 18, 38, 0.2), transparent 34%),
        radial-gradient(ellipse at 86% 74%, rgba(243, 184, 108, 0.12), transparent 36%),
        linear-gradient(180deg, #080808 0%, #0f0d0c 48%, #080808 100%);
}

.bio::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
    opacity: 0.45;
    pointer-events: none;
}

.bio::after {
    content: 'BIOGRAFIA';
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 14vw, 13rem);
    line-height: 1;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.035);
    white-space: nowrap;
    pointer-events: none;
}

.bio__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 44px;
    max-width: 1180px;
    min-height: 640px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: stretch;
}

.bio__media-stage {
    position: relative;
    min-height: 640px;
}

.bio__img {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--color-bg-soft);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
    will-change: transform;
}

.bio__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #080808;
    transition: transform 0.7s ease, filter 0.7s ease;
    will-change: transform;
}

.bio:hover .bio__img img {
    transform: scale(1.025);
}

.bio__img--main {
    inset: 22px 26% 306px 0;
    z-index: 2;
    border-radius: 8px;
    animation: bioFloatMain 12s ease-in-out infinite alternate;
}

.bio__img--main img {
    animation: bioImageDrift 16s ease-in-out infinite alternate;
}

.bio__img--main::after,
.bio__img--portrait::after,
.bio__img--wide::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bio__img--main::after {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.68));
}

.bio__img--portrait {
    right: 0;
    bottom: 118px;
    z-index: 3;
    width: 33%;
    height: 330px;
    border-radius: 6px;
    animation: bioFloatPortrait 10s ease-in-out infinite alternate;
}

.bio__img--portrait img {
    filter: contrast(1.08) brightness(0.88);
    animation: bioImageDriftReverse 14s ease-in-out infinite alternate;
}

.bio__img--portrait::after {
    background: linear-gradient(180deg, transparent 35%, rgba(8, 8, 8, 0.42));
}

.bio__img--wide {
    left: 42px;
    right: 16%;
    bottom: 0;
    z-index: 1;
    height: 190px;
    border-radius: 6px;
    animation: bioFloatWide 11s ease-in-out infinite alternate;
}

.bio__img--wide img {
    filter: saturate(0.86) brightness(0.72);
    animation: bioImageDriftWide 18s ease-in-out infinite alternate;
}

.bio__img--wide::after {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.55), transparent 55%);
}

.bio__card {
    position: relative;
    z-index: 4;
    align-self: center;
    padding: 58px 48px 42px;
    background:
        linear-gradient(135deg, rgba(177, 18, 38, 0.18), transparent 28%),
        rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.58), -26px 0 80px rgba(177, 18, 38, 0.08);
}

.bio__card .section-title {
    display: block;
    margin-bottom: 28px;
}

.bio__content {
    max-width: 620px;
}

.bio__content p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.8;
}

.bio__card::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 84px;
    height: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 24px rgba(177, 18, 38, 0.65);
    pointer-events: none;
}

.bio__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.bio__stats span {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 14px;
    background: rgba(8, 8, 8, 0.78);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f3b86c;
}

.bio__caption {
    position: absolute;
    left: 66px;
    bottom: 34px;
    z-index: 4;
    max-width: 360px;
    color: rgba(245, 240, 232, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

@keyframes bioFloatMain {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-10px, 14px, 0); }
}

@keyframes bioFloatPortrait {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(12px, -12px, 0); }
}

@keyframes bioFloatWide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(10px, 8px, 0); }
}

@keyframes bioImageDrift {
    0% { transform: scale(0.98) translate3d(-8px, -4px, 0); }
    100% { transform: scale(1.03) translate3d(8px, 4px, 0); }
}

@keyframes bioImageDriftReverse {
    0% { transform: scale(0.96) translate3d(8px, 0, 0); }
    100% { transform: scale(1.02) translate3d(-8px, 0, 0); }
}

@keyframes bioImageDriftWide {
    0% { transform: scale(0.98) translate3d(8px, 0, 0); }
    100% { transform: scale(1.025) translate3d(-8px, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .bio__img,
    .bio__img img {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .bio__wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
    }

    .bio__media-stage {
        min-height: 520px;
    }

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

    .bio__caption {
        display: none;
    }
}

@media (max-width: 768px) {
    .bio {
        padding: 80px 0;
    }

    .bio__wrapper {
        gap: 0;
    }

    .bio__media-stage {
        display: grid;
        grid-template-columns: 1fr 0.76fr;
        gap: 12px;
        min-height: 0;
        margin-bottom: 0;
    }

    .bio__img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 260px;
    }

    .bio__img--main {
        grid-column: 1 / -1;
        height: 310px;
    }

    .bio__img--portrait,
    .bio__img--wide {
        inset: auto;
        width: 100%;
        height: 210px;
    }

    .bio__card {
        max-width: 100%;
        margin: -40px 12px 0;
        padding: 38px 24px 28px;
    }

    .bio__stats {
        grid-template-columns: 1fr;
    }

    .bio__stats span {
        min-height: 46px;
    }
}

@media (max-width: 480px) {
    .bio::after {
        top: 24px;
    }

    .bio__wrapper {
        padding: 0 16px;
    }

    .bio__media-stage {
        grid-template-columns: 1fr;
    }

    .bio__img--main,
    .bio__img--portrait,
    .bio__img--wide {
        height: 230px;
    }

    .bio__img--wide {
        display: none;
    }

    .bio__content p {
        font-size: 1rem;
    }
}

/* ============================================
   7b. Discography
   ============================================ */

/* Full-page background */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(8,8,8,0.88), rgba(8,8,8,0.88)), url('../../resources/concierto.jpg') center/cover no-repeat;
    pointer-events: none;
}

.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(177, 18, 38, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(177, 18, 38, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
}
.discography {
    background: linear-gradient(rgba(8,8,8,0.88), rgba(8,8,8,0.88)), url('../../resources/Tienda/tienda3.jpg') center/cover no-repeat;
    transition: background 0.4s ease;
}

.discography__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.album-card {
    display: block;
    text-align: center;
}

.discography--reveal .album-card {
    animation: bandCardIn 0.7s ease-out both;
}

.discography__grid .album-card:nth-child(1) { animation-delay: 0.1s; }
.discography__grid .album-card:nth-child(2) { animation-delay: 0.25s; }
.discography__grid .album-card:nth-child(3) { animation-delay: 0.4s; }
.discography__grid .album-card:nth-child(4) { animation-delay: 0.55s; }

.album-card__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg);
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    box-shadow:
        2px 2px 0 #1a1a1a,
        4px 4px 0 #111,
        6px 6px 0 #0a0a0a,
        8px 8px 20px rgba(0, 0, 0, 0.7);
}

.album-card:hover .album-card__cover {
    box-shadow:
        -1px -1px 0 rgba(255,255,255,0.1),
        2px 2px 0 #222,
        4px 4px 0 #151515,
        8px 8px 30px rgba(0, 0, 0, 0.85);
}

.album-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(20px);
}

.album-card__glare {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-card__glare {
    opacity: 1;
}

.album-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
}

.album-card__icon {
    font-size: 3rem;
    color: var(--color-muted);
}

.album-card__info {
    padding: 16px;
}

.album-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.album-card__year {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 0.06em;
}

/* ============================================
   7c. Album page (disco.php)
   ============================================ */
.album-page {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.album-page__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.album-page__cover {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    box-shadow:
        -1px -1px 0 rgba(255,255,255,0.06),
        2px 2px 0 #222,
        4px 4px 0 #151515,
        6px 6px 20px rgba(0, 0, 0, 0.8);
}

.album-page__cover img {
    width: 100%;
    display: block;
    transform: translateZ(24px);
}

.album-page__cover:hover .album-card__glare {
    opacity: 1;
}

.album-page__placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    font-size: 6rem;
    color: var(--color-muted);
}

.album-page__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.album-page__meta {
    color: var(--color-muted);
    font-size: 1rem;
    margin-bottom: 12px;
}

.album-page__year {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
}

.album-page__intro {
    color: var(--color-muted);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    border-left: 3px solid var(--color-primary);
    padding-left: 16px;
    margin-bottom: 24px;
}

.album-page__desc {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.album-page__tracks {
    background: rgba(0,0,0,0.5);
    border-radius: 1px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 28px;
}

.album-page__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.album-page__press-content {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.album-page__press-content p {
    margin-bottom: 12px;
}

.album-page__testimonials {
    background: rgba(0,0,0,0.5);
    border-radius: 1px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.album-page__testimonials::before {
    content: 'PRENSA';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 0.15em;
    color: rgba(177, 18, 38, 0.04);
    pointer-events: none;
    white-space: nowrap;
}

.album-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d89753;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.album-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    position: relative;
    padding: 32px 24px 24px;
    background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(8,8,8,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.04);
    clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    border-color: rgba(177, 18, 38, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(177, 18, 38, 0.15), 0 0 0 1px rgba(177, 18, 38, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 6px;
    left: 10px;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: rgba(177, 18, 38, 0.35);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #e8e0d4;
    font-style: italic;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.testimonial-card cite {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d89753;
    font-style: normal;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-card cite::before {
    content: '\2014';
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-card cite a {
    color: #d89753;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-card cite a:hover {
    color: var(--color-primary);
}

.album-page__tracks ol {
    list-style: none;
    padding: 0;
}

.album-page__tracks li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    align-items: center;
}

.track-num {
    color: var(--color-muted);
    min-width: 24px;
    flex-shrink: 0;
}

.track-thumb {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    overflow: hidden;
}

.track-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.track-thumb--empty {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.track-thumb--empty img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}

.track-name {
    flex: 1;
}

.track-duration {
    color: var(--color-muted);
    font-size: 0.85rem;
    min-width: 36px;
    text-align: right;
    flex-shrink: 0;
}

.track-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
    flex-shrink: 0;
}

.track-play:hover {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.track-play svg {
    fill: var(--color-muted);
    transition: fill var(--transition);
}

.track-play:hover svg {
    fill: #1DB954;
}

.album-page__tracks li:last-child {
    border-bottom: none;
}

.track-num {
    color: var(--color-muted);
    min-width: 24px;
}

.album-page__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Album navigation (other albums thumbnails) */
.album-nav {
    background: rgba(0,0,0,0.5);
    border-radius: 1px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 28px;
}

.album-nav__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 16px;
}

.album-nav__grid {
    display: flex;
    gap: 16px;
}

.album-nav__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.album-nav__card:hover {
    transform: translateY(-4px);
}

.album-nav__cover {
    width: 100px;
    height: 100px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    box-shadow:
        -1px -1px 0 rgba(255,255,255,0.06),
        2px 2px 0 #222,
        4px 4px 0 #151515,
        6px 6px 20px rgba(0, 0, 0, 0.8);
}

.album-nav__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(20px);
}

.album-nav__card:hover .album-nav__cover .album-card__glare {
    opacity: 1;
}

.album-nav__card:hover .album-nav__cover {
    border-color: var(--color-primary);
}

.album-nav__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-nav__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    font-size: 2rem;
    color: var(--color-muted);
}

@media (max-width: 768px) {
    .album-page__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .album-page__title {
        font-size: 1.6rem;
    }

    .album-page__placeholder {
        font-size: 4rem;
    }
}

/* ============================================
   8. Concerts
   ============================================ */
.concerts {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(8,8,8,0.88), rgba(8,8,8,0.88)), url('../../resources/concierto.jpg') center/cover no-repeat fixed;
    animation: concertsBgZoom 24s ease-in-out infinite alternate;
}

@keyframes concertsBgZoom {
    0%   { background-size: 100%; }
    100% { background-size: 110%; }
}

.concerts::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(177, 18, 38, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(177, 18, 38, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
}

.concerts .container {
    position: relative;
    z-index: 1;
}

.concerts__empty {
    text-align: center;
    padding: 60px 24px;
}

.concerts__empty p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.concerts__list {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto 8px;
    gap: 1px;
}

.concerts__year-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 40px 0 16px;
    color: var(--color-text);
    text-align: center;
}

.concert-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    transition: background var(--transition);
}

.concert-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.concert-card__poster {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.concert-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.concert-card__poster--empty {
    background: #0a0a0a;
}

.concert-card__date {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    min-width: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.concert-card__time {
    display: block;
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.concert-card__price {
    font-size: 0.82rem;
    color: #d89753;
    margin-top: 3px;
}

.concert-card__price-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

.concert-card__info {
    flex: 1;
}

.concert-card__city {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.concert-card__venue {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.concert-card__venue a {
    color: var(--color-primary);
    text-decoration: underline;
}
.concert-card__venue a:hover {
    color: var(--color-primary-hover);
}

.concert-card__action {
    flex-shrink: 0;
}

/* ============================================
   9. Merchandising
   ============================================ */
.shop__empty {
    text-align: center;
    padding: 40px 24px;
}

.shop__empty p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.shop {
    position: relative;
    background: url('../../resources/Tienda/tienda3.jpg') top/cover no-repeat;
}

.shop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.shop .container {
    position: relative;
    z-index: 1;
}

.shop__info {
    text-align: center;
}

.shop__info p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* ============================================
   10. Contact
   ============================================ */
.contact {
    position: relative;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(8,8,8,0.88), rgba(8,8,8,0.88)), url('../../resources/banda.webp') center/cover no-repeat;
    animation: concertsBgZoom 24s ease-in-out infinite alternate;
}

.contact__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(177, 18, 38, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(177, 18, 38, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
}

.contact__wrapper {
    position: relative;
    z-index: 1;
}

.contact__card {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 44px;
}

.contact__form {
    max-width: none;
    margin: 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(8, 8, 8, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 38, 0.15), 0 0 20px rgba(177, 18, 38, 0.08);
    background: rgba(12, 12, 12, 0.9);
}

.form-control::placeholder {
    color: rgba(184, 176, 168, 0.4);
}

.form-control--error {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 38, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23b11226'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-control option {
    background: #141414;
    color: var(--color-text);
}

.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.form-group--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-group--checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-error {
    color: var(--color-primary);
    font-size: 0.85rem;
    margin-top: 4px;
}

.form-messages {
    max-width: none;
    margin: 0 0 30px;
}

.form-messages--success {
    padding: 16px;
    border: 1px solid rgba(0, 200, 100, 0.3);
    background: rgba(0, 200, 100, 0.06);
    color: #6fcf97;
}

.form-messages--error {
    padding: 16px;
    border: 1px solid var(--color-border-light);
    background: rgba(177, 18, 38, 0.08);
    color: var(--color-primary);
}

.form-submit {
    text-align: center;
    margin-top: 28px;
}

.btn--large {
    padding: 16px 48px;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.btn__arrow {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn--primary:hover .btn__arrow {
    transform: translateX(6px);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ===== Contact responsive ===== */
@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__card {
        padding: 36px 24px;
    }
}

.form-messages ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 6px;
}

.form-messages li {
    margin-bottom: 4px;
}

/* Honeypot - hidden from users */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   11a. Legal pages
   ============================================ */
.legal-page {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.legal-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.legal-update {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 32px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: var(--color-text);
}

.legal-page p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-page li {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

.legal-page a:not(.btn) {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-page a:not(.btn):hover {
    color: var(--color-primary-hover);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.legal-table th {
    background: var(--color-bg-soft);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
}

.legal-table td {
    color: var(--color-text-secondary);
}

.legal-back {
    margin-top: 40px;
}

/* ============================================
   11b. Cookie consent banner
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-bar--visible {
    transform: translateY(0);
}

.cookie-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-bar__text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}

.cookie-bar__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-bar__text a:hover {
    color: var(--color-primary-hover);
}

.cookie-bar__action {
    flex-shrink: 0;
}

/* ============================================
   11. Footer
   ============================================ */
.footer {
    position: relative;
    padding: 80px 0 0;
    background: url('../img/foot-bg.png') center/cover no-repeat;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 0;
}

.footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
}

.footer__col {
    position: relative;
    z-index: 1;
}

.footer__logo {
    margin-bottom: 8px;
}

.footer__logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer__tagline {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 245, 245, 0.15);
    transition: all var(--transition);
}

.footer__social a:hover {
    border-color: var(--color-primary);
    background: rgba(177, 18, 38, 0.15);
}

.footer__social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-text-secondary);
    transition: fill var(--transition);
}

.footer__social a:hover svg {
    fill: var(--color-text);
}

.footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--color-border);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer {
        padding: 60px 0 0;
}

}

/* Concert badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid;
}

.badge--sold-out {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.badge--cancelled {
    border-color: var(--color-muted);
    color: var(--color-muted);
}

.badge--past {
    border-color: var(--color-muted);
    color: var(--color-muted);
}

.concert-card__action .badge {
    width: 100%;
    text-align: center;
}

/* ============================================
   12. Responsive
   ============================================ */

/* Tablet & below */
@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero__tagline {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__social {
        justify-content: flex-start;
    }

    .concert-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .concert-card__action {
        width: 100%;
    }

    .concert-card__action .btn {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero__layout {
        display: block;
        text-align: center;
        padding: 50px 24px 40px;
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__brand {
        flex-direction: column;
        width: 100%;
        gap: 18px;
        margin-bottom: 28px;
    }

    .hero__player {
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }

    .hero__tagline {
        font-size: 1.1rem;
        max-width: 100%;
        border-left: none;
        padding-left: 0;
    }

    .hamburger {
        display: flex;
    }

    .header__social {
        display: flex;
    }

    .hero__social {
        display: none;
    }

    .hero__bg::before {
        top: 0;
        width: 100%;
        height: 185px;
        background:
            linear-gradient(180deg, #080808 0%, #080808 70%, rgba(8, 8, 8, 0.72) 86%, transparent 100%);
        filter: none;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background: url('../../resources/topmenu.jpg') top/cover no-repeat;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.88);
    }

    .nav--open {
        height: auto;
        padding: 16px 0;
    }

    .nav__list {
        position: relative;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 24px;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero__logo {
        max-width: calc(100vw - 48px);
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__player-inner {
        position: relative;
        width: calc(100vw - 30px);
        max-width: 400px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 120px;
    }

    .hero__player-inner iframe {
        height: 370px;
    }

    .music__links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .footer__legal span {
        display: none;
    }

    .footer__legal a {
        display: block;
        margin: 6px 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .footer__social {
        gap: 8px;
    }
    .footer__social a {
        width: 32px;
        height: 32px;
    }
    .footer__social svg {
        width: 16px;
        height: 16px;
    }

    .band__grid {
        gap: 10px;
    }

    .hero__social a {
        width: 42px;
        height: 42px;
    }

    .hero__social svg {
        width: 18px;
        height: 18px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title::after {
        width: 40px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .section-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 700px) {
    .hero__bg {
        background: url('../../resources/main.jpg') top/cover no-repeat;
    }
}

@media (max-width: 450px) {
    .header__social {
        gap: 0;
    }
}

/* ============================================
   14. Privacy Modal
   ============================================ */
.privacy-link {
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    background: rgba(18, 18, 18, 0.97);
    border: 1px solid rgba(177, 18, 38, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 1;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--color-primary);
}

.modal__body {
    padding: 40px 36px 30px;
    overflow-y: auto;
    max-height: 75vh;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .modal__body {
        padding: 32px 20px 24px;
    }

    .modal__close {
        top: 8px;
        right: 10px;
        font-size: 1.6rem;
    }
}

/* ============================================
   15. Track Tooltip
   ============================================ */
.track-tooltip {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    background: rgba(18, 18, 18, 0.97);
    border: 1px solid rgba(177, 18, 38, 0.3);
    border-radius: 8px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    max-width: 400px;
}

.track-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-thumb {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.tooltip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tooltip-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tooltip-info .tooltip-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tooltip-info .tooltip-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tooltip-info .tooltip-meta {
    font-size: 0.82rem;
    color: var(--color-muted);
    display: flex;
    gap: 12px;
}
