:root {
    /* Header Styles */
    --header-bg: #9DAF51;
    --header-color: #464179;
    --header-font: "Times New Roman", Georgia, serif;
    --header-height: 60px;
    --header-max-width: 1100px;
    --header-padding: 1em;
    --header-margin: 8px auto;
    --header-margin-top: 5px;
    --header-margin-bottom: 5px;
    --header-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --header-border-radius: 8px;
    --header-font-weight: 600;
    --header-line-height: 1.2;
    --header-font-size: 1.5em;
    --header-flex: 2 2 10%;
    --header-display: flex;
    --header-width: 100%;
    --header-h2-color: #fff;
    --header-h2-font-size: .6 em;
    --header-h2-font-family: "PT Sans", sans-serif;
    --header-h2-font-weight: 400;
    --header-h2-font-style: italic;
    /* Menu Page Section Styles */
    --menu-page-section-h2-color: #666;
    --menu-page-section-h2-font-family: "PT Sans", sans-serif;
}

.pt-sans-regular-italic {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

:root {
    --footer-bg: #333;
    --footer-color: white;
}

h1 {
    margin: 0;
}

/* Base styles for all devices */
body {
    margin: 1em;
    padding: 0;
    font-family: system-ui, sans-serif;
    background: #dddddd;
    color: #393938;
    line-height: 1.6;
}

main {
    display: block;
    background: #f3f3f3;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 1050px;
    margin: 5px auto;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive typography */
h1,
h2,
h3 {
    color: #1B3F54;
    font-weight: 400;
    line-height: 1.2;
}

/* Images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Media Queries for Responsive Design */

/* Mobile styles (default for small screens) */
body {
    margin: .2em;
    font-size: 14px;
    padding: 0 0.5em;
}

main {
    padding: 1em;
}

/* Menu Formatting */
.mega-menu a {
    color: #1b3f54;
    text-decoration: none;
}

.mega-menu a:hover {
    font-weight: bold;
    color: #464179;
    text-decoration: none;
}

.mega-menu h2 {
    margin-top: .5em;
    margin-bottom: 0;
}

.mega-menu h2+h3 {
    font-size: 1.2em;
    margin: 0 10px;
}

/* Tablets (portrait and landscape, 600px and up) */
@media screen and (min-width: 600px) {
    body {
        margin: .4em;
    }

    main {
        padding: 2em;
    }
}

/* Desktop (900px and up) */
@media screen and (min-width: 900px) {
    body {
        font-size: 1.1rem;
    }

    main {
        padding: 1em 3em;
    }
}

/* Large desktop (1200px and up) */
@media screen and (min-width: 1200px) {

    main {
        padding: 1em auto;
    }
}

/* Print styles */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    main {
        box-shadow: none;
        border-radius: 0;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
}

/* Menu Pages Styles */

.menu-page {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 1em;
}

.menu-page h1 {
    font-size: 2em;
    font-family: "Georgia, 'Times New Roman', Times, serif";
    font-weight: 700;
    color: #464179;
    margin-bottom: 0.5em;
}

.menu-section {
    margin-left: 3em;
    margin-bottom: 1.5em;
    /* Adds space between sections */
}

.menu-section h2 {
    font-size: 1.5em;
    font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", FreeSans, sans-serif;
    font-weight: bold;
    color: var(--menu-page-section-h2-color);
    text-decoration: none;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 0.5em;
}

.menu-article {
    display: flex;
    align-items: center;
    /* Optional: aligns items vertically in the center */
    gap: 1rem;
    /* Optional: adds space between h3 and h4 */
}