﻿body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    display: flex;
    flex-direction: column; /* CRITICAL: Stack elements vertically */
    align-items: center; /* Keeps the 900px wide content centered on screen */
    justify-content: flex-start; /* Aligns content to the top of the page */
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    margin: 0px auto;
    padding: 2px;
    color: #111111;
}

h2 {
    color: #053D70;
    margin: 0px auto;
    padding: 2px;
}

table.PageHeader {
    width: 100%;
}

table.MainBody {
    width: 100%;
}

.FooterContent {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    margin-left: 20px;
}

section.hero {
    background: #f7f3f0;
    padding: 30px 10px;
    text-align: center;
}

section.section {
    padding: 20px 0;
}

section.highlight {
    background: #fafafa;
}
div.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px 10px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: auto;
}

section.cta {
    background: #8B2C1F;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

div.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cta h2 {
    color: white;
}

.updated {
    font-style: italic;
    color: #555555;
    margin-bottom: 30px;
}

td.Header_CartArea {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
}
div.ButtonArea {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 10px;
    padding: 14px;
    justify-content: center;
}
span.badge {
    display: inline-block;
    color: #B56600;
    padding: 6px 12px;
    /*border-radius: 999px;*/
    font-weight: 700;
    letter-spacing: .3px;
    font-size: 32px;
    font-style:italic;
}


td.Menu_Area {
    
}

hr.Footer {
    border: none;
    height: 2px;
    background-color: #EE5023;
}

.RoundButton {
    display: inline-block;
    padding: 0.5em 1.25em;
    align-items: center;
    background-color: #E58400;
    font-size: 1.25rem; /* scalable */
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 25px;
    outline: none;
    border: 1px solid orange;
    cursor:pointer;
}

    .RoundButton:hover {
        background-color: #C46800; 
    }

input.ImageButton {
    display: inline-block;
    padding: 0.5em 1.25em;
    align-items: center;
    width: 80px;
    height: 80px;
}

img.Logo {
    height: 120px;
    width: 120px;
}
.hidden, .Hidden {
    display: none !important;
}