/*
Theme Name: Piauizim
Theme URI: https://piauizim.com.br
Author: Assistente de Inteligência Artificial
Author URI: https://wa.me/
Description: Tema focado em arte, decoração e cultura nordestina. Construído com estética rústica (Woodcut), Tailwind CSS e tipografias de cordel.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: piauizim
*/

/* O CSS principal está sendo gerenciado via Tailwind CDN no <head> neste MVP para facilidade de instalação do cliente, mas estilos base residem aqui para customizadores WP */

/* Base styles */
body {
    background-color: #f4f2e6;
    background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
    color: #1c1a0d;
}

/* Woodcut Shadow Effect */
.woodcut-shadow {
    box-shadow: 4px 4px 0px 0px #1c1a0d;
    border: 2px solid #1c1a0d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woodcut-shadow:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px 0px #1c1a0d;
}

/* Components encapsulating Tailwind utilities */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    background-color: #f9d006;
    color: #1c1a0d;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: #dcb704;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    background-color: #1c1a0d;
    color: #fcfbf8;
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    background-color: #231f0f;
    color: #f9d006;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    background-color: #f4f2e6;
    color: #1c1a0d;
    transition: all 0.2s ease;
}
.btn-outline:hover {
    background-color: #fcfbf8;
}
