@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&family=Tangerine&display=swap');/* Fredericka for H1 */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap');

/* Variebles*/
:root{
	--box-shadow: 0px 0px 10px rgb(0, 0, 0);
	--container-bg: rgba(255, 255, 255, .7);
}

/* Global Information */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	background-color: rgba(0, 0, 0, 0.7);
}

h1,h2,h3,h4,h5{
	font-family: 'Teko', sans-serif;
	font-size: 30px;
}

p{
	font-size: 20px;
}

ul{
	list-style-type: none;
}

img{
	object-fit: -webkit-cover;
	object-fit: -moz-cover;
	object-fit: -ms-cover;
	object-fit: cover;
	width: 100%;
}

a{
	text-decoration: none;
	cursor: pointer;
	color: white;
	font-size: 23px;/* Prevoius size 20px */
}
/* End of Global Information*/

/* Loading Sign */
.loading{
	position: fixed;
	z-index: 100;/* Must Be on to of everything */
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
}

.loading img{
	width: 250px;
	border: none;
}

.loading-end{
	animation: fadeOut 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeOut{
	100%{
		opacity: 0;
		visibility: hidden;
	}
}
/* End Loading Sign */


/*Header*/
header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1440px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.header-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 90%;
	position: relative;
	margin: 20px 0;/* For big devices 30px */
	/*overflow: auto;*//* Fix margin collapes */
	
}

.header-title{
    margin: 5px 0;
}

#company_logo{
	height: 90px;
	border: none;
	width: auto;
}

/* Hamburger Menu */

.nav-toggle{
	display: block;
	position: absolute;
	z-index: 20;
	top: 30px;
	right: 10px;
}

.nav-toggle img {
	height: 40px;
	width: 40px;
}

.hidden{
	display: none;
}

.no_scroll{
	overflow: hidden;/* To stop scrolling during when the navigation is open*/
}
nav{
	height: 0;	/* To the remove the navigation when the site boots */
	width: 100%;
	overflow: hidden;
	transition: 200ms ease-in-out;
}

.open{           /* This open class is the nav */
	height: 78vh;
	background-color:black;
	margin-top: 10px;
}

/* End of hambuger menu */

nav ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
}
nav li{
	padding: 30px 0;
	margin: 5px 0;
}

nav li a{
	font-size: 30px;
}
nav li a::after{
	content:"";
	display: block;
	height: 4px;
	width: 0;
	background-color: rgb(255, 255, 143);
	transition:all .5s;
}

.active::after{
	content:"";
	display: block;
	height: 4px;
	width: 0;
	background-color: rgb(247, 188, 5);
	width:100%;
}

 nav li a:hover::after{
	width:100%;
}

/* Main Container */
.main-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	max-width: 1440px
}

/* banner */
.banner-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}


.banner-pic video{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	z-index: -1;
}

.banner-pic video:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color:black;
	opacity: .8;
}
/*
.banner-pic {
	object-fit: cover;
}
*/
.banner-container h1{
	font-family:'Fredericka the Great', cursive;
	font-size: 35px;
	width: 90%;
	margin-bottom: 5px;
	margin-top: 100px;/* To push the banner content down */
}

.sub-heading{
	font-family: 'Teko', sans-serif;
	font-size: 25px;
	margin-bottom: 5px;
}
    
.sub-para{
   	font-size: 18px;
}

.down-icon{
	border: none;
	/*height: 00px;*/
	width: 18%;
	margin: 0 auto;
}
/* End banner */

/* In the Home Page About us */
.about-us{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
}

.about-us-content{
	margin: 10px;
	order: 2;
}
.about-us-image{
	height: 250px;
}
/* End In the Home Page */

/* In the Home Page Menu */
.menu-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 90%;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
	
}

.menu-container h2{
	text-align: center;
	margin-bottom: 10px;
}

.sub-menu-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.sub-menu-container li{
	text-align: center;
}

.sub-menu-container img{
	padding: 5px 0;
	height: 200px;
	border: none;
}

.sub-menu-container h3{
	font-size: 25px;
}

.sub-menu-container p{
	padding: 0 5px;
	padding-bottom: 5px;
}
/* End In the Home Page Menu */


.additional-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 90%;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
}

.additional-info-1{
	width: 100%;
	order: 2;
}

.additional-info-1 p{
	text-align: center;
}

.additional-info-2{
	width: 100%;
}

.additional-info-2 img{
	border: none;
}

/* Menu page */
.menu-page-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 90%;
}

.menu-page-container-zigzag-mixed-grill,
.menu-page-container-zaggy-wings-meals,
.menu-page-container-trotters-meal,
.menu-page-container-trotters-only,
.menu-page-container-starches-sides,
.menu-page-container-wings-only{
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin: 10px 0px;

}

.menu-page-container h2{
	width: 90%;
	background-color: black;
	color: yellow;
	text-align: center;
	padding: 5px 5px;
	border-radius: 5px;
	margin: 10px auto;
}

.image-size{
	height: 150px;
	max-width: 90%;
	margin: 0 auto;
}

.image-size img{
	height: 100%;
	border: 1px solid red;
}

.menu-page-container h3{
	color: rgb(145, 19, 10);
}

.price{
	color: rgb(242, 100, 90);
}

.menu-page-container h3,
.menu-page-container p{
	padding: 0 5px;
}

/* End Menu page */

/* Gallery page*/
.gallery-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
}

.gallery-container h2{
	text-align: center;
	margin-bottom: 10px;
}

.sub-gallery-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.sub-gallery-container li{
	text-align: center;
}

.sub-gallery-container img{
	height: 200px;
}
.sub-gallery-container a{
	font-size: inherit;
	color: red;
}
/* End of Gallery page */


/* Gallery Events page*/
.gallery-events-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
	margin-bottom: 20px;
}

.gallery-events-container h2{
	text-align: center;
	margin-bottom: 10px;
}

.sub-gallery-events-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.sub-gallery-events-container li{
	height: 200px;
}

.sub-gallery-events-container img{
	height: 100%;
}
.sub-gallery-events-container a{
	font-size: inherit;
	color: red;
}
/* End of Gallery Events page */


/* Video Event Playlist Code */
.video-event-container{
	display: flex;
	flex-direction: column;
}

.main-video-container{
	width: 100%;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);

}
.video-container{
	width: 100%;
}

.video-container video{
	height: 300px;
	width: 100%;
	background-color: rgba(0, 0, 0, 1.0);
}

.video-heading{
	color: rgb(0, 0, 0);
	text-align: center;
}

.playlist{
	display: flex;
	flex-direction: column;
	height: 300px;
	width: 100%;
	/*background-color: var(--container-bg);*/
	box-shadow: var(--box-shadow);
	overflow-y: scroll;
}
/*
.playlist::-webkit-scrollbar{
	width: 7px;
	color: red;
}
/*
.playlist::-webkit-scrollbar-track{
	background-color: rgba(2, 4, 31, 0.4);
}

/*
.playlist::-webkit-scrollbar-thumb{
	background-color: rgba(0, 0, 0, .5);
	margin: 3px;
	border-radius: 40px;
}
*/
.playlistVideoContainer{
	margin: 0px 5px 5px 5px;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.9);
}

.playlistVideoContainer:first-child{
	margin-top: 5px;
}

.active-video{
	background-color: rgba(0, 0, 0, 0.5);
	border: 2px solid red;
}

.playlist video{
	width: 100%;
	padding: 3px;
}

.playlistVideoContainer h3{
	color: white;
	text-align: center;
}

/* End Event Video Playlist Code */


/* Stall booking page */
.stall-booking{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	background-color: white;
}

.stall-booking-content{
	text-align: center;
	order: 2;
}

.stall-booking-content h2{
	color: rgb(184, 133, 6);
}


.stall-booking-content p{
	width: 95%;
	margin: 0 auto;
	margin-bottom: 7px;
}

.a-color{
	color: rgb(80, 204, 37);
	font-size: 20px;
}

.stall-booking-image img{
	width: 100%;
	object-fit: contain;

}

.stall-booking-content button{
	background-color: gray;
	color: white;
	padding: 10px 20px;
	outline: none;
	border: none;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 7px;
}

.stall-booking-content button:hover{
	color: red;
	opacity: 0.8;
	transition: 150ms ease-in-out;
}

.Rules{
	text-align: left;
}

.Rules h3{
	width: 95%;
	margin: 0 auto;
}

/* End EStall booking page */


/* Contact Us page*/
.contact-us{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	padding: 5px 5px;
	margin-bottom: 20px;
	background-color: var(--container-bg);
	box-shadow: var(--box-shadow);
}

.contact-us-content{
	width: 100%;
	order: 1;
	padding: 8px;
	/*background-color: rgb(163, 157, 157);*/
}

.contact-us-content h2{
	font-size: 30px;
	color: rgb(255, 19, 10);
	margin-bottom: 2px;
}

.contact-us-content h3{
	font-size: 25px;
	color: rgb(189, 57, 57);
	margin-bottom: 2px;
}

.contact-us-content p{
	margin-bottom: 4px;
}

.contact-us-content a{
	color: rgb(0, 0, 0);
}

.contact-us-image img{
	border: none;
}
/* End of Contact US page */
/* Footer */

footer{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #000;
	padding: 30px 15px;/*For big devices 40px*/
}

.footer-details{
	width: 90%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-details li{
	padding: 0 10px;/*For big Devices 30px*/
	text-align: center;
	margin-bottom: 20px;/*For big devices 30px*/
}

.footer-details li h3{
	font-size: 23px;
	color: rgb(237, 138, 0);
	margin-bottom: 10px;
}

.Social-media a{    /* Socail Media Icons */
	padding: 5px;
}

.footer-details li h5{
	font-size: 20px;
	color: rgb(196, 165, 82);
}
.footer-details li p{
	font-size: 17px;
	margin: 5px 0px;
}
.mail-loca{
	font-size: 17px; 
	color: white;
}

footer p{
	font-size: 17px;
}

/* Media Queres For Tablets and Desktop */


@media(min-width: 1024px){
	.header-container{
		flex-direction: row;
		justify-content: space-between;
		width: 90%;
		margin: 20px 0;/*It was 30px before*/
		align-items: center;
	}
	#company_logo{
		height: 80px;
	    border: none;
		width: auto;
	}
    /* Hamburger navigation */
    .nav-toggle{
    	display: none;
    }
    nav{
    	height: auto;
    	width: auto;
    }
    /* End of Hamburger navigation/
	/* Navigation tag */
	nav ul{
		flex-direction: row;
	}

	nav ul li{
		padding: 0 4px;
		margin: 0 15px;
	}

	nav ul li:first-child{
		margin-left: 0;
	} 

	nav ul li:last-child{
		margin-right: 0;
	}

	ul li a{
		font-size: 23px;
	}
    /* End of Navigation */

    /* Banner Content */
    .banner-pic video{
		object-fit: fill;
	}


	.banner-container h1{
		font-size: 50px;
		margin-top: 200px;/* To push the banner content down */
	}

	.sub-heading{
		font-size: 35px;
	}
    
    .sub-para{
    	font-size: 25px;
    }

	.down-icon{
		width: 15%;
		margin: 0 auto;
	}

    /* End of Banner Content */

    /* About Us in the Home Page */
	.about-us{
		flex-direction: row;
		padding-left: 10px;
	}

	.about-us-content{
		width: 70%;
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 10px; 
	}
  
	.about-us-image{
		width: 40%;
		order: 2;
	}
	.about-us-image img{
		height: 100%;
	}
/* End In the Home Page */


/* Menu Container in the homepage */
	.menu-container{
		width: 90%;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px;
	}

	.menu-container h2{
		text-align: center;
		margin-bottom: 10px;
	}

	.sub-menu-container{
		flex-direction: row;
		width: 100%;
		flex-wrap: wrap;
		align-items: baseline;/*Line items*/
    }

	.sub-menu-container li{
		flex-basis: 33%;
		flex-grow: 1;
		text-align: center;
	}

	.sub-menu-container img{
		padding: 3px;
		height: 200px;
		border: none;
		transition: all 150mm ease-in-out;
	}

	.sub-menu-container h3{
		font-size: 25px;
	}

	.sub-menu-container p{
		padding-bottom: 5px;
		}
	/* End In the Home Page Menu */

	.additional-info-2 img{
		height: 400px;
	}
    .additional-info-1 p{
    	font-size: 26px;
    }
	/* Menu page */
	.menu-page-container{
		flex-direction: row;
		width: 90%;
		flex-wrap: wrap;
		justify-content: space-between;
		text-transform: uppercase;
		justify-content: baseline;
	}

	.menu-page-container-zigzag-mixed-grill,
	.menu-page-container-zaggy-wings-meals,
	.menu-page-container-trotters-meal,
	.menu-page-container-trotters-only,
	.menu-page-container-starches-sides,
	.menu-page-container-wings-only{
		flex-basis: 30%;
	}

	.menu-page-container h3,
	.menu-page-container p{
		padding: 0 10px;
	}

	/* End Menu page */

	/* Gallery page*/
	.gallery-container{
		flex-direction: column;
		align-items: center;
		width: 90%;
		margin-bottom: 20px;
	}

	.gallery-container h2{
		text-align: center;
		margin: 10px 0;
	}

	.sub-gallery-container{
		flex-direction: row;
		flex-wrap: wrap;
		align-items: baseline;/*Line items*/
		width: 100%;
		padding-right: 10px;
	}

	.sub-gallery-container li{
		flex-basis: 33%;
		flex-grow: 1;
		width: 100%;
		padding-left: 10px;
		padding-bottom: 10px;
	}

	.sub-gallery-container img{
		height: 200px;
		width: 99%;
		padding: 0;
		border: none;
		transition: 200ms ease-in-out;
	}
	.sub-gallery-container img:hover{
		transform: scale(1.05);
	}
	/* End of Gallery page */


	/* Gallery Events page*/
	.gallery-events-container{
		flex-direction: column;
		align-items: center;
		width: 90%;
		margin-bottom: 20px;
	}

	.gallery-events-container h2{
		text-align: center;
		margin: 10px 0;
	}

	.sub-gallery-events-container{
		flex-direction: row;
		flex-wrap: wrap;
		align-items: baseline;/*Line items*/
		width: 100%;
		padding-right: 10px;
	}

	.sub-gallery-events-container li{
		flex-basis: 33%;
		flex-grow: 1;
		width: 100%;
		padding-left: 10px;
		padding-bottom: 10px;
	}

	.sub-gallery-events-container img{
		width: 99%;
		object-position: 0% 10%;
		padding: 0;
		border: none;
		/*transition: 200ms ease-in-out;*/
	}
	/*
	.sub-gallery-events-container img:hover{
		transform: scale(1.05);
	}
	*/
	/* End of Gallery Events page */

	/* End Video Playlist Code */

	.video-event-container{
		flex-direction: row;
	}

	.video-container video{
		height: 400px;
		width: 100%;
		background-color: rgba(0, 0, 0, 1.0);
	}
	.video-heading{
		color: rgb(0, 0, 0);
	}

	.playlist{
		display: flex;
		flex-direction: column;
		height: 429px;
		width: 25%;
		/*background-color: var(--container-bg);*/
		box-shadow: var(--box-shadow);
		margin-left: 8px;
		overflow-y: scroll;
	}
	/*
	.playlist::-webkit-scrollbar{
		width: 7px;
		color: red;
	}
	/*
	.playlist::-webkit-scrollbar-track{
		background-color: rgba(2, 4, 31, 0.4);
	}

	/*
	.playlist::-webkit-scrollbar-thumb{
		background-color: rgba(0, 0, 0, .5);
		margin: 3px;
		border-radius: 40px;
	}
	*/
	.playlistVideoContainer{
		margin: 0px 5px 5px 5px;
		border-radius: 8px;
		background-color: rgba(0, 0, 0, 0.9);
	}

	.playlistVideoContainer:first-child{
		margin-top: 5px;
	}

	.active-video{
		background-color: rgba(0, 0, 0, 0.5);
		border: 2px solid red;
	}

	.playlist video{
		width: 100%;
		padding: 3px;
	}
	.playlistVideoContainer h3{
		font-size: 25px;
	}

	/* End Event Video Playlist Code */

	/* Stall booking page */
	.stall-booking{
		flex-direction: row;
		width: 90%;
	}

	.stall-booking-content{
		text-align: center;
		order: 2;
		width: 50%;
	}

	.stall-booking-content h2{
		font-size: 30px;
	}

	.stall-booking-content p{
		width: 95%;
		font-size: 19px;
	}
	.a-color{
		font-size: 19px;
	}

	.stall-booking-image{
		width: 50%;
	}
	.stall-booking-image img{
		height: auto;
		width: 100%;
    }

/* End Stall booking page */


	/* Contact Us page*/
	.contact-us{
		flex-direction: row;

	}

	.contact-us-content{
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.contact-us-image{
		width: 100%;
	}

	.contact-us-content h2{
		font-size: 30px;
		padding-left: 20px;
	}

	.contact-us-content h3{
		font-size: 25px;
		padding-left: 23px;
	}

	.contact-us-content p{
		padding-left: 23px;
	}
	.contact-us-content a{
		font-size: 19px;
	}

	.contact-us-image{
		height: 300px;
		width: 100%;
	}

	.contact-us-image img{
		height: 100%;
		object-fit: fill;
		border: none;
	}

	.footer-details{
		flex-direction: row;
		width: 100%;
	}

	.footer-details li{
		width: 100%;
	}
}

/* End */
/* This was created By Ntokozo for more information you can contact me on my gmail account - ntokozo.siprise@gmail.com */



