/*
Theme Name: Travel Theme
Theme URI: https://traveleaseholidays.example
Author: Travel Ease Holidays
Description: A luxury travel agency WordPress theme with coming soon, packages, and full site templates.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travel-theme
*/

/* Fonts: enqueued in functions.php (Google Fonts) */

:root {
	--primary: #0a0e1a;
	--gold: #c9a84c;
	--white: #ffffff;
	--glass: rgba(255, 255, 255, 0.08);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--primary);
	background: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", Georgia, serif;
}

a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}

a:hover {
	opacity: 0.9;
}

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

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