@charset "utf-8";




/*  =======================================================================   *
    TAGS
*   =======================================================================  */
/*  - Remove margins and padding from all elements
    - Set 'border-box' for "box-sizing"
    - Set default styles for elements
*   =======================================================================  */

* {
	margin: 0;
	padding: 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
	color: white;
	font-family: 'Open Sans', sans-serif;
	background-color: black;
}

p {
  font-family: 'Trebuchet MS', sans-serif;
}

li {
	list-style: none;
}

a {
	color: white;
	text-decoration: none;
}
/*  END: TAGS  ============================================================  */
/*  =======================================================================  */






/*  =======================================================================   *
    TOP NAVIGATION | LOGO | BRANDING
*   =======================================================================  */
/*  The header includes the top & bottom nav as well as the hero element.
*   =======================================================================  */

header {
	height: 100vh;  /*  "header" will cover entire viewport */
}

nav {
    max-width: 1920px;
}

#nav-top {
	position: fixed;  /*  affix #nav-top to the top of the viewport  */
	top: 0;
	left: auto;
	
	height: 100px;
	width: 100%;
    
	background-color: black;  /*  can be removed later  */
	background-image: url("../images/backgrounds/navbar.jpg");
	background-position: center;
	background-size: cover;
    
    z-index: 1;
}

/*  container for logo+brand, navigation, & order button  */
.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	height: inherit;  /*  gets height from #nav-top so "align-items" will work  */
	
	margin-left: 5%;
	margin-right: 5%;
}

.logo_brand {
	height: 50px;
}




/*  ================================  *
    TOP NAVIGATION MENU & LINKS
*   ===================================================  */
/*  Mobile navigation menu shown by default for tablet 
    & mobile devices
*   ===================================================  */

/*  .nav-menu  --------------------  */
.nav-menu {
    position: fixed;
    right: -100%;
    top: 100px;

    flex-direction: column;
    gap: 5px;

    width: 100%;

    transition: 0.5s;

    text-align: center;
    background-color: rgba(0,0,0,0.75);
}

.nav-menu.active {
    right: 0;
}

@media (min-width: 768px){
    .nav-menu {
        position: initial;
        display: flex;
        flex-direction: initial;
        /*	justify-content: space-between;*/
        /*	align-items: center;*/
    }  
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
}  /*  END: .nav-menu  ------------  */


/*  .nav-item  --------------------  */
.nav-item {
    margin: 10px 0;
}

@media (min-width: 768px){
    .nav-item {
        margin: 0;
    }
}  /*  END: .nav-item  ------------  */


/*  .nav-link  --------------------  */
.nav-link {
	font-size: 20px;
	font-weight: bold;
    
    transition: 0.7s ease;
}

.nav-link:hover {
	color: #C53400;  /* Dark Orange  */
}  /*  END: .nav-link  ------------  */


/*  .divider  ---------------------  */
.divider {
	display: none;
}

@media (min-width: 768px){
    .divider {
        display: initial;
    }
}  /*  END: .divider  -------------  */
/*  ===================================================  */




/*  ================================  *
    HAMBURGER MENU BUTTON
*   ===================================================  */
/*  Mobile navigation menu shown by default for 
    tablet & mobile devices
*   ===================================================  */

/*  .hamburger  --------------------  */
/*  container for the hamburger menu  */
.hamburger {
    display: block;
	cursor: pointer;
}

/*  '.active' class is added to the '.hamburger' element by the script  */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(315deg);
    background-color: #00D10E;	/*  Green  */
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-315deg);
    background-color: #00D10E;	/*  Green  */
}

@media (min-width: 768px) {
    .hamburger {
        display: none;  /*  hide on desktop  */
    }
}  /*  END: .hamburger  -----------  */


/*  bars that make up the hamburger menu  */
.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #C53400;  /* Dark Orange  */
}
/*   ==================================================  */




/*  ================================  *
    ORDER BUTTON & SOCIAL MEDIA LINKS
*   ===================================================  */
/*  Hidden by default for tablet and mobile devices
*   ===================================================  */

/*  .order-button  ----------------  */
.order-button {
	display: none;
	padding: 10px;
	color: black;
	background-color: #00D10E;	/*  Green  */
	
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
    
	border: none;
    border-radius: 5px;
    cursor: pointer;
    
    transition: all 0.3s ease-in-out;
}

.order-button:hover {
    background-color: #C53400;  /* Dark Orange */
    box-shadow: 0px 0px 5px 3px white;
    
}

@media (min-width: 768px){
	.order-button {
		display: initial;
	}
}  /*  END: .order-button  --------  */


/*  .nav-social  ------------------  */
.nav-social {
	display: none;
    gap: 20px;
}

@media (min-width: 1024px){
	.nav-social {
		display: flex;
	}
}  /*  END: .nav-social  ----------  */

.nav-social i.fab {
    font-size: 18px;
    color: #C53400;  /* Dark Orange */
}

.nav-social i.fab:hover {
    color: #FFFFFF;  /* Dark Orange */
    transition: all 0.3s ease-in-out;
}
/*   ==================================================  */




/*  ===================================================   *
    HERO (ABOUT)
*   ===================================================  */
/*  Styles for the about section
*   ===================================================  */
#about {
    /*	margin-top: -100px;*/
	height: 100vh;
    position: relative;
	
	text-align: center;
	
	background-color: darkslategrey; /* Can be removed later */
	background-image: url("../images/backgrounds/owner.jpg");
	background-position: center;
	background-size: cover;
}

#about-container {
    position: absolute;
    bottom: 0;
    padding: 5%;
    padding-bottom: 140px;
    background-color: rgba(0,0,0,0.75);
    width: 100%;
}

@media(min-width: 768px){
    #about-container {
        bottom: 20%;
        right: 50px;
        padding: 40px;
        width: 50%;
        max-width: 600px;
    }
}

.about-text {
    width: auto;
    max-width: 400px;
    margin: 0 auto;
}

.about-p {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    font-family: 'Open Sans', sans-serif;
}


/*  .about-logo  ------------------  */
.about-logo {
    display: none;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .about-logo {
        display: initial;
    }
}  /*  END: .about-logo  ----------  */


/*  .about-signature  -------------  */
.about-signature {
    display: none;
    margin-top: 20px;
    font-family: 'Homemade Apple', cursive;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: #C53400;  /* Dark Orange */
}

@media (min-width: 768px) {
    .about-signature {
        display: block;
    }
}  /*  END: .about-signature  -----  */
/*   ==================================================  */





/*  ===================================================   *
    BOTTOM NAVIGATION
*   ===================================================  */
/*  Styles for the about section
*   ===================================================  */

#nav-bottom {
	position: fixed;  /*  Affix #nav-bottom" to the bottom of the viewport  */
	bottom: 0;
	left: auto;
	
	display: initial;
    
    height: 100px;
	width: 100%;
	background-color: navy; /* Can be removed later */
    background-image: url("../images/backgrounds/navbar.jpg");
	background-position: center;
	background-size: cover;
    
    z-index: 10;
}

/*  #menu-container  --------------  */
#menu-container {
    height: 100%;
    padding: 20px;
    display: flex;
    align-content: center;
    /*    max-width: 768px;*/
    margin: 0 auto;
    justify-content: space-around;
}

@media (min-width: 768px) {
    #menu-container {
        margin: 0 5%;
    }
}  /*  END:  #menu-container  -----  */


/*  #menu-list  -------------------  */
#menu-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-self: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    gap: 10px 10px;
}

@media (min-width: 768px) {
    #menu-list {
        justify-content: flex-end;
    }
}  /*  END:  #menu-list  ----------  */



#menu-list a {
    color: #C53400;  /* Dark Orange  */
    transition: 0.7s ease;
}

#menu-list a:hover {
    color: #00D10E;  /*  Green  */
}


/*  #menu-list li  ----------------  */
#menu-list li {
    font-size: 13px;
}

@media (min-width: 768px) {
    #menu-list li {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    #menu-list li {
        font-size: 24px;
    }
}  /*  END: #menu-list li  --------  */


.menu-heading {
/*    display: none;*/
    font-family: 'Cabin Sketch', cursive;
    font-size: 40px;
    font-weight: bold;
    
    color: #00D10E;  /* Green */
    transition: all 0.3s ease-in-out;
    
/*    height: 100%;*/
}

.menu-heading:hover {
    color: #FFFFFF;  /* Green */
}


/*  #menu-heading-link  --------  */
#menu-heading-link {
    display: none;
}

@media (min-width: 768px) {
    #menu-heading-link {
        display: flex;
        align-self: center;
    }
}  /*  END: #menu-heading-link  ---- */


/*  .menu-divider  ----------------  */
.menu-divider {
    display: initial;
    color: white;
    font-size: 11px;
}

@media (min-width: 768px) {
    .menu-divider {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .menu-divider {
        font-size: 22px;
    }
}  /*  END: .menu-divider ---------  */


/*  #menu-container .order-button    */
#menu-container .order-button {
    display: initial;
    margin: auto;
    width: 50px;
}

@media (min-width: 768px) {
    #menu-container .order-button {
        display: none;
    }
}  /*  END: #menu-container .order-button  */


#separator {
    display: static;
	height: 100px;
	background-color: aqua;
    background-image: url("../images/backgrounds/navbar.jpg");
	background-position: center;
	background-size: cover;
}
/*   ===================================================  */


/*  END: HEADER  ==========================================================  */
/*  =======================================================================  */





/*  =======================================================================   *
    MAIN
*   =======================================================================  */
/*  The main element contains the all food categories of the menu
*   =======================================================================  */


h1 {
    margin-bottom: 20px;
}

.category-pizza h1,
.category-sandwich h1,
.category-beverage h1 {
    text-align: left;
}

.category-salad h1,
.category-dessert h1 {
    text-align: right;
}

main {
/*    padding: 0 5%;*/
}

.font-cedarville {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 29px;
}

.font-cabin {
    font-family: 'Cabin Sketch', cursive;
    font-size: 36px;
    text-transform: uppercase;
}



.category-pizza,
.category-pizza .menu-item-title {
    color: #C53400;  /* Dark Orange  */
}

.category-salad,
.category-salad .menu-item-title {
   color: #00D10E;  /*  Green  */
}

.category-sandwich,
.category-sandwich .menu-item-title {
    color: #E29200;  /*  Light Orange  */
}

.category-dessert,
.category-dessert .menu-item-title {
    color: #3D9FA7;  /* Blue  */
}

.category-beverage,
.category-beverage .menu-item-title {
    color: #FFFA70;  /* Yellow  */
}





/*  .menu-category  ---------------  */
.menu-category {
    /*    padding: 50px 5% 150px;*/
    height: auto;
    background-color: rgba(34,34,34,1.00);/*  Can be removed later for bkgd img  */
    background-position: center;
    background-size: cover;
}

@media (min-width: 1024px) {
    .menu-category:nth-of-type(even) {
        display: flex;
        flex-direction: row;
    }
    
    .menu-category:nth-of-type(odd) {
        display: flex;
        flex-direction: row-reverse;
    }
}  /*  END: .menu-category  -------  */


.menu-category.category-pizza {
    background-image: url("../images/backgrounds/background-pizza.jpg");
}

.menu-category.category-salad {
    background-image: url("../images/backgrounds/background-salad.jpg");
}

.menu-category.category-sandwich {
    background-image: url("../images/backgrounds/background-sandwich.jpg");
}

.menu-category.category-dessert {
    background-image: url("../images/backgrounds/background-dessert.jpg");
}

.menu-category.category-beverage {
    background-image: url("../images/backgrounds/background-beverage.jpg");
}



.menu-container {
    /*    display: flex;*/
    /*    align-content: center;*/
    padding-top: 50px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 200px;
    width: 100%;
}

.menu-items {
    color: white;
    text-align: center;
    font-family: 'Trebuchet MS', sans-serif;
    /*    column-count: 2;*/
    /*    column-gap: 20px;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
}

/*
@media (min-width: 768px) {
    .menu-items {
        gap: 2%;
    }
}
*/


/*  .menu-item  -------------------  */
.menu-item {
    margin-bottom: 60px;
    /*    width: 23%;*/
    flex-basis: auto;
    max-width: 48%;
}

@media (min-width: 768px) {
    .menu-item {
    /*        width: 46%;*/
        max-width: 23%;
    }
}  /*  END: .menu-item  -----------  */



.menu-img-container {
    background-color: #A6A6A6; /* Can be removed */
    width: 100%;
    height: auto;
}

.menu-item-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-item-description {
    font-size: 13px;
}



.ingredients-pizza {
    background-color: rgba(197,52,0,0.80);  /*  Dark Orange  */
    background-image: url("../images/menu-icons/pizzas.svg");
}

.ingredients-salad {
    background-color: rgba(0,209,14,0.80);  /*  Green  */
    background-image: url("../images/menu-icons/salads.svg");
}

.ingredients-sandwich {
    background-color: rgba(226,146,0,0.80);  /*  Light Orange */
    background-image: url("../images/menu-icons/sandwiches.svg");
}

.ingredients-dessert {
    background-color: rgba(61,159,167,0.80);  /*  Blue  */
    background-image: url("../images/menu-icons/desserts.svg");
}

.ingredients-beverage {
    background-color: rgba(255,250,112,0.80);  /*  Yellow  */
    background-image: url("../images/menu-icons/beverages.svg");
}


/*  .menu-ingredients  ------------  */
.menu-ingredients {
    display: none;
    width: 40%;
    color: black;
    padding-top: 50px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1024px) {
    .menu-ingredients {
        display: initial;
    /*        column-count: 2;*/
    }
}  /*  END: .menu-ingredients -----  */


.ingredients-header {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 30px;
    color: black;
    text-align: center;
    font-family: 'Cabin Sketch', cursive;
}

.ingredients-container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 10px;
    /*    padding: 0 5%;*/
    /*    padding-left:20px;*/
}

.ingredient-category {
    height: inherit;
    width: 35%;

}

.ingredients-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.ingredient-category ul li {
    font-size: 13px;
    font-style: italic;
}






/*  =======================================================================   *
    FOOTER
*   =======================================================================  */
/*  The footer includes branding, social links, address, & business hours
*   =======================================================================  */

footer {
    margin-bottom: 120px;
}

footer p {
    font-family: 'Open Sans', sans-serif;
}


/*  #footer-container  ------------  */
#footer-container {
/*    width: 50%;*/
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    gap: 40px;
}

@media (min-width: 1024px) {
    #footer-container {
        flex-direction: row;
    }
}  /*  END: #footer-container  ----  */


/*  .logo_brand_alt  --------------  */
.logo_brand-alt {
    width: 240px;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .logo_brand-alt {
        width: 300px;
    }
}  /*  END: .logo_brand_alt  ------  */


#footer-social {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}

#footer-social i.fab {
    font-size: 20px;
    color: #C53400;  /* Dark Orange */
    transition: all 0.3s ease-in-out;
}

#footer-social i.fab:hover {
    color: #FFFFFF;
}


/*  address  ----------------------  */
address {
    color: #C53400;  /* Dark Orange */
    font-style: normal;
}


@media (min-width: 1024px) {
    address {
        order: 1;
        margin-top: 80px;
        margin-right: 60px;
        text-align: left;
    }
}  /*  END: address  --------------  */


/*  #footer-hours  ----------------  */
#footer-hours {
    color: #00D10E;  /* Green */
}

@media (min-width: 1024px) {
    #footer-hours {
        order: 3;
        margin-top: 80px;
        margin-left: 60px;
        text-align: right;
    }
}  /*  END: #footer-hours  --------  */


@media (min-width: 1024px) {
    #footer-branding {
        order: 2;
    }
}



/*  #footer-copyright  ------------  */
#footer-copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    text-align: center;
}

@media (min-width: 768px) {
    #footer-copyright {
        flex-direction: row;
        gap: 10px;
    }
}  /*  END: #footer-copyright  ----  */




