@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;800&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-accent: #8b5cf6;
    --color-text: #f5f5f5;
    --color-muted: #999;
    --shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
}

/* === HEADER === */
/* Estilo general del header */
header {
  position: relative;
  background-image: url('assets/bg/bck.png'); /* Fondo del header */
  background-size: cover;
  background-position: center;
  padding: 60px 60px;
  color: white;
  text-align: center;
  z-index: 10;
}

/* Logo en el header */
header .logo {
  width: 120px;
  margin-bottom: 10px;
}

/* Tipografía del título */
header h1 {
  font-family: 'Gothic', sans-serif;
  font-size: 5rem;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
}

/* Menú */
header nav a {
  color: rgb(240, 240, 240);
  text-decoration: none;
  margin: 10 40px;
  font-weight: bold;
}

/* Home con fondo */
.home-section {
  min-height: 100vh;
  background-image: url('assets/bg/fondohome.png'); /* Fondo del home */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Esto hace que el fondo se quede mientras scrolleas */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Capa oscura para resaltar texto */
.home-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  text-align: center;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
}

/* === HOME === */
#home {
    height: 100vh;
    background: url('assets/bg/fondohome.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

#home::after {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0, 0, 0, 0.418);
}

#home .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

#home h2 {
    font-size: 2.5rem;
    color: var(--color-accent);
    text-shadow: var(--shadow);
    margin-bottom: 1rem;
}

#home p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.2rem;
}

#home button {
    background: var(--color-accent);
    border: none;
    color: #7702fc;
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    transition: all 0.3s ease;
}

#home button:hover {
    background: #a78bfa;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

/* === SECCIONES GENERALES === */
section {
    padding: 100px 60px;
    text-align: center;
}

h2 {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

/* === MÚSICA === */
#musica .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.music-card {
    background: #111;
    padding: 20px;
    border-radius: 18px;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.music-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.music-card h3 {
    color: var(--color-accent);
    margin: 8px 0;
}

.music-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.music-card audio {
    width: 100%;
    margin-top: 10px;
}

/* === GALERÍA === */
#galeria .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

#galeria img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

#galeria img:hover {
    transform: scale(1.04);
    filter: brightness(1.3);
}

/* === MODAL GALERÍA === */
#modal {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    flex-direction: column;
    z-index:1000;
}

#modal img {
    width: 65%;
    max-width: 800px;
    border-radius: 15px;
}

#modal #close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-accent);
}

#modal-nav button {
    margin: 20px;
    padding: 10px 20px;
    font-size: 1.5rem;
    background: none;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

#modal-nav button:hover {
    background: var(--color-accent);
    color: #000;
}

/* === EVENTOS === */
#eventos .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.event-card {
    background: #111;
    padding: 25px;
    border-radius: 18px;
    width: 270px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.event-card h3 {
    color: var(--color-accent);
    margin-bottom: 10px;
}

.event-card span.available {
    color: #00ff99;
    font-weight: 600;
}

.event-card span.soldout {
    color: #ff4fa3;
    font-weight: 600;
}

/* === CONTACTO === */
#contacto a {
    color: var(--color-accent);
    text-decoration: none;
    transition: 0.3s;
}

#contacto a:hover {
    text-shadow: 0 0 8px var(--color-accent);
}

/* === FOOTER === */
footer {
    background: #000;
    color: #888;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    font-size: 0.9rem;
}
/* === SECCIÓN DE VIDEOS === */
#musica {
  padding: 80px 10%;
  background: rgba(10, 10, 10, 0.95);
  text-align: center;
}

#musica h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

#musica p {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.video-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-card h3 {
  margin: 15px;
  color: #00ffab;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}
/* --- GALERÍA --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* --- EVENTOS --- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.event-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.event-card p {
  font-size: 0.95rem;
  color: #bbb;
  margin: 3px 0;
}

.status {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.available .status {
  background: #39ff14;
  color: #000;
}

.soldout .status {
  background: #ff1744;
  color: #fff;
}
/* === FILTROS GALERÍA === */
.filter-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.filter-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 25px;
  padding: 8px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #fff;
  color: #000;
}

.filter-btn.active {
  background: #39ff14;
  color: #000;
  font-weight: bold;
}

/* === EVENTOS EFECTO NEÓN === */
.event-card {
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side, rgba(57,255,20,0.3), transparent);
  transition: all 0.2s ease;
  pointer-events: none;
}

.event-card:hover::before {
  width: 250px;
  height: 250px;
}
/* === HOME HERO === */
.home-hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  background-image: url('assets/bg/illrod.png'); /* Cambialo por tu fondo */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.home-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
  animation: fadeInUp 1.2s ease;
}

/* Título HOME con Manufacturing Consent y efecto visual */
#home .hero-title {
  font-family: "Manufacturing Consent", system-ui;
  font-size: 10rem;                  /* grande y potente */
  letter-spacing: 12px;              /* un poco de espacio entre letras */
  text-transform: uppercase;        /* todo en mayúsculas */
  color: #fff;                      /* blanco */
  text-shadow: 
    0 0 10px #ff7300, 
    0 0 20px #7e024e, 
    0 0 30px #73ff00;               /* glow neón */
  animation: pulseGlow 1s infinite alternate;
}

/* Animación para el glow neón */
@keyframes pulseGlow {
  from {
    text-shadow: 
      0 0 10px #ff0095, 
      0 0 20px #ff0095, 
      0 0 30px #00ffb3;
  }
  to {
    text-shadow: 
      0 0 25px #ff0095, 
      0 0 40px #ff0095, 
      0 0 60px #00ffb3;
  }
}


.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #a09e9e;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-text {
  font-size: 1rem;
  color: #cfcfcf;
  margin-bottom: 25px;
}

.btn-hero {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #660085, #13026e);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 179, 0.5);
}

/* Animaciones */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  from { text-shadow: 0 0 10px #160466, 0 0 20px #2600ff; }
  to { text-shadow: 0 0 25px #00ff15, 0 0 40px #1100ff; }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-text { font-size: 0.9rem; }
}
/* Redes sociales en contacto */
#contacto .social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#contacto .social-icon {
  color: #fff;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}

#contacto .social-icon:hover {
  color: #ff0095; /* Fucsia tipo neon */
  transform: scale(1.3);
  text-shadow: 0 0 10px #ff0095, 0 0 20px #00ffb3;
}
/* Tipografía del header y menú */
header h1,
header nav a {
    font-family: "Press Start 2P", system-ui;/* cambia según tu elección */
    font-weight: 700;
}
header h1,
header nav a {
    text-shadow: 0 0 10px #8A2BE2, 0 0 20px #4B0082;
}

/* === HEADER FLOTANTE + NEBLINA === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    background: rgba(0,0,0,0.5); /* semi-transparente */
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Aseguramos que logo y menú queden visibles */
header .logo {
    z-index: 101;
}
header nav {
    z-index: 101;
}

/* Efecto parallax ya lo tenés en home con background-attachment: fixed */
/* Si querés más dinamismo, podemos hacer JS parallax opcional */

/* Neblina animada */
#neblina {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* queda detrás del header pero encima del fondo */
}
