/*
Theme Name: Versatours
Theme URI: https://iam.yiannismakrakis.gr
Author: Yiannis Makrakis Digital Services
Author URI: https://iam.yiannismakrakis.gr
Description: Minimal performance-focused theme for the Versatours transfer booking website.
Version: 0.1.30
Requires at least: 6.0
Tested up to: 6.6
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: versatours
*/

:root {
	--vt-color-text: #0d4958;
	--vt-color-muted: #667085;
	--vt-color-accent: #ff700a;
	--vt-color-surface: #ffffff;
	--vt-color-soft: #f4f5f6;
	--vt-width-content: 1180px;
	--vt-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--vt-color-surface);
	color: var(--vt-color-text);
	font-family: var(--vt-font-sans);
	font-size: 16px;
	line-height: 1.5;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

button,
input,
select,
textarea {
	font: inherit;
}

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

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1 0 auto;
}

.site-shell {
	width: min(100% - 32px, var(--vt-width-content));
	margin-inline: auto;
}

.site-header {
	border-bottom: 1px solid rgba(13, 73, 88, .1);
	background: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: .01em;
	text-decoration: none;
}

.site-branding img {
	width: auto;
	max-height: 52px;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer {
	padding: 32px 0;
	border-top: 1px solid rgba(13, 73, 88, .1);
	color: var(--vt-color-muted);
	font-size: 14px;
}

.entry-content:not(.entry-content--full) > * {
	max-width: var(--vt-width-content);
	margin-left: auto;
	margin-right: auto;
}

.entry-content:not(.entry-content--full) > .alignwide {
	max-width: min(100% - 32px, 1360px);
}

.entry-content:not(.entry-content--full) > .alignfull {
	max-width: none;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 782px) {
	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px 0;
	}

	.site-nav ul {
		flex-wrap: wrap;
		gap: 12px 18px;
	}
}

