﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	GREEN:  #2F6632
	DARK GREEN: #1F4321
	RED: #A91E22

	CREAM: #FFFCED
	DARK CREAM: #F2ECD2

	CTA YELLOW: #F6EF64
	ORANGE: #E59424
*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

* {box-sizing: border-box;}

body {
}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1600px;}

.padit {padding: 70px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 250px;}

.logo img {width: 100%; display: block; padding: 10px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 800px;
}

.mobile-only {display: none;}

.cream-body {background-color: #FFFCED;}

.dcream-body {background-color: #F2ECD2;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.green {color: #2F6632;}

.dark-green {color: #1F4321;}

.yellow {color: #F6EF64;}

.orange {color: #E59424;}

.red {color: #A91E22;}

.white{color: #fff;}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Outfit", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Outfit", serif; }

p, li {
	font-family: "Outfit", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 1.5;
}

hr {
	margin: 50px 0;
	border: 1px solid #A91E22;
}

.sm-heading {
	font-family: "PT Serif", serif;
	font-size: 24px;
	font-weight: 700;
}

.heading {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.flavor {
	font-size: 72px;
	font-family: "PT Serif", serif;
	font-weight: 700;
	font-style: italic;
	color: #F2ECD2;
	line-height: 0.7;
	margin-bottom: -15px;
}

/*  BUTTONS  */

.yellow-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 20px 40px;
	background: #F6EF64;
	color: #1F4321;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.yellow-btn span, .red-btn span {
	display: block;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.yellow-btn span i, .red-btn span i {
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.yellow-btn:hover span i {
	color: #2F6632;
	transform: translate(30%, 0);
}

.red-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 20px 40px;
	background: #A91E22;
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.red-btn:hover span i {
	color: #F2ECD2;
	transform: translate(30%, 0);
}

#overlay {
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(12px);
	display: block;
}

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	z-index: 999;
	padding: 30px 5%;
}

.x {
	cursor: pointer;
    position: absolute;
    right:15px;
    top: 20px;
    font-size: 50px;
	font-weight: bold;
	color: white;
}

.popup .flex {
	align-items: center;
	gap: 20px 5%;
	text-align: center;
}

.flex.center {
	justify-content: center;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.header-container {
	position: relative;
}

.top-header {
	background-color: #1F4321;
	padding: 10px 0;
}

.top-header .wid-90.flex {
	justify-content: space-between;
	gap: 40px;
}

.top-header .left.flex {
	justify-content: flex-start;
	gap: 40px;
}

.top-header .flex a {
	color: #fff;
	font-weight: 500;
}

.main-header {
	background: #FFFCED;
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
}

.mobile-logo {
	background-color: #FFFCED;
	display: none;
}

.mobile-logo .logo {
	margin: 0 auto;
}

/*---BODY--------------------------------*/

.hero {
	background-color: #1F4321;
	margin-top: -60px;
	position: relative;
}

.hero .video-container iframe {
	display: block;
	aspect-ratio: 16 / 9;
}

.hero .video-container {
	position: relative;
/*	z-index needs to be less than z-index set on header */
	z-index: 2;
}

.hero .video-container::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	transform: translate(-50%, calc(-50% + 20px));
}

.hero-text .heading {
	font-size: 64px;
	line-height: 0.7;
}

.hero-text .heading .sm-heading {
	font-size: 32px;
	letter-spacing: 3px;
}

.btn-row.flex {
	gap: 20px;
}

.motto {
	background-color: #A91E22;
	padding: 30px 0;
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 0;
	z-index: 3;
}

.motto .sm-heading {
	font-style: italic;
	font-size: 20px;
	letter-spacing: 3px;
}

.hero .mobile-only a {
	margin: 20px 0;
	display: block;
}

.hero .mobile-only .yellow-btn {
	margin: 0 auto;
}

.imgs4.flex {
	width: 100%;
}

.imgs4.flex img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.imgs4.flex div {
	width: 50%;
	aspect-ratio: 4 / 3;
}

.wid-90.search-container {
	background-image: url("../siteart/bg-logo.png");
	background-repeat: no-repeat;
	background-position: 100% 700%;
/*	background-size: 50%;*/
}

.search-inv {
	position: relative;
	margin-top: 30px;
	background-color: #fff;
	border: 6px solid #2F6632;
	border-radius: 30px;
	max-width: 700px;
	box-shadow: 0 7px 20px -5px rgba(0,0,0,0.6);
}

.search-inv .heading {
	background-color: #2F6632;
	padding: 40px 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
}

.search-spacer {
	padding: 100px 0;
}

.brands-container {
	background-color: #2F6632;
	padding: 20px 0;
}

.brand-tile {
	padding: 20px;
	border: 5px solid #1F4321;
	border-radius: 20px;
	box-shadow: 0 0 8px rgba(0,0,0,0.5);
	background-color: #fff;
	width: fit-content;
	max-width: 100%;
}

.brand-tile img {
	display: block;
	width: 100%;
}

.slick-slide {
	padding: 10px 5px;
}

.showrooms.flex {
	gap: 40px;
	justify-content: space-around;
}

.showroom-card {
	background-color: #fff;
	width: 100%;
	max-width: 450px;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}

.showroom-card .card-img img {
	display: block;
	width: 100%;
	aspect-ratio: 6 / 5;
	object-fit: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.showroom-card .card-title.flex {
	padding: 30px;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.card-title.flex {
	color: #2F6632;
}

.showroom-card:hover .card-title.flex {
	color: #1F4321;
}

.card-title.flex .sm-heading {
	font-size: 20px;
}

.card-title.flex span {
	display: block;	
}

.card-title.flex span i {
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.showroom-card:hover span i {
	transform: translate(30%, 0);
}

.all-showrooms.flex {
	margin-top: 50px;
	justify-content: center;
}

.all-showrooms.flex .red-btn {
	font-size: 20px;
	padding: 15px 40px;
	font-weight: 600;
}

.home-about p.body-text {
	margin-bottom: 20px;
}

.home-about.flex {
	gap: 20px 5%;
	align-items: center;
}

.dcream-body .home-about.flex {
	align-items: flex-start;
}

.home-about.flex iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.flex.right {
	justify-content: flex-end;
}

.contact-banner {
	background-color: #2F6632;
	background-image: linear-gradient(rgba(31,67,33,0.80), rgba(31,67,33,0.80)), url("../siteart/field-bg.jpg");
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.contact-banner .flex {
	justify-content: space-between;
	align-items: center;
	gap: 10px 5%;
	flex-wrap: wrap;
}

.contact-banner .sm-heading a {
	color: #fff;
	font-family: "PT Serif", serif;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.contact-banner .sm-heading a:hover {
	color: #F6EF64;
}

.page-heading {
	background-color: #701316;
}

.map-info.flex {
	align-items: center;
}

.map-info .info.flex {
	justify-content: space-around;
	gap: 20px;
	max-width: 800px;
	margin: 30px 0;
}

.info-item.flex {
	width: 100%;
	align-items: center;
	gap: 10px;
}

.info-item.flex .icon {
	font-size: 36px;
	background-color: #F2ECD2;
	padding: 20px;
	color: #E59424;
}

.info-item.flex a {
	color: #000;
}

.mission {
	background-color: #53442A;
	background-image: linear-gradient(rgba(83,68,42,0.80), rgba(83,68,42,0.80)), url("../siteart/glascock.jpg");
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.mission .wid-90 {
	text-align: center;
	max-width: 700px;
	line-height: 2;
}

.mission p.body-text {
	line-height: 2;
}

.partners {
	background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../siteart/handshake.svg");
	background-repeat: no-repeat;
	background-position: 95% 120%;
/*	background-size: 50%;*/
}

.cards.flex {
	justify-content: center; 
	gap: 50px;
	flex-wrap: wrap;
}

.card {
    background-color: #fff;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.28);
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.card:hover {
	box-shadow: 0 4px 16px 1px rgba(0, 0, 0, 0.4);
}

.card .card-img img {
	display: block;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card .card-title {
	padding: 20px 10px;
	text-align: center;
}

.card-title .details {
	color: #666;
	font-size: 13px;
}

.service-department.flex {
	gap: 20px 5%;
	align-items: center;
} 

.flex-1 img {
	width: 100%;
}

.services.flex {
	gap: 0 50px;
}

.services.flex ul {
	list-style: disc;
	line-height: 2;
	list-style-position: inside;
	column-count: 3;
	column-gap: 5%;
}

.rental.flex ul {
	list-style: disc;
	line-height: 2;
	list-style-position: inside;
	column-count: 2;
	column-gap: 5%;
}

.deals.flex {gap: 30px; flex-wrap: wrap;}

.deal {
	width: calc(50% - 30px);
	padding: 25px;
	background-color: #fff;
	border: 1px solid #F2ECD2;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	border: 6px solid #2F6632;
	border-radius: 30px;
	max-width: 900px;
	box-shadow: 0 7px 20px -5px rgba(0,0,0,0.6);
}

.form-box {
	padding: 30px 40px;
	margin: 0 auto;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	border: none;
	color: #2D2D2D;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background: #F2ECD2;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #1F4321;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer h3.sm-heading {
	margin-bottom: 10px;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav ul li a {
	color: #fff;
	line-height: 2;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav ul li a:hover {
	color: #F2ECD2;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	.top-header, .main-header {display: none;}
	.mobile-logo {display: block;}
	
	.map-info .info.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 1100px) {
	
	.popup {width: 90%;}

	.hero-text .heading {font-size: 48px;}
	.hero-text .heading .sm-heading {font-size: 28px;}
	.hero-text p.white.upper {display: none;}
	
	.showrooms.flex {flex-wrap: wrap;}
	
	.home-about.flex, .partners .flex, .service-department.flex {flex-wrap: wrap;}
	.service-department.flex .flex-1:has(p.body-text) {order: 2;}
	.partners .flex p.body-text {padding-bottom: 150px;}
}

@media only screen and (max-width: 850px) {
	
	.popup {width: 95%;}
	
	.x {right:5px;top: 20px;}
	
	.hero-text .heading {font-size: 36px; line-height: 1;}
	.hero-text .heading .sm-heading {font-size: 20px; letter-spacing: 2px;}
	.hero-text .btn-row.flex {display: none;}
	.motto {position: static;}
	.motto .sm-heading {font-size: 16px;}
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.hero .mobile-only {display: block;}
	
	.wid-90.search-container {background-size: contain; background-position: center 120%;}
	.search-spacer {padding: 250px 0;}
	
	.map-info.flex, .popup .flex {flex-wrap: wrap;}
	.map-info.flex iframe {padding-right: 10%;}
	
	.partners {background-size: contain; background-position: center calc(100% + 50px);}
	
	.services.flex ul {column-count: 2;}
}


@media only screen and (max-width: 600px) {
	.popup {width: 95%;}
	.x {right:0px;top: 20px;}
	.heading {font-size: 24px;}
	.flavor {font-size: 48px;}
	
	.imgs4.flex {flex-wrap: wrap;}
	.search-inv .heading {padding: 20px 0;}
	.search-spacer {padding: 150px 0;}
	
	.services.flex ul, .rental.flex ul {column-count: 1;}
	
	.deal {width: 100%;}
}

@media only screen and (max-width: 500px) {
	
	.popup {width: 95%;}
	.hero {margin-top: -55px;}
	.hero-text .heading {font-size: 20px;}
	.hero-text .heading .sm-heading { font-size: 15px; letter-spacing: 1px;}
	.motto {padding: 20px 0;}
	.motto .sm-heading {font-size: 14px;}
	
	.search-spacer {padding: 100px 0;}
	.wid-90.search-container {background-position: center 110%;}
	
	.showroom-card .card-title.flex {padding: 20px;}
	.card-title.flex .sm-heading {font-size: 16px;}
}

@media only screen and (max-width: 450px) {
	
	.popup {width: 95%;}
	.yellow-btn, .red-btn, a:has(> .yellow-btn), a:has(> .red-btn) {width: 100%;}
	
	.flavor {font-size: 32px;}
}






