/*
Theme Name: Affizo
Description: The main site theme for affizo.online — coral color theme, built to work with the Affizo ToolKit plugin.
Version: 1.0.1
Author: Affizo
*/

:root {
	--affizo-brand: #E9483F;
	--affizo-brand-dark: #B32B1F;
	--affizo-brand-light: #FBDAD5;
	--affizo-bg-tint: #FDEEEB;
	--affizo-text: #1A1210;
	--affizo-text-muted: #7A6E6B;
	--affizo-border: #EFE3E1;
	--affizo-footer-bg: #1A1210;
	--affizo-footer-text: #D8C9C6;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--affizo-text);
	background: #fff;
	line-height: 1.5;
}

a { color: inherit; }

.affizo-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.affizo-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 1px solid var(--affizo-border);
}

.affizo-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 19px;
	text-decoration: none;
	color: var(--affizo-text);
}

.affizo-logo-mark {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--affizo-brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.affizo-logo span { color: var(--affizo-brand); }

.affizo-nav-menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.affizo-nav-menu a {
	text-decoration: none;
	font-size: 14px;
	color: var(--affizo-text);
}

.affizo-btn {
	display: inline-block;
	background: var(--affizo-brand);
	color: #fff !important;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(233, 72, 63, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.affizo-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(233, 72, 63, 0.34);
}

.affizo-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(233, 72, 63, 0.28);
}

.affizo-btn-outline {
	background: #fff;
	color: var(--affizo-text) !important;
	border: 1px solid var(--affizo-border);
	box-shadow: 0 1px 2px rgba(26, 18, 16, 0.04);
}

.affizo-btn-outline:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(26, 18, 16, 0.08);
	border-color: var(--affizo-brand);
}

/* Hero */
.affizo-hero {
	background: linear-gradient(180deg, var(--affizo-bg-tint), #ffffff);
	padding: 56px 24px;
	text-align: center;
}

.affizo-hero-badge {
	display: inline-block;
	background: var(--affizo-brand-light);
	color: var(--affizo-brand-dark);
	font-size: 12.5px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.affizo-hero h1 {
	font-size: 36px;
	max-width: 640px;
	margin: 0 auto 14px;
	line-height: 1.2;
}

.affizo-hero h1 span { color: var(--affizo-brand); }

.affizo-hero p {
	color: var(--affizo-text-muted);
	max-width: 480px;
	margin: 0 auto 24px;
	font-size: 15px;
}

.affizo-search-form {
	max-width: 460px;
	margin: 0 auto 22px;
	position: relative;
}

.affizo-search-form input[type="search"] {
	width: 100%;
	padding: 12px 16px 12px 40px;
	border-radius: 999px;
	border: 1px solid var(--affizo-border);
	font-size: 14px;
}

.affizo-hero-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 22px;
}

.affizo-hero-stats {
	display: flex;
	gap: 22px;
	justify-content: center;
	font-size: 12.5px;
	color: var(--affizo-text-muted);
}

/* Homepage sections */
.affizo-section {
	padding: 36px 24px;
}

.affizo-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.affizo-section-head h2 { margin: 0; font-size: 21px; }

.affizo-section-head a {
	color: var(--affizo-brand);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}

/* Footer */
.affizo-footer {
	background: var(--affizo-footer-bg);
	color: var(--affizo-footer-text);
	padding: 40px 24px 20px;
}

.affizo-footer-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
}

.affizo-footer-col h4 {
	color: #fff;
	font-size: 13px;
	margin: 0 0 10px;
}

.affizo-footer-col p, .affizo-footer-col a {
	font-size: 12.5px;
	color: var(--affizo-footer-text);
	text-decoration: none;
	display: block;
	margin-bottom: 6px;
}

.affizo-footer-bottom {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #33251f;
	font-size: 11.5px;
	color: #8C7D7A;
}

/* Generic content pages (blog, about, etc.) */
.affizo-page-content {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 24px;
}

.affizo-page-content img { max-width: 100%; height: auto; border-radius: 8px; }

@media (max-width: 640px) {
	.affizo-nav-menu { display: none; }
	.affizo-hero h1 { font-size: 27px; }
}
