/*
Theme Name: Taekwondo Theme
Theme URI: http://example.com/taekwondo-theme
Author: Antigravity
Author URI: http://example.com
Description: Un tema personalizado de WordPress para una escuela de Taekwondo, migrado de una plantilla HTML estática.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taekwondo-theme
*/

/* ==========================================================================
   Estilos Base y Reset
   ========================================================================== */

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

:root {
    --primary: #d4380d;
    --primary-dark: #a8200d;
    --secondary: #1a1a2e;
    --accent: #f5c518;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #121220;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
