@charset "UTF-8";

:root { 
    --gold: #FFD700;
    --red: #d81919;
    --blue: #071f5e;
    --orange: #fa7642;

    --bg1: #e9e4c8;
    --bg-gradient1: radial-gradient(circle, rgba(254,158,2,1) 0%, rgba(255,215,0,1) 100%); 
    --bg2: #f5f3eb;
    --bg-gradient2: linear-gradient(48deg, rgba(250,118,66,1) 0%, rgba(217,68,9,1) 100%);
    --bg3: #ffffcc;
    
    --nav: #635858;
    --nav-hover: #fff;
}

@font-face {
    font-family: broadway;
    src: url("../fonts/broadway.ttf");
    font-display: swap;
}

body {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    background-color: #eee;
    color: #222;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175); }

section { 
    padding-top: 40px;
    padding-bottom: 40px; }

.bg1 { background-color: var(--bg1); }
.text-red { color: var(--red); }

.btn-primary { color: #fff !important; background-image: var(--bg-gradient2) !important; border: none !important; }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { box-shadow: inset 0 .5rem 1rem rgba(0,0,0,.25) !important; color: #000 !important; }
.btn-primary:focus, .btn-primary:active { box-shadow: none !important; color: #fff !important; }

h1, h2, h3, h4, h5, h6 { color: var(--red); }

a, a:hover:not(.alert-link), a:visited, a:active, a:focus, input, input:focus, input:active, textarea, textarea:focus, textarea:active, button:focus, button:active { 
    outline: none;
    box-shadow: none;
    text-shadow: none;
    text-decoration: none; }

strong { font-weight: 600; }

.form-control:focus, .btn:focus { box-shadow: none; }

a:not(.nav-link):not(.close):not(.navbar-brand):not(.alert-link) { 
    color: var(--link);
    transition: all .25s ease; }

a:hover:not(.nav-link):not(.close).not(.alert-link) { color: var(--hover); }

.underline { 
    margin-bottom: 5px;
    position: relative; }

.underline:hover::after  { 
    width: 100%;
    background-color: var(--red); }

.underline:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    content: '.';
    color: transparent;
    background-color: var(--red);
    height: 1px;
    transition: all .15s ease; }

.underline2 { 
    transition: all .2s ease;
    text-decoration: underline; }

.underline2:hover { text-decoration: none; }

p { 
    letter-spacing: .05rem; }

.uppercase { text-transform: uppercase; }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175); }

img.myImg {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .5rem;
    max-width: 100%;
    height: auto; }

.grid-center {
    display: grid;
    place-items: center; }


.nbsp::after { 
    content: '&';
    font-size: 80%; }

.th {
    font-size: 50%;
    vertical-align: top; }

/* HR Line */
.line-vert:after {
    background-image: linear-gradient(0deg, #fff 0%, var(--primary) 50%, #fff 100%);
    content: '';
    display: inline-block;
    width: 1px;
    height: 30px;
    border: 0;
    margin: 0;
    padding: 0; }

.line-hor:after {
    background-image: linear-gradient(90deg, var(--primary) 50%, #fff 100%);
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    border: 0;
    margin: 0;
    padding: 0; }

.rounded-lg { border-radius: 1rem !important; }

.initial {
    font-family: initial !important;
    color: initial !important; }


/* ******************************************** Content ******************************************** */


/* Navigation */
nav { padding: 1rem; }
    
nav ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center; }

.nav-link.active, .nav-link:focus, .nav-link:hover, .nav-link.active svg, .nav-link:focus svg, .nav-link:hover svg { 
    transform: translateY(2px);
    color: var(--nav-hover) !important; }
    
.nav-item { display: flex; }

.nav-link {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--nav);
    transition: all .2s ease; }
    
.nav-link span { margin-top: .25rem; }
    
.navbar-brand { 
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: #ffffcc;
    text-transform: uppercase; }
    

/* Landing */
#landing {
    background-image: url("../images/bg-wood.jpg");
    background-size: cover;
    padding-top: 0;
    margin-top: -.6rem; }
    
#landing a {
    /* text-shadow: 4px 4px 6px #000; */
    text-decoration: underline;
    text-transform: uppercase;
    text-align: center;
    color: #fff; }

#landing a:hover { text-decoration: none; }

.logo {
    position: relative;
    height: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }

.logo h1 { 
    font-size: 3.5rem;
    font-family: 'broadway', sans-serif;
    color: #eee;
    text-shadow: 4px 4px 6px #000;
    text-transform: uppercase; }

.logo h2 { 
    padding: 1rem;
    border-radius: .5rem;
    background-color: rgba(0,0,0,.35);
    color: #ffffcc;
    text-transform: uppercase; }

.storefront {
    margin-top: -4rem;
    max-width: 100%;
    height: auto; 
    border-radius: 50%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }


/* About */
#about { padding-left: 2rem; }
#about p:not(.lead) { font-size: 16px !important; }

.hours td:first-of-type { 
    font-weight: 700;
    padding-right: .65rem;
    text-align: right; }

.hours td:last-of-type { text-align: left; }

#gallery img {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto; }

figcaption {
    letter-spacing: normal;
    font-size: 14px;
    color: #555;
    margin-top: .35rem;
    font-family: monospace; }

/* Covid */
.covid-img {
    border-radius: 50%;
    margin-right: 1rem;
    margin-bottom: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    float: left; }
    
#covid h2 { margin-bottom: 1.5rem; }

#covid ul {
    padding-left: 2.5rem;
    list-style: initial; }
    
#covid ul li { line-height: 2rem; }
    
#covid .border-left {
    background-color: var(--bg2);
    border-radius: .5rem;
    padding: 1rem;
    border-left: none !important; }
    
.appreciate {
    margin-top: 1.5rem;
    margin-bottom: .25rem;
    display: block;
    color: var(--bs-primary); }


/* Footer */
footer {
    color: #fff;
    font-size: 16px; }
    
footer section { padding: 0; }
.footer-left { padding-bottom: 2rem; }

#map {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0; }

footer h1 {
    font-family: 'broadway', sans-serif;
    color: #eee;
    margin-bottom: 2rem;
    margin-top: -1rem }

footer h2 { 
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--orange); }

footer .hours td:first-of-type { font-weight: normal; }

p.copyright { 
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 0;
    font-size: 16px; }

footer hr {
    width: 75%;
    text-align: center;
    border-top: solid 1px var(--orange); }

.social { 
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }

footer small { display: block; }
.footer-links a.mswd { padding-left: 0px !important; }
footer a:hover { opacity: .7; }
.copyright { text-align: center; }

.phone2:hover {
    opacity: 1 !important;
    color: #fff !important; }
    
.footer-links { 
    margin-top: 1rem;
    margin-bottom: .75rem; }
    
.footer-links a { 
    display: block;
    font-size: 18px;
    color: #ffffcc !important; }
    
.footer-links a:hover { color: #aaa; }
    
/* MSWD */
.mswd-links p {
    font-size: 13px !important;
    display: block !important;
    margin-top: 8px !important;
    font-family: 'arial', serif !important;
    line-height: 1.25rem !important; }

.mswd-links a {
    font-size: 13px !important;
    transition: all .15s ease !important;
    text-decoration: underline !important;
    color: inherit !important;
    font-size: inherit !important;
    font-family: 'arial', serif !important;
    line-height: 1.5rem !important; }

.mswd-links a:hover { 
    opacity: .7 !important;
    text-decoration: none !important; }


/* ******************************************** REPONSIVE ******************************************** */
@media (min-width: 768px) { 
    body { font-family: 'Open Sans', sans-serif; }
    .nav-link, .footer-links a { font-family: 'Lato', sans-serif; }
}

@media (max-width: 767px) { .card-deck .card { flex: 1 0 100%; } }
@media (min-width: 768px) { .card-deck .card { flex: 1 0 0%; } }

@media (max-width: 991px) {
    section { 
        padding-top: 20px;
        padding-bottom: 20px; }
}

@media (min-width: 768px) { .logo br { display: none; } }

@media (min-width: 1200px) {
    footer .order1 { z-index: 1; }
}

@media (min-width: 768px) and (max-width: 1099px) { 
    .menu-links svg { display: none; }
}

@media (min-width: 768px) and (max-width: 991px) { 
    .menu-links { 
        margin-left: .5px;
        margin-right: .5rem; }
    
    .logo { margin-top: 2rem; }
    .logo h1 { font-size: 2.5rem; }
    .logo h2 { font-size: 1.25rem; }
    #landing { padding-bottom: 4rem; }
    .specials-inner h2 { font-size: 20px; }
    .info { font-size: 14px; }
    #gallery { margin-top: 1rem; }
}

@media (max-width: 767px) { 
    body { font-family: var(--font-family-sans-serif); }
    
    /* Header */
    .logo { 
        height: auto;
        padding: 1rem; }

    .logo h2 { 
        margin-bottom: 1rem;
        font-size: 1.25rem; }
    
    .logo h1 { 
        margin-top: .5rem;
        margin-bottom: 1rem;
        text-align: center;
        font-size: 2rem; }
    
    .menu-links { margin: 1rem; }
    .header-line { display: none; }

    
    /* Navigation */
    nav ul { align-items: flex-start;; }
    
    .nav-link { 
        padding: 0.5rem;
        font-size: 13px !important; }
        
    .nav-link svg {
        width: 20px;
        height: 20px; }
    
    .nav-link span { font-size: 14px; }
    
    .info { 
        margin-top: 1rem;
        margin-bottom: 1rem; }
    
    
    /* Landing */
    .logo { margin-top: 1rem; }
    
    .opening {
        font-size: 26px;
        margin-top: 2rem;
        margin-bottom: -1rem;
        margin-left: 1rem;
        margin-right: 1rem; }
    
    #landing { 
        padding-top: 0;
        padding-bottom: 4rem; }
    
    #specials { order: 2; }

    .specials-inner { 
        margin-top: 1rem;
        margin-left: 1rem; }
    
    .about-inner { margin-top: 1rem; }
    
    #about { 
        padding-left: 0;
        order: 1; }
    
    /* Covid */
    #covid .border-left {
        background-color: var(--bg2);
        border-radius: .5rem;
        margin-top: 2rem;
        padding: 1rem;
        border-left: none !important; }
    
    #covid hr { display: none; }
    
    .open-inside { 
        flex-direction: column;
        margin-bottom: 1rem !important; }
        
    .covid-img {
        margin-bottom: 2rem;
        float: none; }
    
    /* Gallery */
    #gallery { 
        height: auto;
        margin-top: 0;
        padding: 1rem !important; }
    
    /* Index-links */
    .card-deck .card { margin-bottom: 100px; }
    
    /* Footer */
    footer #map { 
        height: 350px;
        border-top: solid 3px #222; }
        
    footer { margin-top: 0; }
    footer .w-75 { width: 100% !important; }
    footer .order1 { order: 1; }
    footer .order2 { order: 2; }
    footer hr { margin-bottom: 2rem; }
}
