/* ══════════════════════════════════════════════
   Artista Theme — Global Styles
   ══════════════════════════════════════════════ */

:root {
  --black:        #080810;
  --black-mid:    #0f0f1a;
  --black-light:  #16162a;
  --violet:       #7c3aed;
  --violet-light: #a855f7;
  --violet-glow:  #c084fc;
  --violet-dim:   #2e1065;
  --accent:       #e879f9;
  --white:        #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: var(--black); color: #fff; font-family: 'Inter', sans-serif; }
.wp-site-blocks > * { margin-block: 0 !important; }
.wp-block-group { margin: 0 !important; }

/* ═══════════════════════════════════
   NAV — Floating pill
═══════════════════════════════════ */
.artista-header {
  position: fixed !important;
  top: 1.1rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 3rem) !important;
  max-width: 1100px !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 20, 0.82) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.08), 0 8px 40px rgba(0,0,0,0.5) !important;
  z-index: 9999 !important;
  padding: 0.65rem 0.9rem 0.65rem 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.artista-header .wp-block-site-title a {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.5rem !important;
  letter-spacing: 4px !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  background: linear-gradient(90deg, #fff 60%, var(--violet-glow)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.artista-header .wp-block-navigation,
.artista-header .wp-block-navigation__container {
  display: flex !important;
  align-items: center !important;
  gap: 0.2rem !important;
}

.artista-header .wp-block-navigation a,
.artista-header .wp-block-navigation-item__content {
  color: rgba(255,255,255,0.72) !important;
  text-decoration: none !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  transition: all 0.25s !important;
}

.artista-header .wp-block-navigation a:hover {
  color: var(--violet-glow) !important;
  background: rgba(168,85,247,0.1) !important;
}

.artista-nav-cta a,
.artista-nav-cta .wp-block-navigation-item__content {
  background: linear-gradient(135deg, var(--violet), var(--accent)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 999px !important;
  -webkit-text-fill-color: #fff !important;
}

.artista-nav-cta a:hover {
  background: linear-gradient(135deg, var(--violet-light), var(--accent)) !important;
  color: #fff !important;
}

@media (max-width: 800px) {
  .artista-header .wp-block-navigation__container { display: none !important; }
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.artista-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Video background */
.artista-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.artista-hero-video video,
.artista-hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Multi-layer overlay — darker bottom for text readability */
.artista-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(8,8,16,0.35) 0%,
      rgba(8,8,16,0.1)  40%,
      rgba(8,8,16,0.75) 75%,
      rgba(8,8,16,0.97) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(124,58,237,0.18) 0%, transparent 65%);
}

/* Content */
.artista-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 5rem;
}

/* Artist name — massive Bebas */
.artista-hero-name {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(5rem, 16vw, 12rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 4px !important;
  color: #fff !important;
  text-shadow:
    0 0 80px rgba(168,85,247,0.4),
    0 4px 30px rgba(0,0,0,0.8) !important;
  margin-bottom: 0 !important;
}

.artista-hero-name span.violet {
  background: linear-gradient(90deg, var(--violet-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Role tags under name */
.artista-hero-roles {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 2rem;
}

.artista-role-tag {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(168,85,247,0.5) !important;
  padding: 0.35rem 1rem !important;
  border-radius: 999px !important;
  background: rgba(124,58,237,0.15) !important;
  backdrop-filter: blur(8px) !important;
  margin: 0 !important;
}

/* Hero bio */
.artista-hero-bio {
  font-size: 1.05rem !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.72) !important;
  max-width: 560px !important;
  line-height: 1.7 !important;
  margin-bottom: 2.5rem !important;
}

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.artista-btn-violet .wp-block-button__link {
  background: linear-gradient(135deg, var(--violet), var(--accent)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2.2rem !important;
  transition: opacity 0.3s !important;
  box-shadow: 0 4px 24px rgba(124,58,237,0.45) !important;
}
.artista-btn-violet .wp-block-button__link:hover { opacity: 0.85 !important; }

.artista-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2.2rem !important;
  transition: all 0.3s !important;
}
.artista-btn-outline .wp-block-button__link:hover {
  border-color: var(--violet-glow) !important;
  color: var(--violet-glow) !important;
}

/* ═══════════════════════════════════
   SCROLL INDICATOR
═══════════════════════════════════ */
.artista-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.artista-scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.6));
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════
   MARQUEE GALLERY
═══════════════════════════════════ */
.artista-gallery-section {
  background: var(--black) !important;
  padding: 5rem 0 !important;
  overflow: hidden;
}

.artista-gallery-section .gallery-header {
  text-align: center;
  padding: 0 2rem 3rem;
}

.artista-marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.artista-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.artista-marquee.reverse .artista-marquee-track {
  animation: marqueeReverse 28s linear infinite;
}

.artista-marquee + .artista-marquee {
  margin-top: 1rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.artista-marquee-track img {
  height: 240px;
  width: auto;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}

.artista-marquee-track img:hover {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
  cursor: pointer;
}

/* Second row — portrait photos */
.artista-marquee.row2 .artista-marquee-track img {
  height: 320px;
}

/* ═══════════════════════════════════
   LIGHTBOX
═══════════════════════════════════ */
#artista-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,5,15,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#artista-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#artista-lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(124,58,237,0.4);
}

.artista-lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.artista-lb-close:hover { color: #fff; }

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.artista-about {
  background: var(--black-mid) !important;
  padding: 7rem clamp(1rem,4vw,2rem) !important;
  position: relative;
  overflow: hidden;
}

.artista-about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.artista-about h2 { font-family: 'Bebas Neue', sans-serif !important; }

.artista-about-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
  filter: brightness(0.9);
}

/* Glow border on image */
.artista-about-img {
  position: relative;
}

.artista-about-img::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--accent), transparent);
  z-index: -1;
  opacity: 0.5;
}

/* ═══════════════════════════════════
   DISCIPLINE CARDS (Facets)
═══════════════════════════════════ */
.artista-facets {
  background: var(--black) !important;
  padding: 7rem clamp(1rem,4vw,2rem) !important;
}

.artista-facets h2 { font-family: 'Bebas Neue', sans-serif !important; }

.artista-facet-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(168,85,247,0.15) !important;
  border-radius: 8px !important;
  padding: 2.5rem 2rem !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.artista-facet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.artista-facet-card:hover {
  border-color: rgba(168,85,247,0.45) !important;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}

.artista-facet-card:hover::before { opacity: 1; }

.artista-facet-card h3 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.8rem !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  margin-bottom: 0.5rem !important;
}

.artista-facet-card p {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.52) !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
}

p.artista-facet-icon {
  font-size: 2.2rem !important;
  margin: 0 0 1.2rem !important;
}

.artista-facet-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(168,85,247,0.1);
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════
   FEATURED / SHOWREEL
═══════════════════════════════════ */
.artista-showreel {
  background: var(--black-light) !important;
  padding: 7rem clamp(1rem,4vw,2rem) !important;
}

.artista-showreel h2 { font-family: 'Bebas Neue', sans-serif !important; }

.artista-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.25), 0 30px 80px rgba(0,0,0,0.6);
}

.artista-video-wrap iframe,
.artista-video-wrap video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ═══════════════════════════════════
   PRESS / LOGOS
═══════════════════════════════════ */
.artista-press {
  background: var(--black-mid) !important;
  padding: 4rem clamp(1rem,4vw,2rem) !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════ */
.artista-contact {
  background: var(--black) !important;
  padding: 8rem clamp(1rem,4vw,2rem) !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.artista-contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.artista-contact h2 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(3rem, 8vw, 6rem) !important;
  letter-spacing: 3px !important;
}

/* ═══════════════════════════════════
   SHARED HELPERS
═══════════════════════════════════ */
.a-eyebrow {
  font-size: 0.7rem !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: var(--violet-light) !important;
  margin-bottom: 0.8rem !important;
  display: block !important;
}

hr.a-divider {
  width: 50px !important;
  max-width: 50px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--violet), var(--accent)) !important;
  border: none !important;
  opacity: 1 !important;
  margin: 1.5rem 0 !important;
}

hr.a-divider-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.artista-footer {
  background: #04040c !important;
  border-top: 1px solid rgba(168,85,247,0.2) !important;
  padding: 3.5rem clamp(1rem,4vw,2rem) 2rem !important;
}

.artista-footer .wp-block-site-title a {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.6rem !important;
  letter-spacing: 4px !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

p.artista-footer-copy {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.2) !important;
  margin: 0 !important;
}

.artista-footer-links p {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.38) !important;
  line-height: 2.2 !important;
  font-weight: 300 !important;
}

.artista-footer-links a {
  color: rgba(255,255,255,0.38) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.artista-footer-links a:hover { color: var(--violet-glow) !important; }

p.artista-footer-heading {
  font-size: 0.68rem !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: var(--violet-light) !important;
  margin-bottom: 1rem !important;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 768px) {
  .artista-hero-name { font-size: clamp(4rem, 18vw, 7rem) !important; }
  .artista-marquee-track img { height: 180px; }
  .artista-marquee.row2 .artista-marquee-track img { height: 240px; }
}
