/*
Theme Name: Mi Tema Custom
Template: generatepress
Version: 1.0
*/

/* Importar estilos del padre */
@import url('../generatepress/style.css');

/* --- TUS VARIABLES --- */
:root {
    --primary-color: #00cc33; 
    --primary-dark: #009926;
    --primary-bg: #ecfdf5;
    --danger-color: #ef4444;
    --danger-bg: #fef2f2;
    --warning-color: #f59e0b;
    --warning-bg: #fffbeb;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-dark: #111827;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Fira Code', monospace;
    --radius-sm: 6px;
    --radius-md: 12px;
}

/* Sobrescribir colores de GeneratePress */
body {
    font-family: var(--font-main);
    color: var(--text-main);
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

/* Botones del tema */
.button, 
button,
input[type="submit"] {
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
}

.button:hover {
    background-color: var(--primary-dark);
}