

/* roboto-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v49-latin-regular.woff2') format('woff2'); 
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-v49-latin-700.woff2') format('woff2'); 
}
/* roboto-700italic - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/roboto-v49-latin-700italic.woff2') format('woff2'); 
}
/* roboto-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/roboto-v49-latin-900.woff2') format('woff2'); 
}

:root {
	--main-color:  #586062;
	--brown: #cf2108;
	--grey: #FaFAFA;
	--lgrey: #F6F6F6;
  	--cream: #F8F7F2;
  	--white: #ffffff;
  	--gradient: linear-gradient(to bottom, var(--main-color), var(--main-color));
  	--footergradient: linear-gradient(to bottom, var(--main-color), var(--main-color));
	--black: rgba(0, 0, 0, 0.1);
	--lightshadow: rgba(180, 180, 180, 0.1);
	--bold: 900;
	--light: 300;
	--boxshadow: 0 5px 24px;
	--super-glow: 0 5px 54px;
	--border: 10px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size:14px;
    font-family: 'Roboto', sans-serif;
	margin:0;
	padding:0;
  	color: var(--main-color);
	opacity: 0;
	animation: fade-in 0.3s forwards 0.3s linear;
}
p::selection, h1::selection, h2::selection, h3::selection { background-color: #320101; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #320101; color: #fff; }

/* -------------------- Animation -------------------- */

section {
	opacity: 0;
}
.inverse, .show-menu {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* -------------------- General Styles -------------------- */

.container, .wrapper {
	width: min(90%, 1600px);
	margin-inline: auto;
}
.easy-reading {
	width: min(90%, 600px);
	margin-inline: auto;
}
.max-width {
	max-width: 80ch;
	margin-inline: auto;
}
a {
  text-decoration: none;
}
.contact-details a {
	border-bottom: solid thin var(--main-color);
}
.contact-details a {
	color: var(--main-color);
	border-bottom: solid thin var(--main-color);
}
p {
	line-height:1.6;
}
img {
	border-style: none;
}
.center, .has-text-align-center {
	text-align:center;
}
.absol {
	position:relative;
}
hr {
	margin: 3em auto;
	width: 200px;
	border: none;
	text-align: center;
}
.bullets h2 {
	font-weight: var(--light);
	text-transform: uppercase;
}
.align {
	align-items: center;
}
/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.drop {
	margin-top: 3em;
}
.drop .btn {
	margin-bottom: 1em;
}
.mini {
	margin-bottom: 0.5em;
}
.bring-up {
	margin-top: -100px;
	z-index: 5;
}
.ptb {
	padding: 5em 0;
}
.push-down {
	padding-top: 5em;
	padding-bottom: 10em;
}
.align-items {
	align-items: center;
}
/* -------------------- Images -------------------- */
.main-background img, .page-selection__image img, .about-image img, .split-image img, .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 300ms;
}


/* -------------------- Splash -------------------- */
.splash-page_grid {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "logo logo" "colone colone";
}
.splash-page_main {
	grid-area: logo;
	background-color: var(--white);
	display: flex;
	justify-content: center;
}
.splash-page_content {
	align-self: center;
	width: 90%;
	text-align: center;
}
.splash-page_colone {
	grid-area: colone;
}
.splash-page_coltwo {
	grid-area: coltwo;
}
.social-icons ul {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 1em;
	margin: 1em 0;
	padding: 0;
}
.modal-window {
	background-color: var(--white);
	padding: 2em;
}
/* -------------------- Colours -------------------- */
.topbar {
	color: var(--white);
}
.topbar .wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1em;
	align-items: center;
}
.topcontact a, .topbar a {
	color: currentColor;
}
.topcontact a:hover, .topbar a:hover {
	color: var(--main-color);
}
.topcontact img {
	width: 100%;
	height: auto;
	max-width: 200px;
}
.telephone {
	text-align: right;
}
.telephone, .email {
	display: none;
}
.topcontact p {
	margin: 0;
}

.logo {
	text-align: center;
}
.logo a {
	display: flex;
	justify-content: center;
}
.logo img, .logo svg {
	width: 100%;
	height: auto;
	max-width: 100px;
}

/* -------------------- Page Title / CTA -------------------- */
h1, h2, h3 {
    font-weight: normal;
}
.page-title :is(h1, h2) {
	font-weight: var(--bold);
	line-height: 1;
	text-transform: uppercase;
}
.nomargin :is(p, h1) {
	margin: 0;
}
.page-title :is(h1) {
	font-size: clamp(1rem,10vw,2rem);
}
.page-title :is(h2) {
	font-size: clamp(1rem,10vw,3rem);
	margin: 0;
}
.small-text {
	font-weight: var(--bold);
}


/* -------------------- Button -------------------- */
button {
	background: transparent;
	border: transparent;
	font-size: 16px;
}
.btn a {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	padding: 10px;
	border-radius: 3em;
	transition: box-shadow 300ms;
}
.btn-outline-light a {
	color: var(--main-color);
	border: solid 2px var(--main-color);
	background: linear-gradient(to right, transparent 50%, var(--main-color) 50%);
	background-size: 200% 100%;
	background-position: left bottom;
	outline: solid thin var(--main-color);
	transition: background-position 300ms;
}
.btn-outline a, .book-button a {
	color: var(--white);
	border: solid 2px var(--main-color);
	background: linear-gradient(to right, var(--main-color) 50%, var(--brown) 50%);
	background-size: 200% 100%;
	background-position: left bottom;
	outline: solid thin var(--main-color);
	transition: background-position 300ms;
}
.btn a:hover {
	color: var(--white);
	outline-offset: 0;
	background-position: right bottom;
}
.book-button a {
	text-align: center;
	display: block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
}
.book-button {
	width: 100%;
	align-self: end;
	padding: 0 0.3em;
	box-sizing: border-box;
}
.bullets ul {
	margin: 0;
	padding: 1em;
	list-style: none;
	line-height: 1.6;
	border-radius: var(--border);
	border: solid thin var(--black);
}
.bullets li:nth-child(2n) {
  background-color: var(--grey);
}
.bullets li {
  padding: 1em;
}

/* -------------------- Enquiry Form -------------------- */
.enquiry-form__input textarea {
    font-family: 'Roboto', sans-serif;
	font-size: 0.833em;
}
.enquiry-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	margin-top: 15em;
	margin-bottom: 5em;
	box-shadow: 0 0.7em 1em var(--lightshadow);
	padding: 10px;
}
.contact-page .enquiry-form-grid {
	margin-top: 5em;
}
.enquiry-form__details form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.enquiry-logo {
	text-align: center;
}
.enquiry-logo img, .enquiry-logo svg {
	width: 200px;
}
.enquiry-form__input:nth-child(2),
.enquiry-form__input:nth-child(7) {
	width: 100%;
}
.enquiry-form__title {
	margin-bottom: 4em;
}
.enquiry-form__input textarea,
.enquiry-form__input input,
.enquiry-form__input select {
	width: 100%;
}
.enquiry-form__input {
	width: 100%;
	margin-bottom: 1em;
}
.move-right {
	align-self: center;
	text-align: left;
}
.enquiry-form__input textarea, .enquiry-form__input input, .enquiry-form__input select {
	width: 100%;
	border: solid thin var(--main-color);
	padding: 10px;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.enquiry-form__input textarea {
	height: 50px;
}
.enquiry-form__input textarea:focus {
	height: 100px;
	background-color: var(--lgrey);
	border: solid thin var(--main-color);
	color: var(--main-color);
	box-shadow: 0 .5em 1em var(--black);
}

input[type=text]:focus,
input[type=email]:focus {
	background-color: var(--lgrey);
	border: solid thin var(--main-color);
	color: var(--lightmain-color);
	box-shadow: 0 .5em 1em var(--black);
}


label {
	font-weight: var(--bold);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #ffb900;
	border-radius: 10px;
}
.wpcf7-not-valid-tip {
	background-color: main-color;
	padding: 0.5em;
	border-radius: 10px;
	margin-top: 1em;
	color: var(--white)!important;
}
.wpcf7 form.sent .wpcf7-response-output {
	background-color: #38883f;
	border-radius: 10px;
	color: var(--white);
}

/* -------------------- Cookie Notice -------------------- */

.cookie-notice {
    width: min(80%, 470px);
    z-index: 50;
    box-sizing: border-box;
    position: fixed;
    bottom: 5%;
    left: 50%;
    max-width: 500px;
    background: var(--white);
    border: solid thin var(--black);
    box-shadow: var(--box-shadow) var(--black);
    transform: translateX(-50%);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    align-items: center;
    padding: 1em;
    opacity: 0;
    animation: fade-in .3s forwards 2s linear;
}
.cookie-notice p {
    margin: 0;
}
.cookie-notice a {
	color: var(--main-color);
}
.cookie-notice-header {
	font-weight: bold;
}
.cookie-notice button {
	display: inline-block;
	min-width: 150px;
	text-align: center;
	border-radius: 50px;
	padding: 10px;
	outline: solid thin var(--main-color);
	outline-offset: 5px;
	background-color: var(--main-color);
	border: none;
	font-weight: bold;
	color: var(--white);
	cursor: pointer;
}
.cookie-notice button:hover {
	outline: solid thin var(--main-color);
	outline-offset: 5px;
	background-color: var(--main-color);
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices


*/



/* -------------------- 800 -------------------- */

@media all and (min-width: 50em) {

.splash-page_grid {
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "logo colone";
}
.logo img, .logo svg {
	max-width: 300px;
}

.telephone, .email {
	display: block;
}


}


/* -------------------- 1200 -------------------- */

@media all and (min-width: 75em) {
body {
	font-size:16px;
}
.logo img, .logo svg {
	max-width: 300px;
}

.topcontact, .header-grid .btn-book {
	grid-column: 4;
}
.topcontact {
	display: flex;
	justify-content: center;
}
.logo {
	text-align: center;
}
.logo a {
	justify-content: center;
}

.copyright ul {
	display: flex;
	gap: 10px;
	justify-content: center;
}

}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices with bigger screens


*/


@media all and (min-width: 1600px) {


}


