/* ============================
	BASE STYLESHEET
	THE HOLIDAY HOME - GOING FORWARD 2025 AND BEYOND ©
============================ */



/* ============================
	ROOT VARIABLES
============================ */
:root {
	--border-radius: 1rem;
	--margin-element: 1rem;
	--padding-element: 1rem;

	--font-family-heading: 'FinalSix', Arial, sans-serif;
	--font-family-text: 'Eina 01', Arial, sans-serif;

	--color-white: #FFFFFF;
	--transition-default: all 0.3s ease;
}


/* ============================
	BODY
============================ */
body {
	background-color: var(--color-white);
	font-family: var(--font-family-text);
	line-height: 1.6;
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}

/* ============================
	HEADINGS
============================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 var(--margin-element);
}

h1 {
	font-weight: 900;
}


/* ============================
	PARAGRAPHS & TEXT
============================ */
p {
	font-family: var(--font-family-text);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-default);
}

a:hover {
	text-decoration: underline;
}

p a {
	color: #00C3FF;
	text-decoration: underline;
	transition: var(--transition-default);
}

p a:hover {
	color: #000;
	text-decoration: underline;
}


/* ============================
	BUTTONS
============================ */
button {
	background: none;
	border: none;
	border-radius: var(--border-radius);
	color: inherit;
	cursor: pointer;
	font-family: var(--font-family-text);
	font-weight: 600;
	padding: var(--padding-element);
	transition: var(--transition-default);
}


/* ============================
	LISTS
============================ */
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}


/* ============================
	TABLES
============================ */
table {
	border-collapse: collapse;
	width: 100%;
}

th,
td {
	padding: var(--padding-element);
	text-align: left;
	vertical-align: top;
}


/* ============================
	FORM ELEMENTS
============================ */
input,
textarea,
select {
	border-radius: var(--border-radius);
	font-family: var(--font-family-text);
	font-size: 1rem;
	padding: var(--padding-element);
	width: 100%;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
}



/* ============================
	UNIVERSAL BUTTON
============================ */

.button {
	background-color: #FFFFFF;
	border: 1.5px solid #EEEEEE;
	border-radius: 2rem;
	color: #000000;
	cursor: pointer;
	display: inline-block;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.button span {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 0.125rem;
}

.button:hover {
	background-color: #000000;
	border-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
}



/* ============================
	IMAGES & MEDIA
============================ */
img {
	display: block;
	height: auto;
	max-width: 100%;
}



/* ============================
	SVG
============================ */
svg {
	display: inline-block;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	will-change: transform, opacity;
}

/* ============================
	UTILITY CLASSES
============================ */
.heading--size {
	font-size: 1rem;
	font-family: var(--font-family-heading);
}

.text--size {
	font-size: 1rem;
	font-family: var(--font-family-text);
}

.padding--element {
	padding: var(--padding-element);
}

.margin--element {
	margin: var(--margin-element);
}

.radius--default {
	border-radius: var(--border-radius);
}






/* ============================
	END BASE CSS
============================ */