/*
Theme Name: eRoizen Theme
Theme URI: https://eroizen.com/
Author: Seu Nome ou Empresa
Author URI: https://seusite.com/
Description: Tema personalizado para Eroizen.com com Tailwind CSS e listagem de landing pages.
Version: 1.0.2
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eroizen-theme
Tags: custom-logo, custom-menu, featured-images, one-column, blog, landing-page

*/

/* Define Inter como a fonte padrão */
body {
    font-family: 'Inter', sans-serif;
}

/* Estilo adicional para a lista de landing pages */
.landing-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Colunas com mínimo de 300px */
    gap: 1.5rem; /* Espaçamento entre os cards */
}

.landing-page-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Ajuste opcional para o tamanho do logo (pode ser controlado pelo Customizer também) */
.custom-logo {
    max-height: 40px; /* Defina a altura máxima desejada */
    width: auto; /* Mantém a proporção */
}

/* Estilo para a imagem de fundo do Hero */
.hero-section {
    /* Imagem neutra sugerindo bem-estar/estilo de vida */
    background-image: url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1674&q=80'); /* Substitua pela URL da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Estilos básicos para acessibilidade */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* --- Adicione aqui quaisquer outros estilos personalizados --- */


/* Estilos para o Blog */
.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f7fafc;
    border-radius: 0.25rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination li a:hover {
    background-color: #e2e8f0;
}

.pagination li span.current {
    background-color: #3182ce;
    color: white;
}

/* Estilo para comentários */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment .children {
    margin-left: 2rem;
    margin-top: 1.5rem;
    list-style: none;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 0.5rem;
}

.comment-metadata {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

/* Formulário de comentários responsivo */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.comment-form input[type="submit"] {
    background-color: #3182ce;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #2c5282;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comment .children {
        margin-left: 1rem;
    }
}


/* Estilos para conteúdo de posts */
.post-content,
.entry-content {
    /* Básico */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Espaçamento de parágrafos */
.post-content p,
.entry-content p {
    margin-bottom: 1.5rem;
}

/* Títulos */
.post-content h1,
.entry-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-content h2,
.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-content h3,
.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content h4,
.entry-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Listas */
.post-content ul,
.entry-content ul,
.post-content ol,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content ul li,
.entry-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.post-content ol li,
.entry-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
}

/* Estilização dos links nos posts do blog */
.entry-content a,
.post-content a,
.wp-block-post-content a {
    color: #3182ce !important; /* Azul - use o tom que preferir */
    text-decoration: underline !important;
    font-weight: normal !important; /* Remove o negrito */
}

.entry-content a:hover,
.post-content a:hover,
.wp-block-post-content a:hover {
    color: #2c5282 !important; /* Azul escuro para hover */
    text-decoration: underline !important;
}

/* Estilização mais abrangente para links em posts */
.single-post article a,
.blog article a,
article .entry-content a,
.post a,
.wp-block-post a,
.type-post a {
    color: #3182ce !important;
    text-decoration: underline !important;
    font-weight: normal !important;
}

.single-post article a:hover,
.blog article a:hover,
article .entry-content a:hover,
.post a:hover,
.wp-block-post a:hover,
.type-post a:hover {
    color: #2c5282 !important;
}

