
/* RESET */
*,
*::after,
*::before{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
img{
    display: block;
    max-width:100% ;
    height: auto;
}
input, 
button, 
textarea{
    font: inherit;
}


/* CSS VARIABLES */
:root{
    /* FONTS */
    --FF:'Space Grotesk',sans-serif;
    --FS:clamp(1rem, 2.2vh, 1.5rem);

    /* COLORS */
    --BGCOLOR:orange;
    --BGCOLOR-FADE:whitesmoke;
    --BGIMAGE:linear-gradient(to bottom, var(--BGCOLOR),var(--BGCOLOR-FADE));
    --BODY-BGCOLOR:#ffffff;
    --FONT-COLOR:#000000;
    --BORDER-COLOR:#333;
    --BORDER--RADIUS:15px;
    --HIGLIGHT-COLOR:rgb(5, 200, 86);
    --LINK-COLOR:#000;
    --LINK-HOVER:hsla(0,0%,0%,0.6);
    --LINK-ACTIVE:orange;
    --HEADER-BGCOLOR:#000;
    --HEADER-COLOR:whitesmoke;
    --NAV-BGCOLOR: rgb(255, 241, 241);
    --HERO-BGCOLOR: rgba(51, 178, 51,0.75);
    --HERO-COLOR:#ffffff;

    /* BORDERS */
    --BORDERS:1px solid var(--BORDER-COLOR);

    /* STANDARD PADDING */
    --PADDING-TB:0.25EM;
    --PADDING-SIDE:2.5%;

    /* STANDARD MARGIN */
    --MARGIN:CLAMP(1EM, 2.5VH, 1.5EM) 
    0;
    --MARGIN-LEFT: 1.5rem 1.5rem;;
}

@media (prefers-color-scheme: dark){
    :root{
        --BG--COLOR:#000;
    }
}


/* UTILTY CLASSES */
.offscreen{
    position: absolute;
    left: -10000px;
}
.nowrap{
    white-space: nowrap;
}
.center{
    text-align: center;
}
/* .nowrap{
    
} */

/* GENERAL STYLES */
html{
    scroll-behavior: smooth;
    font-size: var(--FS);
    font-family: var(--FF);
    background-color: var(--BGCOLOR);
    background-image: var(--BGIMAGE);
}
body{
    background-color: var(--BODY-BGCOLOR);
    color: var(--FONT-COLOR);
    min-height: 100vh;
    max-width: 800px;
    margin: 0 auto;
    border-left: var(--BORDERS);
    border-right: var(--BORDERS);
    box-shadow: 0 0 10px var(--BORDER-COLOR);
}
h1,
h2,
h3{
    font-family: var(--FF);
    letter-spacing: 0.05em;
}
h2,
h3{
    margin-bottom: 1em;
    color: var(--HIGLIGHT-COLOR);
}
p{
    line-height: 1.5;
}
a:any-link{
    color:var(--LINK-COLOR) ;
    text-decoration: none;
    
}
a:hover,
a:focus-visible{
    color: var(--LINK-HOVER);
    text-decoration: underline;
}
a:active{
    color: var(--LINK-ACTIVE);
    text-decoration: underline;

}


/* HEADER */
.header{
    position: static;
    top: 0%;
    z-index: 1;
}
.header__h1{
    text-align: center;
    background-color: var(--HEADER-BGCOLOR);
    color: var(--HEADER-COLOR);
    padding: var(--PADDING-TB), var(--PADDING-SIDE);
}
.header__nav{
    background-color: var(--NAV-BGCOLOR);
    border-bottom: var(--BORDERS);
    font-weight: bold;
    box-shadow: 0 6px 5px -5px var(--BORDER-COLOR);
}
.header__ul{
    padding: var(--PADDING-TB),var(--PADDING-SIDE);
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

/* HERO */
.hero{
    position: relative;

}
.hero__h2{
    background-color: var(--HERO-BGCOLOR);
    color: var(--HERO-COLOR);
    padding:  0.25em 0.5em;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 5px var(--BORDER-COLOR);
    position: absolute;
    top: -100px;
    left: 20px;
}


main__article {
    min-height: calc(100vh - 20rem);

}


/* FOOTER */
footer{
    position: static;
    bottom: 0;
    background-color: var(--HEADER-BGCOLOR);
    color: var(--HEADER-COLOR);
    padding: var(--PADDING-TB), var(--PADDING-SIDE);
    text-align: center;
    width: 100%;

}


/* MAIN */
/* .main{
    padding: var(--PADDING-TB), var(--PADDING-SIDE);
} */
.main-index{
    margin-left: var(--MARGIN-LEFT);
}
.main-section{
    margin: var(--MARGIN-LEFT);
}
.main__article{
    scroll-margin-top: 6.5rem;
    margin: var(--MARGIN);
}
.main__article:first-child{
    margin-top: 1em;
}
.main__article__hours{
    min-height:calc(100vh - 20rem) ;
}

/* ABOUT */
.about__trivia{
    margin: var(--MARGIN);
    min-height: calc(100vh - 20rem);
}

.about__trivia-about{
    margin-top: 1em; 
}
.contact__h2{
    margin: 0%;
    text-decoration: underline;
    text-decoration-color: var(--HERO-BGCOLOR);
}
.contact__fieldset{
    border: none;
}
.contact__p{
    margin: 1rem 0;
}
.contact__label{
    display: block;
    font-weight: bold;
}
.contact__input,
.contact__textarea{
    padding: 0.5em;
    border-radius: 15px;
    border-width: 2px;
    width: 100%;
    border-radius: var(--BORDER--RADIUS);
}
.contact__button{
    padding: 0.5em;
    border-radius: 15px;
    background-color: var(--HIGLIGHT-COLOR);
    color: var(--HEADER-COLOR);
    border:none;
    border-radius: var(--BORDER--RADIUS);
}
.contact__form__fieldset{
    border: none;
}
/* HOURS */
.main__article{
    margin: var(--MARGIN);
}
.main__article__contact{
    margin-left: 0%;
}


/* MENU */
tbody, tfoot, thead, tr{
    display: contents;
}
.menu__container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
    "hd1 hd2 hd3"
    "cr cr1 cr1p"
    "cr cr2 cr2p"
    "cr cr3 cr3p"
    "sf sf1 sf1p"
    "sf sf2 sf2p"
    "sf sf3 sf3p"
    "cs cs cs"
    ;
    gap: 0.1em;
    margin-bottom: 1em;
}

.menu__cr{
    grid-area: cr;
}
.menu__sf{
    grid-area: sf;
}
.menu__cs{
    grid-area: cs;
    color: var(--HIGLIGHT-COLOR);
    font-weight: bold;
}
.menu__cr,
.menu__sf,
.munu__cs{
    color: var(--HIGLIGHT-COLOR);
    font-weight: bold;
    height: 100%;
    display: grid;
    place-content: center;
}

.menu__header{
    border-bottom: var(--BORDERS);
    color: var(--HIGLIGHT-COLOR);
    font-weight: bold;
}

.menu__header,
.menu__item{
    width: 100%;
    padding: 1em;
    border: medium ridge var(--BORDER-COLOR);
}

.menu__item{
    display: grid;
    place-content: center;
}

thead th:first-child{
    border-top-left-radius: var(--BORDER--RADIUS);
}
thead th:last-child{
    border-top-right-radius: var(--BORDER--RADIUS);
}
tfoot td{
    border-bottom-left-radius: var(--BORDER--RADIUS);
    border-bottom-right-radius: var(--BORDER--RADIUS);

}

@media screen and (min-width:576px){
    /* .header__h1::before{
        content: ;
    } */

    .menu__header,
    .menu__cr,
    .menu__cs,
    .menu__sf{
        font-size: 125%;
    }
}

/* UNDERLINE */
.menu__h2{
    text-decoration: underline;
    text-decoration-color: black;
}
.working__h2{
    margin: 0%;
    text-decoration: underline;
    text-decoration-color: var(--HERO-BGCOLOR);
}