@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#nav-logo {
	height: 50px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
}

h1 {
	font-weight: 500;
}

p {
	font-family: "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	text-align: left;
	margin-left: 10px;
}

#main-columns {
	margin: 25px auto;
}

.content-img {
	max-width: 100%;
	margin: 15px auto;
}

#accordion-container {
	width: 70%;
	margin: 30px auto;
}

#accordion-container li {
	list-style-type: circle;
}

.accordion-button:not(.collapsed) {
	background-color: #8C512E;
	color: #F2C3A7;
}

.page-banner img {
	height: 100%;
	max-width: 100%;
	overflow: hidden;
}

#spaces-row {
	margin: 25px auto;
	padding: 15px 0 50px;
	background-color: #F2C3A7;
}

.col-md-4 img {
	height: 250px;
	max-width: 100%;
	border: medium solid white;
	border-radius: 5px;
}

.col-md-4 img:hover {
	transform: scale(1.25);
	transition: all .5s ease-in 0s;
}

/*--- SLIDESHOW ---*/
#slideshow-wrapper {
	width: 100%;
	height: 450px;
}

#slideshow {
	width: 100%;
	height: 450px;
	overflow: hidden;
	white-space: nowrap;
}

#slideshow img {
	width: 100%;
	display: inline-block;
}

.rectangle {
	display: inline-block;
	background-color: #f0ebe8;
	width: 2.70833%;	/* 26/960 */
	height: 5px;
	margin-right: 1.5625%; /* 15/960 */
}

#rectangle-nav {
	margin-top: -50px;
	text-align: center;
}

/* CONTACT FORM */
#form-box, #results-container {
	width: 70%;
	margin: 0px auto;
	padding: 15px 0 50px;
}

#form-row {
	background-color: #F2C3A7;
}

#contact-form {
	border: medium solid black;
	background-color: antiquewhite;
	padding: 15px;
}

#form-row .form-align {
	display: inline-block;
	width: 12%;
	text-align: right;
}

#form-row #submit-button {
	background-color: #8C512E;
	color: white;
}

#form-row textarea {
	max-width: 100%;
}

/*MENU*/
.menu-box {
	width: 100%;
	padding: 5% 10%;
	overflow: auto;
}

.menu-box:nth-child(even) {
	background-color: #F2C3A7;
}

.menu-box h2 {
	clear: both;
}

.menu-type {
	display: flex;
	flex-wrap: wrap;
}

.item-box {
	width: 30%;
	text-align: center;
	background-color: blanchedalmond;
	float: left;
	margin: 20px 10px;
	padding: 10px 0px;
	border-radius: 10px;
}

.item-box img {
	max-width: 80%;
	margin: 10px auto;
}

.item-box p {
	text-align: center;
	font-style: italic;
}

.item-box h3 {
	font-size: 1.5em; /* 24/16 */
	font-weight: 700;
	margin-bottom: 15px;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 1024px) { 
	.col-8 {
		width: 100%;
		display: block;
	}
}

@media only all and (max-width: 480px) { 

	.page-banner img {
		height: auto;
	}
	
#slideshow-wrapper {
	width: 100%;
	height: 200px;
}

#slideshow {
	width: 100%;
	height: 200px;
	overflow: hidden;
	white-space: nowrap;
}
	
#form-row .form-align {
	width: 90%;
	text-align: left;
	margin-top: 15px;
}
	
	.item-box {
		width: 90%;
	}
	
	.menu-box h2 {
		text-align: center;
	}

}