/* Variables */
:root{
    --orange: #f16d25;
    --tan: #d9d8a0;
    --hover: #f57f3f;
    --altorang: #ff7515;
}

/* Reset */
body, p, a, ul, li{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
li {
    list-style-type: none;
}

/* Base */
body{
    background-color: var(--tan);
    overflow-x: hidden;
    font-family: 'JosefinSans';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Nav Bar */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: var(--orange);
    flex-direction: column;
}

.site-nav ul {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav ul li a {
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 'JosefinSans';
    font-size: 1.5rem;
    transition: color 0.2s;
}

.site-nav ul li a:hover {
    color: rgb(143, 64, 0);
}

.site-nav .banner {
    height: 100px;
    width: auto;
}

.construction {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:10px
}

.construction img {
    height: auto;
    width: 25%;
}

/* Home */

.info-section {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: white;
    border-radius: 30px;
    border-color: var(--orange);
    border-width: 8px;
    border-style: solid;
    padding: .5rem;
    margin: 1.5rem;
    text-align: center;
}

.home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.intro p {
    font-size: 2rem;
}

.thumbnail {
    padding: 10px;
    height: auto;
    width: 30rem;
}

/* Hours Table */
.hours-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.hours-child {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: white;
    border-radius: 30px;
    border-color: var(--orange);
    border-width: 8px;
    border-style: solid;
    padding: 1.5rem;
    text-align: center;
}

.hours-row {
    padding: 10px;
}

.day {
    font-size: 1.3rem;
}

.hours-table {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--orange);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
}

footer .grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

footer .address {
    color: rgb(0, 0, 0);
    font-family: 'JosefinSans';
    font-size: 0.95rem;
}

footer img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

footer img:hover {
    opacity: 1;
}

/* Fonts */
@font-face{
    font-family: 'JosefinSans';
    src: url("/assets/JosefinSans.ttf")
}

.title {
    font-size: 2em;
    font-weight: bold;
    color: var(--altorang);
    padding: .5rem;
}

/* Mobile */
@media screen and (max-width: 600px) {
    body {
        font-size: 15px;
    }
    .site-nav ul li a {
        font-size: 1.0rem;
    }

    .site-nav .banner {
        height: 70px;
    }
    
    .construction img {
        height: auto;
        width: 70%;
    }

    .day {
        font-size: 1.0rem;
    }

    .intro p {
    font-size: 1.25rem
    }

    .thumbnail {
    height: auto;
    width: 15rem;
    }
}