/*
Theme Name: AVB
Theme URI: https://avb.avoco.dev
Author: Avoco d.o.o.
Author URI: https://avoco.hr
Description: Custom WordPress theme for AVB, developed by Avoco d.o.o.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: avb
Tags: custom-background, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   Base
   ========================================================================== */

:root {
	--avb-content-width: 1200px;
	--avb-color-text: #1a1a1a;
	--avb-color-bg: #ffffff;

	/* Brand palette — derived from primary #008ed6 (Bootstrap tint/shade scale). */
	--avb-primary-100: #cce8f7;
	--avb-primary-200: #99d2ef;
	--avb-primary-300: #66bbe6;
	--avb-primary-400: #33a5de;
	--avb-primary-500: #008ed6; /* base */
	--avb-primary-600: #0072ab; /* hover */
	--avb-primary-700: #005580; /* active / emphasis */
	--avb-primary-800: #003956;
	--avb-primary-900: #001c2b;

	--avb-primary: var(--avb-primary-500);
	--avb-color-accent: var(--avb-primary-500);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: var(--avb-color-text);
	background: var(--avb-color-bg);
}

a {
	color: var(--avb-color-accent);
}

img {
	max-width: 100%;
	height: auto;
}

.avb-container {
	width: 100%;
	max-width: var(--avb-content-width);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

/* ==========================================================================
   Header / Footer
   ========================================================================== */

.site-header {
	padding-block: 1.25rem;
	border-bottom: 1px solid #e5e5e5;
}

.site-header .avb-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-branding .site-title {
	margin: 0;
	font-size: 1.5rem;
}

.site-branding .site-title a {
	color: inherit;
	text-decoration: none;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	text-decoration: none;
	color: var(--avb-color-text);
}

.site-main {
	padding-block: 2.5rem;
}

.site-footer {
	padding-block: 2rem;
	border-top: 1px solid #e5e5e5;
	color: #555;
	font-size: 0.9rem;
}

/* ==========================================================================
   Content
   ========================================================================== */

.entry-title {
	margin-top: 0;
}

article {
	margin-bottom: 2.5rem;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
