/*
Theme Name: TC CLUB Theme
Theme URI: https://tcclub.biotickets.com
Author: Gildardo / Biotickets
Description: Plantilla personalizada para la discoteca TC CLUB.
Version: 1.1
*/

/* RESET SENCILLO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505; /* fondo principal oscuro */
  color: #f5f5f5;
  line-height: 1.6;
}

/* UTILIDADES */
.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

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

.subtitulo {
  margin-top: 0.5rem;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.seccion {
  padding: 4rem 0;
}

.bg-dark {
  background: #120707; /* oscuro con tono vino */
}

/* BOTONES */
.btn-primario {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #F9B233, #CE1815); /* paleta */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primario:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(206, 24, 21, 0.5);
  opacity: 0.95;
}

.btn-full {
  width: 100%;
}

/* GRID */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(5,5,5,0.95), rgba(98,5,5,0.95)); /* negro → vino */
  backdrop-filter: blur(6px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Tamaño base del logo */
.logo img,
.logo-img {
  height: 80px;  /* tamaño en desktop */
  width: auto;
  display: block;
}

/* Tablets (hasta 992px) */
@media (max-width: 992px) {
  .logo img,
  .logo-img {
    height: 65px;  /* un poco más pequeño */
  }
}

/* Celulares (hasta 576px) */
@media (max-width: 576px) {
  .logo img,
  .logo-img {
    height: 50px;  /* tamaño ideal para móviles */
  }
}



.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: #F9B233;
  transform: translateY(-1px);
}

.btn-nav {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #CE1815;
}

/* BOTÓN MENÚ MÓVIL */
.btn-menu {
  display: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid #444;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 70px); /* ocupa casi toda la pantalla restando el header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-top: 70px; /* para que no lo tape el header fijo */

  /* Imagen de fondo del hero */
  background-image: url("img/hero.jpg");
  background-size: cover;      /* se adapta al tamaño de la pantalla */
  background-position: center; /* centrada por defecto */
  background-repeat: no-repeat;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.3), rgba(5,5,5,0.95)),
    linear-gradient(to right, rgba(98,5,5,0.3), rgba(5,5,5,0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

/* Ajustes para tablets y móviles */
@media (max-width: 992px) {
  .hero {
    min-height: 80vh;
    background-position: center top; /* muestra más la parte superior */
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 70vh;
    padding-top: 80px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}

/* SECCIONES GENERALES */
.seccion h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #F9B233;
}

.seccion p {
  color: #d0d0d0;
}

/* BOX DESTACADO */
.box-highlight {
  background: linear-gradient(135deg, #620505, #050505); /* vino → negro */
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(206,24,21,0.45);
}

.box-highlight h3 {
  margin-bottom: 0.7rem;
  color: #F9B233;
}

.box-highlight ul {
  list-style: none;
  margin-bottom: 1rem;
}

.box-highlight li {
  margin-bottom: 0.3rem;
}

/* EVENTOS / TARJETAS */
.card-evento {
  background: #120707;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #2b0909;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-evento:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.7);
  border-color: #CE1815;
}

.card-evento h3 {
  margin-bottom: 0.5rem;
  color: #F9B233;
}

.card-evento p {
  font-size: 0.95rem;
}

.card-evento .info-evento {
  margin-top: 0.8rem;
  color: #F9B233;
  font-weight: 500;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #F9B233, #CE1815);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #050505;
}

/* GALERÍA */
.galeria {
  margin-top: 2rem;
}

.foto {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  height: 220px;
  border: 1px solid #2b0909;
}

/* LISTA SIMPLE */
.lista-simple {
  list-style: none;
  margin-top: 1rem;
}

.lista-simple li {
  margin-bottom: 0.4rem;
}

.lista-simple li::before {
  content: "• ";
  color: #F9B233;
}

/* FORMULARIO */
.formulario {
  background: #120707;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #2b0909;
}

.campo {
  margin-bottom: 1rem;
}

.campo label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  background: #050505;
  color: #f5f5f5;
  outline: none;
  font: inherit;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #CE1815;
}

/* MAPA */
.mapa {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #2b0909;
}

.mapa iframe {
  width: 100%;
  height: 320px;
}

/* FOOTER */
.footer {
  padding: 1.5rem 0;
  background: #050505;
  border-top: 1px solid #620505;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: #ccc;
}

.footer a {
  color: #F9B233;
  text-decoration: none;
}

/* AJUSTES EXTRA PARA INFO RÁPIDA / ZONAS */
.info-rapida h3 {
  margin-bottom: 0.4rem;
  color: #F9B233;
}

.info-rapida p {
  font-size: 0.9rem;
}

.zonas-club .card-evento {
  min-height: 180px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 5%;
    flex-direction: column;
    background: #050505;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #2b0909;
    display: none;
  }

  .nav-activo {
    display: flex;
  }

  .btn-menu {
    display: block;
  }
}


.btn-secundario {
  background: transparent;
  border: 1px solid #F9B233;
  color: #F9B233;
  margin-top: 0.5rem;
}

.btn-secundario:hover {
  background: #F9B233;
  color: #050505;
}

.event-card .evento-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #2b0909;
  display: block;
}

.event-card .evento-thumb {
  height: 260px;
}

