/*
Theme Name:   Digital Space Child
Theme URI:    https://digitalspace.pe/
Description:  Tema hijo de Astra para Digital Space. Aquí van las personalizaciones, secciones a medida y animaciones 3D (Three.js + GSAP) sin tocar el tema padre.
Author:       Digital Space
Author URI:   https://digitalspace.pe/
Template:     astra
Version:      1.0.0
Text Domain:  digital-space-child
*/

/* ==========================================================================
   Los estilos globales del sitio siguen viniendo de Astra.
   Aquí solo agregamos overrides y utilidades propias de la marca.
   Las animaciones/estilos de cada sección viven en /assets/css/*.css
   y se cargan solo cuando esa sección está presente.
   ========================================================================== */

:root,
:root[data-theme="dark"] {
  /* Paleta de marca Digital Space — TEMA OSCURO (por defecto) */
  --ds-bg:        #0a0510;
  --ds-bg-2:      #14091f;
  --ds-purple:    #a020f0;
  --ds-magenta:   #d400ff;
  --ds-violet:    #7b2ff7;
  --ds-text:      #f3eefb;
  --ds-text-dim:  #b6a9c9;
  --ds-line:      rgba(255, 255, 255, 0.08);
  --ds-card:      rgba(255, 255, 255, 0.04);
  --ds-glass:     rgba(18, 11, 28, 0.82);
}

/* TEMA CLARO */
:root[data-theme="light"] {
  --ds-bg:        #f5f2fc;
  --ds-bg-2:      #ece5fa;
  --ds-purple:    #8a16d6;
  --ds-magenta:   #c200e6;
  --ds-violet:    #6a23d6;
  --ds-text:      #1a0b26;
  --ds-text-dim:  #5d4d70;
  --ds-line:      rgba(26, 11, 38, 0.12);
  --ds-card:      rgba(26, 11, 38, 0.04);
  --ds-glass:     rgba(255, 255, 255, 0.85);
}

/* Transición suave al cambiar de tema */
html { transition: background-color 0.4s ease; }
body { background-color: var(--ds-bg); transition: background-color 0.4s ease, color 0.4s ease; }
