/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/*CSS Reset*/
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;
}
/*End of CSS Reset*/

#top-bar {
    display: flex;
    background-color: black;
    justify-content: space-between;
    padding: 5px 15px;
}

header {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    box-shadow: 0px 15px 20px 0px rgb(19, 19, 19);
}

#top-bar h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    color: white;
    align-self: center;
    margin: 15px;
    width: 75%;
}

header aside {
    display: flex;
    font-size: 30px;
    align-self: center;
}

nav {
    background-color: black;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding-bottom: 0px;
    padding-right: 5%;
    height: 0px;
    transition: 0.25s;
}

nav a {
    border-width: 0.5px 1px;
    border-style: solid;
    border-color: rgb(207, 207, 207);
    width: 50%;
    text-align: left;
    color: white;
    text-decoration: none;
    height: 35px;
    align-self: flex-end;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    display: none;
    padding-top: 15px;
    padding-left: 3%;
}

body {
    background-color: rgb(19, 19, 19);
    color: lightgray;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

section {
    background-color: rgb(46, 46, 46);
    margin: 25px 15px;
    padding: 15px;
    border-radius: 5px;
}

h2 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
}

footer {
    background-color: black;
    text-align: center;
    position: relative;
    bottom: 0px;
    width: 100%;
}

footer i {
    margin-bottom: 10px;
    font-size: 25px;
    padding-top: 15px;
}

footer p {
    font-size: 13px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px 0 15px 0;
}

/*Sections containing centered media*/
#media-section {
    text-align: center;
}

section img {
    width: 100%;
}

li {
    margin-left: 15px
}

a i {
    padding-right: 5px;
}

#index-heading {
    display: flex;
    background-color: white;
    border-radius: 0px;
    margin: 105px 0px 25px 0px;
    box-shadow: inset 0px 0px 8px 8px rgb(19, 19, 19);
    background-image: url("images/wings.png");
    background-size: 100% 150%;
    background-position-y: -15px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

#cooks-heading {
    display: flex;
    background-color: white;
    border-radius: 0px;
    margin: 105px 0px 25px 0px;
    box-shadow: inset 0px 0px 8px 8px rgb(19, 19, 19);
    background-image: url("images/home.png");
    background-size: 100% 150%;
    background-position-y: -15px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

#schedule-heading {
    display: flex;
    background-color: white;
    border-radius: 0px;
    margin: 105px 0px 25px 0px;
    box-shadow: inset 0px 0px 8px 8px rgb(19, 19, 19);
    background-image: url("images/schedule.png");
    background-size: 100% 150%;
    background-position-y: -15px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

#contact-heading {
    display: flex;
    background-color: white;
    border-radius: 0px;
    margin: 105px 0px 25px 0px;
    box-shadow: inset 0px 0px 8px 8px rgb(19, 19, 19);
    background-image: url("images/contact.png");
    background-size: 100% 150%;
    background-position-y: -15px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.heading h1 {
    font-size: 35px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 0px 0px 15px black;
    color: white;
}

iframe {
    width: 100%;
}

td {
    padding-right: 15px;
}

#contact-section p {
    padding-left: 5%;
}

#contact-section span {
    color: rgb(248, 60, 60);
    padding-left: 5%;
    font-size: 15px;
}

#contact-section p span {
    color: rgb(248, 60, 60);
    font-size: 15px;
    padding-left: 5px;
}

input, textarea {
    border: 0px;
    width: 90%;
    height: 30px;
    margin: 5px 0;
    background-color: rgb(80, 80, 80);
    border-radius: 5px;
    padding-left: 10px;
    color: lightgray;
    font-size: 16px;
}

#send-button {
    margin-left: 10px;
    background-color: rgb(173, 47, 25);
    margin-top: 35px;
    margin-bottom: 15px;
}

#back-button {
    background-color: rgb(173, 47, 25);
    margin: 20px 0 5px 0;
    border: none;
    border-radius: 5px;
    width: 50%;
    height: 25px;
    font-size: 15px;
    color: lightgray;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 25%;
}

/* Honeypot to block botted emails */
#address {
    display: none;
}