/*
Theme Name: Hashtagmix
Theme URI: https://hashtagmix.com
Author: Hashtagmix Team
Description: Tema editorial moderno inspirado no design jornalístico do Gizmodo Brasil 2023. Ultra leve, zero plugins, PHP/JS puro.
Version: 1.1.0
Text Domain: hashtagmix
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
*/

:root {
    /* Colors */
    --color-canvas: #F2F2F2;
    --color-surface: #FFFFFF;
    --color-text-primary: #111111;
    --color-text-body: #292929;
    --color-text-muted: #666666;
    
    /* Category Colors */
    --cat-tecnologia: #0055FF;
    --cat-ciencia: #00A86B;
    --cat-cultura: #8A2BE2;
    --cat-internacional: #E65100;
    --cat-ofertas: #107C41;
    --cat-default: #333333;

    /* Typography */
    --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-reading: 'Lora', 'Merriweather', Georgia, serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-canvas);
    color: var(--color-text-body);
    line-height: 1.6;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
