@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200;300;400;500;600;700&display=swap');

:root {
    --color-bg: darkslategray;
    --color-link-text: black;
    --color-link-text-hover: cornsilk;
    --color-aside-bg: darkseagreen;
    --color-footer-bg: darkseagreen;
    --color-top-nav-bg: darkseagreen;
    --color-top-nav-bg-hover: burlywood;
    --color-top-nav-bg-active: darkgray;
    --color-box-shadow: black;
    --color-aside-h1: darkslategray;
    --color-section-h1: darkseagreen;
    --color-section-insets-bg: burlywood;
    --color-section-h1-insets: cornsilk;
    --color-closed: red;
    --color-open: green;
    --color-closing-soon: yellow;
    --color-section-bg: cornsilk;
}

html {
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

body {
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
}

header {
    padding: 80px 0 0 0;
}

header div div div img {
    width: inherit;
}

.container {

}

nav {
    padding: 10px;
}

#topnavigation {
    list-style: none;
}

#topnavigation li {
    display: inline;
    margin: 20px 0;
}

#gobigred {
    color: red;
}

#googlecalendar {
    width: inherit;
    height: 600px;
}

#topnavigation li a {
    text-decoration: none;
    color: var(--color-link-text);
    padding: 1em 1.25em;
    margin: 1em .5em;
    background-color: var(--color-top-nav-bg);
    border-radius: 10px 20px;
    box-shadow: 3px 3px 3px 3px var(--color-box-shadow);
}

#topnavigation li a:hover {
    text-decoration: none;
    color: var(--color-link-text-hover);
    padding: 1em 1.25em;
    margin: 1em .5em;
    background-color: var(--color-top-nav-bg-hover);
    border-radius: 10px 20px;
    box-shadow: 3px 3px 3px 3px var(--color-box-shadow);
}

#topnavigation li a:active {
    text-decoration: none;
    color: black;
    padding: 1em 1.25em;
    margin: 1em .5em;
    background-color: var(--color-top-nav-bg-active);
    border-radius: 10px 20px;
    box-shadow: 3px 3px 3px 3px var(--color-box-shadow);
}

.aside {
    background-color: var(--color-aside-bg);
    padding: 20px 0 20px 0;
    text-align: center;
}

.aside h1 {
    color: var(--color-aside-h1);
    font-size: 1.5em;
    text-align: center;
    margin: 1em;
}

.aside table {
    caption-side: top;
}

.aside p {
    margin: .5em;
    text-align: justify;
}

.day {
    font-weight: bold;
}

.green {
    color: var(--color-open);
    font-style: italic;
    font-size: 1.5em;
}

.red {
    color: var(--color-closed);
    font-style: italic;
    font-size: 1.5em;
}

.yellow {
    color: var(--color-closing-soon);
    font-style: italic;
    font-size: 1.5em;
}

.rightalign {
    text-align: right;
    width: 30%
}

.rightalign2 {
    text-align: right;
    font-weight: bold;
}

#pieprices, #bytheslice{
    white-space: nowrap;
    border-collapse: collapse;
}

#pieprices tr td, #bytheslice tr td {
    padding: .25em .75em;
    width: 135px;
}

fieldset {
    border: 1px solid darkslategray;
    margin: 0 1em;
}

#sectioncenter {
    text-align: center;
}

.section {
    background-color: var(--color-section-bg);
}

.section img {
    margin: 20px 0;
    padding: 0 20px;
    width: inherit;
}

.section h1 {
    color: var(--color-section-h1);
    margin: 1em 0 .5em 0;
    text-align: center;
    font-size: 2em;
}

.section h3 {
    color: darkslategray;
    text-align: center;
    font-size: 1.25em;
}

.section h4 {
    color: darkslategray;
    text-align: center;
    font-size: 1em;
}

.salads dl {
    margin-top: 1em;
}

.section dt {
    margin-left: 2em;
}

.section dd {
    margin-left: 4em;
}

.section table dt, .col-lg-6 dt  {
    margin-left: 0;
}

.section table dd, .col-lg-6 dd, .col-lg-5 dd {
    margin-left: 1em;
}

.bold {
    font-weight: bold;
}

.centerdl dt, .centerdl dd {
    text-align: center;
    margin-left: 0;
}

.menubackground {
    background-color: burlywood;
    border-radius: 20px;
}

.menubackground h1 {
    color: cornsilk;
}

.menubackground p {
    margin-bottom: 1em;
}

.sides dd {
    margin-bottom: 1em;
}

ul {
    list-style: circle;
}

.piecolumn {
    text-align: center;
}

i {
    padding: 0 2px;
    background-color: white;
    border: 1px solid darkslategray;
    border-radius: 6px 0 0 6px;
    background-color: darkseagreen;
}

.aside button {
    margin: 5px;
    color: darkslategray;
    background-color: darkseagreen;
}

.aside button:hover {
    color: cornsilk;
}

.aside .selected {
    color: cornsilk;
}

#contactform .col-lg-3, #jobapplicationform .col-form-label {
    text-align: right;
    font-weight: bold;
    
}

.fa {
    font-weight: none;
    text-align: center;
}

.section a {
    color: darkseagreen;
}

.section a:hover {
    text-decoration: none;
    color: burlywood;
}

form button {
    background-color: darkseagreen;
    color: darkslategray;
}

form button:hover {
    background-color: burlywood;
}

.footer {
    padding: 10px 0;
    text-align: center;
    background-color: var(--color-footer-bg)
}

.footer a {
    color: var(--color-link-text);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-link-text-hover);
}

.footer a:active {
    color: var(--color-link-text);
}

.alert {
    margin: 10px auto;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    color: green;
}

@media print {
    header {
        visibility: hidden;
        height: 0;
    }
    
    footer {
        visibility: hidden;
        height: 0;
    }
    
    .col-lg-7 {
        width: 58.3333%;
    }
    
    .col-lg-5 {
        width: 41.666%;
    }
    
    .col-12 {
        width: 100%;
    }
    
    .col-lg-6, .col-6 {
        width: 50%;
    }
    
    .col-lg-3 {
        width: 25%;
    }
    
    .col-lg-9 {
        width: 75%;
    }
    
    .col-lg-4 {
        width: 33.33%;
    }
    
    .col-lg-8 {
        width: 66.667%
    }
}