html {
    font-size: 22px;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #121d14; /* Deep forest green */
}

div.BackNav {
    text-align: right;
}

/* Headings */
h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #e2f3e4; /* Light mint */
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 10px 0;
    padding: 6px 0;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2, h3, h4, h5 {
    display: block;
    margin: 1em 0;
    font-weight: bold;
    color: #cfead3; /* Soft light green */
}

h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
h5 { font-size: 0.83em; }

hr {
    display: block;
    margin: 0.5em auto;
    border-style: inset;
    border-width: 1px;
    border-color: #2d4433; /* Muted green-gray border */
}

p, li {
    display: block;
    margin: 1em 0;
    color: #d6eddc; /* Light text with a green tint */
}

a {
    color: #e0f5e7;
    text-decoration: none;
}

a:visited {
    color: #a5cdb4;
}

a:hover,
a:active {
    color: #6FCF97; /* Brighter green for emphasis */
}

/* Image Container */
.menuphoto {
    padding: 10px;
    background-color: #1c2a20; /* Dark green-gray */
    border-radius: 4px;
    overflow: visible;
    text-align: center;
}

.menuphoto img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0.5rem;
}

/* Text under images */
.menuphoto p {
    margin: 0;
    color: #cfead3;
    font-size: 1rem;
    overflow: visible;
    white-space: normal;
}

/* Gallery Layout */
.menugallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.2rem;
    padding: 1rem;
    overflow: visible;
}

@media (max-width: 768px) {
    .menugallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
