@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	font-family: 'Ubuntu', sans-serif; 
	font-size: 1.125rem;
	font-weight: 500;
	min-height: 100vh;	/* A fallback if browser doesn't support the 'svh' unit below */
	min-height: 100svh; 
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
	color: #ffffff;
}

img {
	max-width: 100%;
	display: block;
}

h2 {
	color: #ffffff; /* Original: #707070 */ 
	font-size: 2rem;
	margin: 0;
}

strong {
	font-weight: 700;
}


/* ============== Header Section ============= */ 
header {
	background: #000000e8; /* 27210f*/
	padding: 1.2em 0;
}

.header-container {	
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.restaurant-logo-image {
	max-height: 100px;	
}

.restaurant-name {
	color:#DC0000;
	margin: auto 0.5em;	
}

.restaurant-name-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.restaurant-name-subtitle {
	font-size: 0.7rem;
	margin: 0;
}

.site-title {
	display: flex;
	flex-direction: row;
}

nav {
	margin: auto 0;
}

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: row;
}

nav li {
	margin-left: 1.8em;
}

nav li:first-child {
	margin-left: 0;
} 

nav a {
	text-decoration: none;
	color: #a48c88; /* Original: #707070 */ 
	font-weight: 700;
	padding: 0.25em 0;
}

nav a:hover {
	color: #DC0000;
}

nav a:focus {
	color: #a48c88;
}

.current-page {
	border-bottom: 2px solid #DC0000;
}

.current-page:hover {
	color: #DC0000;
}


/* ============== Main Container ============= */
.center-window {
	flex-grow: 1;
	background-color: #000000cc;
	background-image: url("../img/bg1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode:multiply;
	padding-top: 2em;
}

.coming-soon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color:#b19000; /* Original: #E8B46A #a48c88*/ 
	font-size: 3.5rem;
	text-align: center;
	padding: 0;
}

.main-container {	
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

.feature-graphic-image {
	border: 8px solid rgb(231, 231, 231);
	max-width: calc(100% - 16px);	/* 100% causes outside parent. Subtract left and right border width here */
	max-height: 450px;
	object-fit: cover;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
}

.homepage-slogan {
	width: 80%;
	margin: 0;
	font-size: 3rem;
	margin-bottom: 2rem;
}

.button {
	background-color: #F4AE3E;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
	margin: 4px 2px;
	cursor: pointer;
	margin-bottom: 5rem;
}


/* ============= Footer Section ============= */ 
footer {
	background: #143774;
	font-weight: 300;
	color: white;
	text-align: center;
	padding: 1.5em 0;
}


/* ================ About Us ================ */
.section-line {
	border: 1px solid white;
	width: 50%;
	margin: 3em auto;
}

table {
	width: 50%;
}

td {
	text-align: left;
	white-space: nowrap;
	padding-bottom: 0.35em;
	padding-right: 3em;
}

.google-maps {
	width: 100%;
	height: 500px;
	margin-bottom: 3em;
}

.notice-red {
	padding-left: 1em;
	padding-right: 1em;
	border: 2px solid #DC0000;
	color: #DC0000;
}

/* =================== Menu ================== */
.menu-element {
	margin-bottom: 1em;
	border: 2px solid rgb(231, 231, 231);
}

.pdf-viewer {
	width: 100%;
	height: 600px;
	border: 0;
	margin-bottom: 2em;
	background-color: #000000cc;
}


/* =============== Media Query ================*/
/* Original max-width: 675px */
@media (max-width: 800px) {
	.header-container {
		flex-direction: column;
		align-items: center;
	}

	.restaurant-name-title {
		font-size: 1.8rem;
	}
	
	.restaurant-name-subtitle {
		font-size: 0.64rem;
	}

	.coming-soon {
		font-size: 3rem;
	}

	.feature-graphic-image {
		border: 5px solid rgb(221, 221, 221);
		margin-bottom: 3em;
	}

	nav li {
		margin-left: 1.5em;
	}
}

@media (max-width: 675px) {
	.homepage-slogan {
		width: 100%;
		font-size: 2.5rem;
	}

	table {
		width: 80%;
	}

	td {
		padding-right: 1em;
	}
}
