@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*PAGE CSS BEGINS HERE*/

html, body {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    height: 100%;
	/*background-color: #e1e6dd;*/
	background-color: #000;
    /*background-image: url("../_img/gplay.png");*/
	background-image: url("../_img/brick.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	box-sizing: border-box;
	color: #fff;
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
header {
	display: flex;
	flex-shrink: 0;
    /*background-color: #d98235;*/
	background-color: #029d2b;
    padding: 10px;
    height: auto;
	min-height: 50px;
}

nav {
	
}

main {
    flex: 1 0 auto;
    width: 100%;
	height: auto;
    text-align: center;
    align-items: center;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='200' preserveAspectRatio='none' viewBox='0 0 1440 200'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1037%26quot%3b)' fill='none'%3e%3cpath d='M 0%2c27 C 96%2c48.6 288%2c129.2 480%2c135 C 672%2c140.8 768%2c59.2 960%2c56 C 1152%2c52.8 1344%2c106.4 1440%2c119L1440 200L0 200z' fill='rgba(2%2c 157%2c 43%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1037'%3e%3crect width='1440' height='200' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: bottom;
	padding-bottom: 200px;
	background-size:contain;
}

h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 40px;
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

p {
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

strong {
	font-weight: 700;
}

hr {
	 border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(2, 157, 43, 0), rgba(2, 157, 43, 0.75), rgba(2, 157, 43, 0));
	margin-bottom: 40px;
}

h3 a {
	color: #029d2b;
	font-weight: 700;
}

p a {
	color: #029d2b;
	font-weight: 700;
}

p a:hover {
	text-decoration: underline;
}

.rotate {
	transform: rotate(180deg);
	transform: scaleY(-1);
	max-width: 100%;
	width: 100%;
	height: auto;
	position: relative;
	top: -1px;
}

.mainLogo {
	display: flex;
	flex-direction: column;
	width: 80%;
	justify-content: center;
	align-items: center;
	margin: 40px auto;
	filter: drop-shadow(3px 3px 3.5px rgba(0,0,0,.75))
}

.mainLogo p {
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 20px;
	color: #fff;
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

.mainLogo span {
	color: #CE2125;
}

.mainLogo .logoContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.logo {
	width: auto;
	height: 200px;
}

#popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /*background: white;*/
    background-image: url("../_img/brick.webp");
    background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
            padding: 10px 10px;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.55);
            z-index: 1000;
            border-radius: 10px;
            display: none;
    border: 1px solid #fff;

        }

#popup img {

    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: auto;
}

#popup h3 {
    color: #029d2b;
    text-shadow: 2px 2px 2.5px rgba(0,0,0,.25);
}

#popup button {
    margin: 20px auto 10px;
    background-color: #029d2b;
    padding: 6px 10px;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #fff;
}

.hours {
	margin: 40px auto;
}

.hours li {
	margin-bottom: 6px;
}

.menuitems {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin: auto;
	padding-top: 20px;

}

.menuitems h2 {
	text-shadow: 3px 3px 3.5px rgba(0,0,0,.75);
}

.imageGallery {
	width: 90%;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.image {
	border: 3px solid #fff;
}

.flexContainer {
	justify-content: space-between;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px
}

.flexContainer .item {
	width: 48%;
	min-width: 300px;
	border: 1px solid #029d2b;
	background-color: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	padding: 10px;
}

.drinkMenu.flexContainer {
	flex-direction: column;
}


.drinkMenu.item {
	min-width: 80%;
	margin: auto;
}

.item img {
	width: 175px;
	height: auto;
	margin: 10px 0;
}

.item h3 {
	font-weight: 700;
}

.item h3:nth-of-type(2) {
	margin-top: 20px;
}

.item p {
	line-height: 20px;
}

.item.expanded {
	width: 100%;
}

.foodMenu {
	background-image: url("../_img/menubackground.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.drinkMenu {
	
}

.drinkMenu P {
	margin-bottom: 10px;
	line-height: 18px;
}

.drinkMenu hr {
	margin: 20px 0;
}

.price {
	margin: 5px 0 0;
}

.location {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.location div {
	width: 50%;
}

.location span {
	font-weight: 700;
}

.location p {
	margin-bottom: 20px;
}

.location iframe {
	border: 2px solid #fff;
	width: 400px;
	height: 300px;
}

.kidsMenu {
	display: block;
	max-width: 900px;
	height: auto;
	box-sizing: border-box;
	margin: 20px;
	margin-left: auto;
	margin-right: auto;
}

footer {
    /*background-color: #d98235;*/
	background-color: #029d2b;
    width: 100%;
	height: auto;
    min-height: 50px;
    flex-shrink: 0;
    text-align: center;
    color: #fff;
	margin-top: 0px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	
}

footer ul {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

footer li {
	margin-right: 50px;
}

.sentence {
	margin-left: -120px;;
	margin-bottom: 40px;
	text-align: center;
}

.words{
	display: inline;
	text-indent: 10px;
}
.words-1 span{
	position: absolute;
	opacity: 0;
	color: #cf212a;
	-webkit-transform-origin: 10% 75%;
	transform-origin: 10% 75%;
	-webkit-animation: rotateWord 18s linear infinite 0s;
	-ms-animation: rotateWord 18s linear infinite 0s;
	animation: rotateWord 18s linear infinite 0s;
}
.words span:nth-child(2) { 
    -webkit-animation-delay: 3s; 
	-ms-animation-delay: 3s; 
	animation-delay: 3s; 
	color: #cf212a;
}
.words span:nth-child(3) { 
    -webkit-animation-delay: 6s; 
	-ms-animation-delay: 6s; 
	animation-delay: 6s; 
	color: #cf212a;	
}
.words span:nth-child(4) { 
    -webkit-animation-delay: 9s; 
	-ms-animation-delay: 9s; 
	animation-delay: 9s; 
	color: #cf212a;
}
.words span:nth-child(5) { 
    -webkit-animation-delay: 12s; 
	-ms-animation-delay: 12s; 
	animation-delay: 12s; 
	color: #cf212a;
}
.words span:nth-child(6) { 
    -webkit-animation-delay: 15s; 
	-ms-animation-delay: 15s; 
	animation-delay: 15s; 
	color: #cf212a;
}
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    5% { opacity: 1; }
    17% { opacity: 1; -webkit-transform: rotate(0deg); }
	19% { opacity: 1; -webkit-transform: rotate(98deg); }
	21% { opacity: 1; -webkit-transform: rotate(86deg); }
	23% { opacity: 1; -webkit-transform: translateY(85px) rotate(83deg); }
	25% { opacity: 0; -webkit-transform: translateY(170px) rotate(80deg); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    5% { opacity: 1; }
    17% { opacity: 1; -ms-transform: rotate(0deg); }
	19% { opacity: 1; -ms-transform: rotate(98deg); }
	21% { opacity: 1; -ms-transform: rotate(86deg); }
	23% { opacity: 1; -ms-transform: translateY(85px) rotate(83deg); }
	25% { opacity: 0; -ms-transform: translateY(170px) rotate(80deg); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    5% { opacity: 1; }
    17% { opacity: 1; -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	19% { opacity: 1; -webkit-transform: rotate(98deg); transform: rotate(98deg); }
	21% { opacity: 1; -webkit-transform: rotate(86deg); transform: rotate(86deg); }
	23% { opacity: 1; -webkit-transform: translateY(85px) rotate(83deg); transform: translateY(85px) rotate(83deg); }
	25% { opacity: 0; -webkit-transform: translateY(170px) rotate(80deg); transform: translateY(170px) rotate(80deg); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}

/*.animationContainer {
	position: relative;
	margin-bottom: 40px;
	font-size: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.animation {

	animation: rotateFade 4s linear 0s 1 normal forwards;
	border: 2px solid red;
	margin-left: 5px;
	width: 10%;
	animation-iteration-count: infinite;

}

@keyframes rotateFade {
	0% {
		transform: rotate(0);
		transform-origin: bottom left;
	}
	
	75% {
		transform: rotate(0);
		transform-origin: bottom left;
		opacity: 100%;
	}

	100% {
		transform: rotate(90deg);
		transform-origin: bottom left;
		opacity: 0%;
	}
}*/

/* MOBILE CSS BEGINS HERE */

@media all and (max-width: 660px) {
	
	main {
		padding-bottom: 100px;
	}
	
	.mainLogo {
		width: 90%;
	}
	
	.mainLogo p {
		font-size: 22px;
	}
    
	.logoContainer {

		width: 100%;
	}
	
	.logoContainer img {
		width: 100%;
		height: auto;
	}
	
	.logo {
		max-width: 140px;
	}
	
	.imageGallery {
		width: 100%;
		gap: 10px;
	}
    
    #popup {
        width: 80%;

    }
    
    #popup img {
        max-width: 700px;
    }
    
    #popup h3 {
        font-size: 17px;
        line-height: 24px;
    }
    
    #popup .button {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 10px;
        text-shadow: 2px 2px 3px rgba(0,0,0,.75);
    }
	
	.image {
		width: 120px;
	}
	
	.image img {
		width: 100%;
		height: auto;
	}
	
	.flexContainer .item {
		width: 100%;
	}
	
	.location {
		flex-direction: column;
		flex-wrap: wrap;
	}
	
	.location div {
		width: 100%;
	}
	
	.location iframe {
		width: 90%;
	}
	
	footer ul {
		flex-direction: column;
	}
	
	footer li {
		margin-right: 0;
		margin-bottom: 5px;
	}
	
}
