/*
Theme Name: AH Show Blog
Description: Tema filho do Hello Elementor para o blog AH Show
Author: AH Show
Version: 1.0.0
Template: hello-elementor
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ahshow-blog
*/

/* 
=============================================================================
   TEMA FILHO AH SHOW BLOG
=============================================================================

Este é um tema filho baseado no Hello Elementor.
Todas as customizações de design devem ser feitas via Elementor.

Arquivos principais:
- header.php / header.css / header.js - Header customizado
- footer.php / footer.css / footer.js - Footer customizado
- functions.php - Funções essenciais

=============================================================================
*/

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Reset básico apenas se necessário */
* {
    box-sizing: border-box;
}

/* Garantir que imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Classe utilitária para ocultar elementos */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ========================================================================== */

/* Exemplo de customização: ajuste de tipografia global */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* ==========================================================================
   HEADER CUSTOMIZAÇÕES
   ========================================================================== */

.site-header {
    /* Seus estilos de header aqui */
}

/* ==========================================================================
   HOME PAGE CUSTOMIZAÇÕES
   ========================================================================== */

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SINGLE POST CUSTOMIZAÇÕES
   ========================================================================== */

.single-post-header {
    margin-bottom: 2rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================================================
   ARCHIVE/CATEGORY PAGES CUSTOMIZAÇÕES
   ========================================================================== */

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 768px) {
    .home-blog-grid,
    .category-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-content {
        font-size: 1rem;
    }
}

/* ==========================================================================
   ELEMENTOR COMPATIBILITY
   ========================================================================== */

/* Garantir que o Elementor funcione bem com o tema filho */
.elementor-page .site-main {
    width: 100%;
    margin: 0;
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
} 

.elementor-post__title a:hover {
    color: #F205B3 !important;
}

.hfe-breadcrumbs-separator-icon {
    position: absolute;
    top: 32%;
}