/* Fondo general */
body {
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Logo */
.logo-container {
  padding: 2rem 0 1rem;
  background-color: #000;
  text-align: center;
}

.logo-img {
  width: 300px;

  object-fit: contain;
}

.custom-nav {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
  font-size: 0.85rem;

  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid red;
  border-radius: 50px;
  backdrop-filter: blur(6px);

  --bs-nav-link-color: white;
  --bs-nav-pills-link-active-color: black;
  --bs-nav-pills-link-active-bg: red;
}

.custom-nav .nav-item {
  flex: 1; /* cada botón ocupa el mismo espacio */
  text-align: center;
}

.custom-nav .nav-link {
  width: 100%;              /* ocupa todo el ancho disponible */
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  white-space: nowrap;      /* evita saltos de línea */
  text-align: center;
}

.custom-nav .nav-link:hover {
  background-color: rgba(255, 0, 0, 0.7);
  color: black;
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}

/* Estilo base para secciones */
.section {
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Calendario */

.titulo-calendario {
  color: red;
  text-align: center;
  margin: 2rem 0 1rem;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 2rem;
}

.calendario {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.dia {
  background-color: #111;
  border: 1px solid #333;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  border-radius: 5px;
}

.dia span.num {
  position: absolute;
  top: 5px;
  left: 5px;
  font-weight: bold;
  font-size: 0.8rem;
}

.dia.evento {
  background-color: rgba(255, 0, 0, 0.2);
  border-color: red;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dia.evento:hover {
  background-color: rgba(255, 0, 0, 0.4);
}

.evento-label {
  margin-top: auto;
  font-size: 0.75rem;
  background: red;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  color: black;
  text-align: center;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .calendario {
    overflow-x: auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(80px, 1fr));
  }

  .calendario .dia {
    height: 60px;
    font-size: 0.75rem;
    padding: 0.25rem;
  }

  .calendario .dia.evento .evento-label {
    font-size: 0.65rem;
    padding: 0.1rem 0.3rem;
  }

  .titulo-calendario {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .calendario {
    overflow-x: auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(80px, 1fr));
  }

  .calendario .dia {
    height: 70px;
  }

  .titulo-calendario {
    font-size: 1.3rem;
  }
}
/* Responsive para móviles y que se vean los 7 dias */

/* ====== SECCIÓN DE REDES SOCIALES ====== */
.social-section {
  margin-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
}

.social-title {
  color: red;
  font-size: 1.8rem;
  font-family: 'Arial Black', Arial, sans-serif;
  margin-bottom: 1.5rem;
}

/* FILA FLEXIBLE (usa Bootstrap row + col) */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1rem;
}

/* CONTENEDOR INDIVIDUAL DE CADA RED */
.social-box {
  background-color: #111;
  border: 2px solid red;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* HOVER: resaltado */
.social-box:hover {
  background-color: red;
  transform: translateY(-5px);
}

/* ÍCONO DE RED SOCIAL */
.social-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* TEXTO @USUARIO */
.social-box a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.social-box a:hover {
  text-decoration: underline;
  color: #fff;
}


