/*
Theme Name: Realiah Blank
Theme URI: https://realiah.com.br
Author: Espaço Realiah
Author URI: https://realiah.com.br
Description: Tema em branco, minimalista, feito para ser 100% controlado pelo Elementor. Sem estilos, sem templates pré-definidos — apenas o essencial para o WordPress funcionar.
Version: 1.0
Requires at least: 5.5
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: realiah-blank
*/

/* Estrutura mínima do header e footer — sem estilo de marca, apenas layout básico */

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
}

.site-header__menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__menu a {
	text-decoration: none;
}

.site-footer__inner {
	padding: 40px;
}

.site-footer__widgets {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 20px;
}

.site-footer__bottom {
	font-size: 14px;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.site-header__inner {
		flex-direction: column;
		gap: 16px;
	}

	.site-header__menu {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

/* ==========================================================================
   TIPOGRAFIA
   Alegreya = títulos (H1–H6) | Jost = texto corrido, menus, botões
   As cores abaixo são placeholders — troque o valor de cada variável
   quando a paleta de cores do Espaço Realiah for definida.
   ========================================================================== */

:root {
	/* Cores — placeholders, uma variável por elemento, nenhuma repetida */
	--color-h1: #1a1a1a;
	--color-h2: #2a2a2a;
	--color-h3: #3a3a3a;
	--color-h4: #4a4a4a;
	--color-h5: #5a5a5a;
	--color-h6: #6a6a6a;
	--color-body: #333333;
	--color-lead: #444444;
	--color-small: #767676;
	--color-link: #1a1a1a;
	--color-link-hover: #4a4a4a;

	/* Famílias */
	--font-heading: 'Alegreya', Georgia, serif;
	--font-body: 'Jost', -apple-system, sans-serif;
}

body {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	margin: 0 0 0.5em;
	line-height: 1.25;
}

h1 {
	font-size: 52px;
	font-weight: 800;
	font-style: normal;
	color: var(--color-h1);
	letter-spacing: -0.01em;
}

h2 {
	font-size: 40px;
	font-weight: 700;
	font-style: normal;
	color: var(--color-h2);
}

h3 {
	font-size: 30px;
	font-weight: 600;
	font-style: italic;
	color: var(--color-h3);
}

h4 {
	font-size: 24px;
	font-weight: 600;
	font-style: normal;
	color: var(--color-h4);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

h5 {
	font-size: 19px;
	font-weight: 500;
	font-style: italic;
	color: var(--color-h5);
}

h6 {
	font-size: 15px;
	font-weight: 700;
	font-style: normal;
	color: var(--color-h6);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Texto corrido — variações de peso e tamanho dentro do próprio corpo */

p {
	margin: 0 0 1.3em;
	color: var(--color-body);
}

p.lead,
.text-lead {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-lead);
}

small,
.text-small {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-small);
}

strong, b {
	font-weight: 600;
}

a {
	color: var(--color-link);
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-link-hover);
}

/* Menu e botões usam a fonte de corpo, com peso próprio para diferenciar dos parágrafos */

.site-header__menu a {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.site-footer__bottom {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 13px;
	opacity: 0.7;
}
