*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*  outline: 3px solid lime; */
}

:root {
    interpolate-size: allow-keywords;
}

html {
    /*background-image: url("../img/barnwood-gray.jpg");
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    padding-bottom: 0.5em;
    */
    background:
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.7)),
        url("../img/barnwood-red.jpg");
    background-size: cover;
    color: #000; /* Text remains 100% solid */
}

.el {
    color:darkblue;
    text-align: center;
    font-size: 5vw;
    font-weight: 900;
    font-stretch: expanded;
    padding-top: 0.55em;
}

body {
}

a:hover {
    color: darkgray;
    outline: 2px solid lightgray;
}

/*a[href$=".pdf"]::after {
    content: " (pdf)";
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
    vertical-align: super;
    margin-left: 4px;
}*/

a:focus-visable {
    outline: 3px solid black;
    outline-offset: 2px;
}

.Navigation {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    color:black;
    font-family: system-ui, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    text-decoration: none;
    list-style: none;
}

.Navigation li {
    flex-grow: 1;
    flex-shrink: 1;
}

.container {
    min-height: 300px;
    display: flex;
    grid-template-columns: 0.5fr 3fr 0.5fr;
    grid-auto-rows: minmax(100px, auto);
}

.box {
    /*background-color: burlywood;*/
    font-size: 1.3rem;
    padding: 0.5rem;
    justify-content: center;
    min-height: 200px;
    display: grid
    gap: 1rem
}

/*.smallbox {
    background-color: bisque;
    color: black;
    font-size: 1.3rem;
    padding: 0.5rem;
    justify-content: center;
}*/

.bigbox {
    grid-column-start: 2;
    /*background-color: bisque;*/
    color: black;
    font-size: 1.3rem;
    padding: 0.5rem;
    justify-content: center;
    min-height: 200px;
}

.responsive {
    width: 100%;
    height: auto;
}

figcaption {
    font-size: 0.2rem;
}

article {
    font-size: 1.4rem;
    margin: 4rem;
    color: black;
    font-weight: 900;
}

article ul {
    text-decoration: none;
    list-style: none;
}

.hours {
    text-align: center;
}

summary {
    list-style-position: outside;
}

summary::marker {
    font-size: 0.9rem;
    color: gray;
}

details li {
    padding-block: 0.5rem;
    display: block;
    font-weight: 600;
}

footer {
    text-align: center;
}

/* Target the paragraphs and aside within your #about section */
#about p,
#about aside {
    margin-bottom: 1.5rem; /* Adjust this value for more/less space */
}

/* Remove margin from the last element so it doesn't create extra bottom space */
#about > *:last-child {
    margin-bottom: 0;
}

/* Optional: Style the summary to look professional */
summary h3 {
    display: inline; /* Keeps the heading on the same line as the arrow */
    cursor: pointer;
    font-size: 1.1rem;
}
