@charset "UTF-8";

/* =====================================================================
   NAVBAR
   ===================================================================== */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: var(--space-md) 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo img {
  width: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu ul {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-menu a:hover {
  color: var(--accent-orange);
  transition: 0.3s ease;
}


/* =====================================================================
   BOTONES
   ===================================================================== */

.btn {
  padding: var(--space-sm) var(--space-md);
  border-radius: 30px;
  font-weight: 400;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-orange);
  color: #000;
}
.btn-primary:hover {
  background: #ffb84a;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--accent-purple);
}
.btn-outline:hover {
  background: var(--accent-purple);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--accent-purple);
  background: rgba(105,1,254,0.1);
}
.btn-secondary:hover {
  background: var(--accent-purple);
  transform: scale(1.05);
}


/* =====================================================================
   CARDS
   ===================================================================== */

.card {
  background: var(--gray-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
}

.card-body {
  padding: 22px;
  line-height: 1.5;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-body h4 span {
  font-size: 0.9rem;
  color: var(--accent-orange);
}

.card-body p {
  margin-bottom: 4px;
  color: var(--gray-mid);
}


/* ============================================================
   CARRUSEL ARTISTAS — NUEVA VERSIÓN
   ============================================================ */

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track-artists {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  transition: transform 0.35s ease-out;
}

/* Slide: ahora más chico */
.artist-slide {
  flex: 0 0 calc(25% - 24px);  /* 4 por fila en desktop */
  display: flex;
  justify-content: center;
}

/* Card interna */
.artist-card-mini {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(0,0,0,0.35);
  transition: 0.35s ease;
}

.artist-card-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover overlay */
.artist-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.artist-card-mini:hover .artist-hover {
  opacity: 1;
}

.artist-hover h3 {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Hover scale */
.artist-card-mini:hover {
  transform: scale(1.05);
}

/* Flechas — ahora más circulares */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 22px;
  padding: 14px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(255,255,255,0.18);
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

/* Responsive */
@media (max-width: 1000px) {
  .artist-slide { flex: 0 0 33%; }
}

@media (max-width: 700px) {
  .artist-slide { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .artist-slide { flex: 0 0 80%; }
}

/* =====================================================================
   FOOTER ULTRA-FINO
   ===================================================================== */

.footer-minimal {
  background: #0d0d0d;
  border-top: 1px solid #222;
  padding: 10px 0;
}

.footer-minimal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-minimal img {
  width: 48px;
  opacity: 0.9;
  transition: 0.2s;
}
.footer-minimal img:hover {
  opacity: 1;
}

.footer-center a,
.footer-right a {
  color: white;
  margin: 0 10px;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: 0.2s;
}
.footer-center a:hover,
.footer-right a:hover {
  opacity: 1;
  color: var(--accent-purple);
}

.footer-bottom-center {
  text-align: center;
  margin-top: 8px;
  color: var(--gray-mid);
  font-size: 0.70rem;
}


/* =====================================================================
   CAROUSEL — INFINITE SCROLL
   ===================================================================== */

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track-artists {
  display: flex;
  gap: 32px;
  padding: 10px 0;
  transition: transform 0.35s ease-out;
}

.artist-slide {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 320px);
  height: clamp(280px, 30vw, 360px);
  border-radius: var(--radius);
  overflow: hidden;
}

.artist-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;       /* círculo exacto */
    height: 46px;      /* círculo exacto */
    border-radius: 50%;
    background: rgba(0,0,0,0.60);
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: 0.25s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-50%) scale(1.12);
}

.carousel-btn.left { left: 8px; }
.carousel-btn.right { right: 8px; }


/* =====================================================================
   MEDIA QUERIES — MOBILE
   ===================================================================== */

@media (max-width: 700px) {

  /* Footer */
  .footer-minimal-inner {
    flex-direction: column;
    gap: 8px;
  }

  .footer-center,
  .footer-right {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile menu */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
  }

  /* Artists grid en mobile */
  .grid-artists {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .artist-card {
    max-width: 280px;
    width: 90%;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

  .carousel-track-artists {
    gap: 20px;
  }
}


/* =====================================================================
   FIX DE IMÁGENES EN EVENTOS / CARDS
   ===================================================================== */

.grid-cards {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 260px;
  display: flex;
  flex-direction: column;
}

.card img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #111;
}

/* ================================
   POSTERS — HOVER PRO
================================ */

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transform: translateZ(0);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.artist-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.75) contrast(1.15);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay h3 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
}

.artist-card:hover .artist-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center,
        rgba(255,255,255,0.12),
        transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
}

.artist-card:hover::after {
    opacity: 1;
}

/* ============================================================
   MENÚ HAMBURGUESA — FIX FINAL
============================================================ */

/* Estilo base: visible solo en mobile, pero consistente */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000; /* por encima del video */
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Estado activo (animación opcional) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ================================
   NAV — Desktop
================================ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  z-index: 1500;
}

/* ================================
   NAV — Mobile
================================ */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* oculto */
    width: 70%;
    height: 100vh;
    padding: 120px 40px;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: right 0.35s ease;
    z-index: 1500;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
  }
}

