/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Tema hijo personalizado para JimxBCN
Author: Jaime
Author URI: https://jimxbcn.com/
Template: astra
Version: 1.0
*/
/*
Theme Name: Astra Gaming Child
Template: astra
Author: Tu Nombre
Version: 1.0
Description: Child theme con estética gaming (oscuro + neón) para Astra.
*/

/* Variables de color y fuente */
:root {
  --pri: #00e5ff;
  --sec: #9b5cff;
  --acc: #ff3b7f;
  --bg-dark: #0a0b0f;
  --text-light: #e6eaf2;
  --font-display: "Oxanium", "Orbitron", sans-serif;
}

/* Título del sitio */
.site-title {
  color: var(--pri);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px 0;
  text-shadow: 0 0 8px var(--pri), 0 0 16px var(--pri);
  animation: siteTitlePulse 2.5s infinite alternate;
}

@keyframes siteTitlePulse {
  from {
    text-shadow: 0 0 8px var(--pri), 0 0 16px var(--pri);
  }
  to {
    text-shadow: 0 0 16px var(--pri), 0 0 32px var(--pri);
  }
}


/* Fondo general */
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Inter", system-ui, sans-serif;
}

/* Navbar */
.main-header-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid color-mix(in oklab, var(--pri) 15%, transparent);
  backdrop-filter: blur(6px);
}

.main-header-menu a {
  color: var(--text-light);
  text-transform: uppercase;
  font-family: var(--font-display);
}
.main-header-menu a:hover {
  color: var(--acc);
  text-shadow: 0 0 6px var(--acc);
}

/* Botones Astra */
.ast-button,
button,
input[type="submit"] {
  background: linear-gradient(180deg, var(--pri), var(--sec));
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 6px var(--pri);
  transition: all 0.2s ease-in-out;
}
.ast-button:hover,
button:hover,
input[type="submit"]:hover {
  box-shadow: 0 0 12px var(--pri), 0 0 24px var(--pri);
  transform: translateY(-1px);
}

/* Títulos */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  text-shadow: 0 0 8px var(--pri);
}

/* Bloques Gutenberg */
.wp-block-button__link {
  background: linear-gradient(180deg, var(--sec), var(--pri));
  border-radius: 12px;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 8px var(--sec);
}

/* === Estructura base Astra === */
html, body {
    height: 100%;
    margin: 0;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* === Footer Astra === */
.site-footer {
    background-color: #121212;
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    border-top: 2px solid var(--pri);
    margin-top: auto;
}

.site-footer .ast-container {
    max-width: none !important;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.footer-content {
    text-align: center;
    width: 100%;
}

.footer-content_old p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.9rem;
}
.footer-content p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--pri);
  text-shadow: 0 0 6px var(--pri), 0 0 12px var(--pri);
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 6px var(--pri), 0 0 12px var(--pri);
  }
  to {
    text-shadow: 0 0 12px var(--pri), 0 0 24px var(--pri);
  }
}

/* Color de texto general para entradas */
.entry-content {
  color: #222; /* Gris oscuro casi negro */
  font-size: 18px;
  line-height: 1.6;
}

/* Títulos dentro del contenido */
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: #111;
}

/* Párrafos */
.entry-content p {
  margin-bottom: 1em;
}

/* CSS para los iconos sociales*/

.social-links {
  text-align: center;
  margin: 20px 0;
}

.social-links a {
  margin: 0 12px;
  font-size: 28px; /* Tamaño más grande */
  color: #222; /* Color más oscuro para contraste */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2); /* Efecto de zoom */
}

/* Colores personalizados por red social */
.social-links a[aria-label="Twitter"]:hover {
  color: #1da1f2;
}

.social-links a[aria-label="Instagram"]:hover {
  color: #e1306c;
}

.social-links a[aria-label="GitHub"]:hover {
  color: #333;
}

.social-links a[aria-label="Discord"]:hover {
  color: #5865F2;
}

.social-links a[aria-label="YouTube"]:hover {
  color: #FF0000;
}







