@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box;
}



/*{
    border: 1px red solid;
    margin: 0px;
    padding: 0px;
}*/


:root {
	--background: rgba(88, 89, 91, .40);
	--title: rgba(20, 20, 20, 1.00);
	--text: rgba(40, 40, 40, 1.00);
}

html {}

body {
	margin: 0;
	min-height: 100%;
	background-color: rgba(20, 20, 20, 0.1);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: var(--text);
	scroll: auto;
	overflow: scroll;


}

a:link,
a:visited {
	color: var(--title);
	text-decoration: none;
	text-align: center;
	margin-top: 0px;
	background-color: rgba(240 240, 240, 0.00);
}


/* mouse over link */
a:hover {
	text-decoration: underline;
}

a:active {
	/* selected link */
	text-decoration: none;
}

/* --------------------------------------------------------------  HEADERS & BG IMAGES */


[class*="bg-"] {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 100vh;
	z-index: 1;

}

.bg-home {
	background-image: linear-gradient(rgba(240, 240, 240, 0.70), rgba(240, 240, 240, 0.60)), url("images/bg/home_bg.jpg");
}

.bg-about {
	background-image: linear-gradient(rgba(240, 240, 240, 0.8), rgba(240, 240, 240, 0.60)), url("images/bg/about_bg.jpg");
}


.bg-gallery {
	background-image: linear-gradient(rgba(240, 240, 240, 0.99), rgba(240, 240, 240, 0.70)), url("images/bg/gallery_bg.jpeg");
}

.bg-faqs {
	background-image: linear-gradient(rgba(240, 240, 240, 0.99), rgba(240, 240, 240, 0.70)), url("images/bg/faqs_bg.jpeg");
}

.bg-contact {
	background-image: linear-gradient(rgba(240, 240, 240, 0.8), rgba(240, 240, 240, 0.50)), url("images/bg/contact_bg.jpg");
}



/* --------------------------------------------------------------  NAVIGATION STYLES */

.nav-bar {
	display: flex;
	flex-direction: row;
	align-content: flex-end;
	align-items: center;
	justify-content: flex-end;
	position: fixed;
	top: 0px;
	right: 0px;
	gap: clamp(1%, 3%, 4%);
	list-style: none;
	min-height: 75px;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 20;
}

.mobile-menu {
	display: none;
}

.button {
	border: 0;
	background: rgba(0, 0, 0, 0.00);
	color: var(--text);
	padding: .5em .75em;
	position: relative;
	z-index: 1;
	text-align: center;
	font-family: 'Aldrich', sans-serif;
	font-size: clamp(.75rem, 1.55rem, 1.75rem);
}

.button::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 100%;
	height: 4px;
	background: rgba(20, 20, 20, 1.00);
	transform: scaleX(0.0);
	transform-origin: left;
	z-index: -1;
	transition: transform 200ms ease-in;
}


.button-1::after {
	transform: scaleX(0);
	transform-origin: right;
}

.button-1:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.current {
	background-color: rgba(0, 148, 68, 0.80);
	height: 75px;
	padding-inline: 20px;
	padding-top: 14px;
	border-bottom: 4px solid rgba(40, 40, 40, 1.00);
	backdrop-filter: blur(15px);
}


.nav-bar a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: var(--text);
}

.mobile-menu a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: var(--text);
}



/* --------------------------------------------------------------  REGULAR/CUSTOM CLASSES*/



.logo {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10
}

.top-corner {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
}


.main {
	color: var(--text);
	font-size: 16px;
	margin: 0px;
	margin-bottom: 100px;
	padding: 0px;
	position: absolute;
	top: 75px;
	height: auto;
}

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


p {
	padding: 20px;
}

h1 {
	font-size: clamp(2.5rem, 3.25rem, 3.5rem);
	padding-top: 30px;
	margin: 0px;
	letter-spacing: 2.5px;
	faont-family: 'Montserrat', sans-serif;
	color: var(--title);
	text-shadow: -5px 5px 4px var(--background);
}

h2 {
	color: rgba(0, 104, 56, 1.00);
	text-shadow: -2px 2px 3px var(--background);
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(24px, 36px, 40px);
	margin-inline: min(1.5vw, 3rem);
}

hr {
	border-style: solid;
	border-width: 0;
	background-color: rgba(88, 89, 91, .75);
	color: rgba(88, 89, 91, 1.00);
	text-align: center;
	width: 85%;
	height: 3px;
}

.title {
	text-align: left;
	margin-left: 15%;
	margin-bottom: 20px;
	margin-top: 5vh
}


.content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: auto;
	padding: 0px;
	margin: 0px;
	min-width: 100%;
}

.badge {
	max-width: auto;
	display: flex;
	justify-content: center;
	aspect-ratio: 1 / 1;
	max-height: 256px;
	margin: auto;
	margin-bottom: 15px;
	padding: 0px;
}

.middle_text {
	min-width: 70%;
	min-height: 80%;
	margin: auto;
	margin-right: 10px;
	margin-bottom: 15px;
	padding-inline: 20px;
	text-align: left;
	font-size: clamp(.85rem, 1.5rem, 1.75rem);
	background: rgba(240, 240, 240, 0.70);
	backdrop-filter: blur(3px);
	border: 1px solid grey;
}

.bottom_text {
	font-family: "Montserrat", sans-serif;
	color: var(--text);
	font-size: clamp(.95rem, 1.5rem, 1.75rem);
	margin-inline: 80px;
	margin-block: 5px;
	backdrop-filter: blur(2px);
}

.pics {
	max-width: 50%;
	min-height: 100%;
	padding: 0px;
	margin: 10px;
	border: 1px solid rgba(80, 80, 80, .75);
	z-index: -10;
}

.pics img {
	object-fit: cover;
	object-position: 50% 50%;
}

.tct-info {
	max-width: 50%;
	min-height: 100%;
	padding: 10% 15px 10px 15px;
	margin: 30px;
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	text-align: center;
	font-size: clamp(1.25rem, 1.85rem, 1.95rem);
	background: rgba(240, 240, 240, 0.50);
	backdrop-filter: opacity(50%);
	border: 1px solid grey;

}

.info {
	max-width: 45%;
	max-height: 800px;
	padding: 10% 15px 10px 15px;
	margin-bottom: -670px;
	margin-right: 40px;
	margin-left: 40px;
	margin-top: 140px;
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	text-align: center;
	font-size: clamp(1rem, 1.5rem, 1.75rem);
	background: rgba(240, 240, 240, 0.50);
	backdrop-filter: opacity(50%);
	border: 1px solid grey;
	z-index: 10;
}


.home-pic {
	max-width: 100%;
	min-height: auto;
	display: flex;
	justify-content: center;
	margin: 10px;
	margin-left: 20px;
	margin-top: 30px;
	padding: 10px;
}

.home-text {
	width: 80%;
	min-height: 80%;
	margin: auto;
	margin-bottom: 15px;
	margin-inline: min(5vw, 10rem);
	padding: 5px;
	text-align: left;
	font-size: clamp(1.35rem, 1.5rem, 1.85rem);
	background: rgba(240, 240, 240, 0.70);
	backdrop-filter: blur(3px);
	box-shadow: 5px 5px 10px 0px rgba(60, 60, 60, 1.00);
}

.about-text {
	width: 80%;
	min-height: 80%;
	margin: auto;
	margin-bottom: 15px;
	margin-inline: min(5vw, 10rem);
	padding: 5px;
	text-align: left;
	font-size: clamp(1.35rem, 1.5rem, 1.85rem);
	backdrop-filter: blur(9px);
	font-size: clamp(1.3rem, 2.4vw, 1.6rem)
}


.splash {
	background-image: url("images/home/kitchen-1.jpg");
	background-size: cover;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding: 0px;
	margin: 0px;
}


.about_splash {
	background-image: url("images/skyline.png");
	background-size: cover;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding: 0px;
	margin: 0px;
}

.bar {
	width: 100%;
	height: 20px;
	background-color: rgba(0, 148, 68, 1.00);
}


.faqs_splash {
	background-image: url("images/tile_shop.png");
	background-size: cover;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding: 0px;
	margin: 0px;
}

.question {
	font-weight: 700;
	text-decoration: underline;
	font-style: italic;
	font-size: clamp(1.4rem, 1.55rem, 1.9rem);
	min-height: 45px;
	margin-left: 25px;
	text-align: left;
}

.answer {
	width: 90%;
	font-weight: 400;
	text-decoration: none;
	font-size: clamp(1.4rem, 1.55rem, 1.9rem);
	min-height: 10px;
	margin-left: 50px;
	margin-bottom: 50px;
	text-align: left;
}

.faqs-text {
	width: 80%;
	min-height: 80%;
	margin: auto;
	margin-right: min(1vw, 5rem);
	padding: 5px;
	text-align: left;
	font-size: clamp(1.35rem, 1.5rem, 1.85rem);
	backdrop-filter: blur(2px);
}

h3 {
	text-align: center;
	font-size: clamp(1.2rem, 1.35rem, 1.5rem);
	margin-bottom: 50px;
}

.copyright {
	display: flex;
	justify-content: center;
	background-color: rgba(188, 189, 191, 1.00);
	height: 30px;
	width: 100%;
	text-align: center;
}

/* --------------------------------------------------------------  ROWS FOR MEDIA QUERIES */

.row {
	margin: auto;
	padding: 0px;
	width: 100%;
	position: relative;

}

.row::after {
	content: "";
	clear: both;
	display: block;
}

.bottom-margin {
	margin-bottom: 120px;
}

.row p {
	padding: 20px;
}

.row a:link {
	color: rgba(0, 104, 56, 1.00);
}

.row a:visited {
	color: rgba(0, 104, 56, 1.00);
}

.row a:hover {
	text-decoration: underline;
}

.row a:active {
	text-decoration: none;
}

[class*="col-"] {
	float: left;
	padding: 0px;
	text-align: left;
	/* FOR SMALLEST SCREEN SIZE: */
	width: 100%;
}

[class*="box-"] {
	display: flex;
	flex-shrink: 100;
	text-align: center;
	font-family: 'Aldrich', sans-serif;
	font-size: clamp(.75rem, 1.55rem, 1.75rem);
	padding: 10px 0px;
}


/* --------------------------------------------------------------  FOOTER STYLES */
.footer {
	background-color: rgba(188, 189, 191, 1.00);
	height: 120px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
}

i {
	color: var(--text);
	font-size: 50px;
	padding-top: 20px;
}

.soc_media {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	margin-top: 16px;
}

.footer_img {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	align-content: center;
	margin-top: 15px;

}


.footer_text {
	display: flex;
	flex-flow: column;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	margin-top: 2px;
}

.footer_sm {
	background-color: rgba(188, 189, 191, 1.00);
	min-height: 210px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}




/* --------------------------------------------------------------  STYLING FOR CONTACT FORM */

fieldset {
	text-align: center;
	width: 90%;
	margin: auto;
	border: 2px solid rgba(100, 100, 100, .50);
	border-radius: 4px;
	font-size: 24px;
}

legend {
	color: rgba(55, 55, 55, 1.00);
	font-weight: bold;
	font-size: 24px;
}

input[type=text],
select,
textarea {
	width: 90%;
	padding: 10px 30px;
	margin: 8px 10px;
	display: inline-block;
	border: 1px inset rgba(55, 55, 55, 0.50);
	background-color: rgba(235, 235, 235, 1.00);
	border-radius: 3px;
	font-size: 20px;
	outline: none;
}

input[type=text]:focus {
	background-color: rgba(88, 89, 91, 0.30);
}

textarea {
	height: 150px;
	width: 95%;
	resize: auto;
	text-align: left;
}

input[type=submit] {
	width: 40%;
	background-color: rgba(19, 179, 97, 1.00);
	color: rgba(235, 235, 235, 1.00);
	padding: 14px 0px;
	margin: 8px auto 20px auto;
	border-radius: 3px;
	font-size: 24px;
	cursor: pointer;
}

input[type=submit]:hover {
	background-color: rgba(0, 104, 56, 1.00);
}


.form {
	min-width: 100%;
	margin: 0px;
	backdrop-filter: blur(2px);
	background: rgba(20, 20, 20, 0.1);
	padding-inline: 140px;
	padding-block: 10px;
	border-top: 0px;
	font-size: 20px;
}

.input_left {
	float: left;
	width: 50%;
}

.input_right {
	float: left;
	width: 50%;
}

.clear {
	clear: both;
	min-height: 180px;
}

.space {
	width: 50%;
	padding: 0px 100px;
	min-height: 5vh;
}




/*  -------------------------------------------------------------- GALLERY STYLES */


#wrapper {
	height: auto;
	width: 900px;
	margin: auto;
	overflow: hidden;

}



/* -------------------------------------------------------------- jQUERY CLASS */
.nav-bar.fade {
	background: rgba(255, 255, 255, 0.00);
	animation: fadeBackground 0.75s;
	animation-fill-mode: forwards;
	backdrop-filter: blur(15px);
}



/* --------------------------------------------------------------  MEDIA QUERIES */

@keyframes fadeBackground {
	from {
		background: rgba(255, 255, 255, 0.00);
	}

	to {
		background: rgba(128, 129, 131, 1.00);
	}
}

@keyframes fading {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}


/* -------------------------------------------------------------- FULL SIZE SCREENS / COMPUTERS - 1024px OR MORE*/
@media only screen and (min-width: 1024px) {
	.col-1 {
		width: 8.33%;
	}

	.col-2 {
		width: 16.66%;
	}

	.col-3 {
		width: 25%;
	}

	.col-4 {
		width: 33.33%;
	}

	.col-5 {
		width: 41.66%;
	}

	.col-6 {
		width: 50%;
	}

	.col-7 {
		width: 58.33%;
	}

	.col-8 {
		width: 66.66%;
	}

	.col-9 {
		width: 75%;
	}

	.col-10 {
		width: 83.33%;
	}

	.col-11 {
		width: 91.66%;
	}

	.col-12 {
		width: 100%;
	}

	.footer_sm {
		display: none;
	}

	.image-2 {
		display: none;
	}

	.title {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {
	.top-corner {
		display: none;
	}

	.nav-bar {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

}


/* -------------------------------------------------------------- BETWEEN 800PX AND 1024px */
@media only screen and (max-width: 1024px) and (min-width: 801px) {
	.col-1 {
		width: 8.33%;
	}

	.col-2 {
		width: 16.66%;
	}

	.col-3 {
		width: 25%;
	}

	.col-4 {
		width: 33.33%;
	}

	.col-5 {
		width: 41.66%;
	}

	.col-6 {
		width: 50%;
	}

	.col-7 {
		width: 58.33%;
	}

	.col-8 {
		width: 66.66%;
	}

	.col-9 {
		width: 75%;
	}

	.col-10 {
		width: 83.33%;
	}

	.col-11 {
		width: 91.66%;
	}

	.col-12 {
		width: 100%;
	}

	.footer_sm {
		display: none;
	}

	.title {
		display: none;
	}

	.content {
		flex-direction: column;
	}

	.home-text {
		min-width: 90%;
	}

	.middle_text {
		min-width: 90%;
		margin-inline: auto;

	}
}



/* -------------------------------------------------------------- NAV BAR FOR MOBILE - 800px OR LESS*/
@media only screen and (max-width: 800px) {
	.col-m-1 {
		width: 8.33%;
	}

	.col-m-2 {
		width: 16.66%;
	}

	.col-m-3 {
		width: 25%;
	}

	.col-m-4 {
		width: 33.33%;
	}

	.col-m-5 {
		width: 41.66%;
	}

	.col-m-6 {
		width: 50%;
	}

	.col-m-7 {
		width: 58.33%;
	}

	.col-m-8 {
		width: 66.66%;
	}

	.col-m-9 {
		width: 75%;
	}

	.col-m-10 {
		width: 83.33%;
	}

	.col-m-11 {
		width: 91.66%;
	}

	.col-m-12 {
		width: 100%;
	}

	.nav-bar {
		flex-direction: column;
		align-content: center;
		justify-content: flex-start;
		align-items: flex-start;
		position: fixed;
		inset: 0 0 0 70%;
		gap: 0;
		margin-top: 0;
		padding-top: 20px;
		padding-left: 0px;
		height: 100vh;
		z-index: 20;
		transform: translateX(50%);
		transition: transform 500ms ease-out;
	}

	.tab {
		background: rgba(128, 129, 131, 1.00);
		padding: 5px 100% 10px 0px;
	}

	.current {
		background: rgba(0, 148, 68, 0.80);
		height: auto;
		padding-inline: 0px 100%;
		padding-block: 10px;
		border-bottom: 4px solid rgba(40, 40, 40, 1.00);
	}

	.main {
		top: 0px;
	}

	.nav-bar[data-visible="true"] {
		transform: translateX(0%);
	}

	.mobile-menu {
		display: block;
		position: fixed;
		background: url("images/menu.png");
		outline: 0;
		background-repeat: no-repeat;
		width: 24px;
		border: 0;
		aspect-ratio: 1;
		top: 40px;
		right: 40px;
		z-index: 100;
	}

	.mobile-menu[aria-expanded="true"] {
		background: url("images/close.png");
	}



	.input_left,
	.input_right {
		width: 100%;
	}

	.tct-info {
		max-width: 90%;
	}

	.home-text {
		width: 90%;
		font-size: clamp(1.2rem, 1.3rem, 1.5rem);
	}

	.about-text {
		width: 100%;
	}

	.content {
		flex-direction: column;
	}

	.middle_text {
		min-width: 90%;
		margin-inline: auto;
	}

	.space {
		display: none;
	}

	.form {
		padding-inline: 20px;
	}

	.footer {
		display: none;
	}

	.bottom-margin {
		margin-bottom: 220px;
	}

	.footer_text {
		margin-top: 8px;
	}

	.soc_media {
		margin-top: -4px;
	}
}


/* -------------------------------------------------------------- MEDIUM SCREENS / TABLETS */
@media only screen and (max-width: 680px) {
	.col-m-1 {
		width: 8.33%;
	}

	.col-m-2 {
		width: 16.66%;
	}

	.col-m-3 {
		width: 25%;
	}

	.col-m-4 {
		width: 33.33%;
	}

	.col-m-5 {
		width: 41.66%;
	}

	.col-m-6 {
		width: 50%;
	}

	.col-m-7 {
		width: 58.33%;
	}

	.col-m-8 {
		width: 66.66%;
	}

	.col-m-9 {
		width: 75%;
	}

	.col-m-10 {
		width: 83.33%;
	}

	.col-m-11 {
		width: 91.66%;
	}

	.col-m-12 {
		width: 100%;
	}


	.nav-bar {
		inset: 0 0 0 60%;
	}

	.content {
		display: flex;
		flex-direction: column;
	}

	input[type=submit] {
		font-size: 20px;
	}

	.space {
		display: none;
	}

	.form {
		padding-inline: 10px;
	}

	.footer {
		display: none;
	}

	.bottom_text {
		margin-inline: 60px;
	}
}

/* -------------------------------------------------------------- FOR MOBILE - MENU READABILITY */
@media only screen and (max-width: 480px) {
	.col-m-1 {
		width: 8.33%;
	}

	.col-m-2 {
		width: 16.66%;
	}

	.col-m-3 {
		width: 25%;
	}

	.col-m-4 {
		width: 33.33%;
	}

	.col-m-5 {
		width: 41.66%;
	}

	.col-m-6 {
		width: 50%;
	}

	.col-m-7 {
		width: 58.33%;
	}

	.col-m-8 {
		width: 66.66%;
	}

	.col-m-9 {
		width: 75%;
	}

	.col-m-10 {
		width: 83.33%;
	}

	.col-m-11 {
		width: 91.66%;
	}

	.col-m-12 {
		width: 100%;
	}


	.nav-bar {
		inset: 0 0 0 50%;
	}

	.space {
		display: none;
	}

	input[type=submit] {
		font-size: 16px;
	}

	.footer {
		display: none;
	}

	.bottom_text {
		margin-inline: 20px;
	}
}




