/* Artist page specific styles - extends styles.css */
.artist-hero { min-height: 92vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding: 0 8vw 70px; }
.artist-hero-bg { position: absolute; inset: 0; z-index: 0; }
.artist-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.artist-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(10,10,10,0.7) 70%, var(--black)); }
.artist-hero-inner { position: relative; z-index: 2; }
.artist-back { position: fixed; top: 24px; left: 24px; z-index: 50; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(10,10,10,0.7); border: 1px solid var(--gray-border); border-radius: 40px; color: var(--white); text-decoration: none; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(8px); transition: all 0.2s; }
.artist-back:hover { border-color: var(--neon); color: var(--neon); }
.artist-genre-tag { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); margin-bottom: 14px; }
.artist-hero-name { font-family: var(--font-display); font-size: clamp(60px, 12vw, 170px); line-height: 0.85; letter-spacing: 0.03em; }
.artist-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.artist-tag { font-size: 11px; padding: 7px 16px; border: 1px solid var(--neon); border-radius: 40px; color: var(--neon); letter-spacing: 0.05em; }
.artist-section { padding: 80px 8vw; position: relative; border-top: 1px solid var(--gray-border); }
.artist-bio-text { max-width: 760px; font-size: 17px; line-height: 1.9; color: var(--white-dim); }
.artist-bio-text strong { color: var(--white); font-weight: 500; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.video-embed { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-border); }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.spotify-embed { border-radius: 12px; overflow: hidden; margin-top: 30px; }
.yt-button { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 14px 28px; border: 1px solid var(--gray-border); border-radius: 6px; color: var(--white); text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
.yt-button:hover { border-color: var(--neon); color: var(--neon); }
.gallery-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 40px; }
.gallery-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; transition: transform 0.5s, filter 0.5s; filter: grayscale(0.15); cursor: pointer; }
.gallery-collage img:hover { transform: scale(1.03); filter: grayscale(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.artist-social { display: flex; gap: 14px; margin-top: 36px; }
.artist-social a { width: 48px; height: 48px; border: 1px solid var(--gray-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white-dim); text-decoration: none; font-size: 18px; transition: all 0.2s; }
.artist-social a:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-3px); }
.artist-cta-bar { text-align: center; padding: 70px 8vw; border-top: 1px solid var(--gray-border); }
.artist-cta-bar h3 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); margin-bottom: 24px; letter-spacing: 0.03em; }
@media (max-width: 900px) {
  .media-grid { grid-template-columns: 1fr; }
  .gallery-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .artist-section { padding: 60px 24px; }
}

/* ===== BOOKING MODAL (elegir WhatsApp o Email) ===== */
button.btn-primary { font-family: var(--font-body); line-height: 1.2; }
.booking-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.booking-modal.open { display: flex; }
.booking-modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,5,0.82); backdrop-filter: blur(8px); }
.booking-modal__card { position: relative; z-index: 2; width: 100%; max-width: 440px; text-align: left; background: linear-gradient(135deg, rgba(20,24,20,0.97), rgba(10,12,10,0.98)); border: 1px solid rgba(202,255,0,0.25); border-radius: 14px; padding: 38px 32px 32px; box-shadow: 0 0 60px rgba(202,255,0,0.08); animation: bookIn 0.3s cubic-bezier(.2,.8,.2,1); }
@keyframes bookIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.booking-modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gray-border); background: transparent; color: var(--white); font-size: 22px; line-height: 1; cursor: pointer; transition: all 0.2s; }
.booking-modal__close:hover { border-color: var(--neon); color: var(--neon); transform: rotate(90deg); }
.booking-modal__eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); margin-bottom: 8px; }
.booking-modal__title { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.02em; line-height: 1; margin-bottom: 24px; }
.booking-modal__options { display: flex; flex-direction: column; gap: 12px; }
.booking-opt { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--gray-border); border-radius: 10px; text-decoration: none; color: var(--white); transition: all 0.2s; }
.booking-opt:hover { border-color: var(--neon); transform: translateY(-2px); background: rgba(202,255,0,0.04); }
.booking-opt__icon { font-size: 22px; color: var(--neon); width: 30px; text-align: center; flex-shrink: 0; }
.booking-opt__text { display: flex; flex-direction: column; flex: 1; }
.booking-opt__text strong { font-weight: 500; font-size: 15px; }
.booking-opt__text small { font-size: 12px; color: var(--white-dim); margin-top: 2px; }
.booking-opt__arrow { color: var(--white-dim); transition: all 0.2s; }
.booking-opt:hover .booking-opt__arrow { color: var(--neon); transform: translateX(4px); }
