/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
html{
  font-size: 62.5%;
}
body {
  font-family: 'PT Sans', sans-serif;
}
a{
  color: rgb(10,22,40);
  text-decoration: none;
}
h2 {
  font-size: 3.0rem;
  margin-bottom: 50px;
  text-align: center;
}
h2:nth-of-type(2){
  margin-bottom: 50px;
}
h3 {
  font-size: 2.0rem;
  margin-bottom: 8px;
  text-align: center;
}
p {
  width: 80%;
  max-width: 680px;
  margin: 0 auto;
  color: white;
  font-size: 2.0rem;
  line-height: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
}

/*SKIP LINK*/
.skip-link{
  position: absolute;
  left:12px;
  top:12px;
  z-index: 10;
  padding: 10px 16px;
  background: rgb(10,22,40);
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}


/* CHECKERED BG */
.site-bg {
  background-image: url("../assets/checker-bg.png");
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}


/*PAGE CONTAINER*/
.page {
  z-index: 3;
  width: 80%;
  max-width: 1200px;
  min-height: 100dvh; /* 15px top + 8px bottom */
  height: auto;
  margin: 0 auto;
  background: rgb(50, 139, 255);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 10px;
  padding-bottom: 0;
}


/*HEADER*/
header{
  border-radius: 10px;
  margin-bottom:25px;
}
.logo {
  width: 24.41%;
  min-width: 150px;
  max-width: 215px;
  display: block;
  float:left;
  position: relative;
  left: 8px;
  top: 8px;
  border: 2px solid rgb(10, 22, 40);
  background: white;
  border-radius: 8px;
  box-shadow: 3px 3px 0 0 rgba(10,22,40);
  margin-bottom: 25px;
  padding:6px;
}


/*HOURS-CARD*/
.hours-card {
  float: right;
  width: 290px;
  height: auto;
  position: relative;
  right: 10px;
  top: 10px;
  background: #fff;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 8px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  font-family: "Slabo 13px", serif;
  font-weight: 400;
  font-style: normal;
  padding: 8px;

}

.hours-card-inner {
  background: rgb(10, 22, 40);
  color: #fff;
  border-radius: 5px;
  padding: 10px 12px;
}

.hours-card p,
.hours-card address {
  margin: 0 0 10px;
  width: 100%;
  color: #fff;
  font-size: 1.9rem;
  line-height: 2rem;
  font-style: normal; 
}

.hours-card p:last-child {
  margin-bottom: 0;
}

.hours-card a {
  color: #fff;
  text-decoration: underline;
   font-family: 'PT Sans', sans-serif;
}


/*NAV*/
nav {
  height: fit-content;
  margin-bottom: 50px;
  display: block;
}

nav ul {
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  font-size: 2.4rem;
  list-style: none;
  padding: 0;
}

nav ul li {
  flex: 1;
}

nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  white-space: nowrap;
  background-color: #fff;
  color: #000;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}

nav ul li a:hover {
  background: rgb(58, 122, 208);
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
}


/*FOOTER*/
footer {
  position: static;
  height: auto;
  width: 100%;
  margin: auto 0 8px;
  padding-top: 25px;
  text-align: center;
  color: rgb(10, 22, 40);
  font-size: 1.8rem;
}

footer p{
  margin-bottom: 0;
}

footer a {
  color: rgb(10, 22, 40);
  text-decoration: underline;
}

footer a:hover {
  color: rgb(58, 122, 208);
}

footer ul {
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: space-around;
  font-size: 2.2rem;
}

.footer-inner {
  width: min(100%, 400px);
  margin: 0 auto 8px;
  padding: 8px;
  background: #fff;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 8px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
}

.footer-inner-panel {
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 12px 16px;
  background: rgb(10, 22, 40);
  color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-inner-panel .copyright,
.footer-inner-panel .credit {
  width: 100%;
  margin: 0;
  color: #fff;
  text-align: center;
}

.footer-inner-panel .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 1.6rem;
  line-height: 1.4;
}

.footer-inner-panel .credit {
  font-size: 1.5rem;
  line-height: 1.4;
  opacity: 0.9;
}

.footer-inner-panel a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-inner-panel a:visited {
  color: #fff;
}

.footer-inner-panel a:hover {
  color: rgb(180, 210, 255);
}

.footer-inner-panel a:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}

.copyright{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  color: rgb(10,22,40);
  white-space: normal;
  margin-bottom:0;
  font-size: 1.8rem;
}

.credit {
  margin: 0;
  font-size: 1.5rem;
  color: rgb(10,22,40);
  opacity: 0.85;
  white-space: normal;
  flex: 1;
}



/******************************************
/* ADDITIONAL STYLES
/*******************************************/



/********** HOME STYLES **************/

/* BANNER  */
.banner {
  display: block;
  width: min(100%, 920px);
  height: auto;
  margin: 0 auto 40px;
  filter:
    drop-shadow(2px 0 0 rgb(10, 22, 40))
    drop-shadow(-2px 0 0 rgb(10, 22, 40))
    drop-shadow(0 2px 0 rgb(10, 22, 40))
    drop-shadow(0 -2px 0 rgb(10, 22, 40))
    drop-shadow(3px 3px 0 rgb(10, 22, 40));
}


/*HIDDEN H1*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*HOME-CARD STYLES*/
.home-card {
  width: min(92%, 920px);
  margin: 0 auto 80px;
  padding: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 10px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  text-align: center;
}

.home-p {
  color: rgb(10, 22, 40);     
  border-radius: 10px;
  padding: 22px 28px;
  margin: 20px auto 20px auto;
  width: min(100%, 38em);
  padding: 0;
  border: none;
  box-shadow: none;
  text-align: center;
  text-indent: 0;
  font-size: 1.9rem;
  line-height: 1.45;
  max-width:623px;
}

.home-img {
  width: min(100%, 640px);
  display: block;
  margin: 0 auto;
  border-radius: 10%;
  margin-bottom: 40px;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 12px; 
}

.home-card .banner-title {
  width: 100%;
  margin: 0 0 28px;
  padding: clamp(16px, 3vw, 28px) clamp(12px, 2vw, 20px);
  background: rgb(10, 22, 40);
  color: #fff;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  font-family: "Neonderthaw", cursive;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.9;
  text-shadow: none;
}



/******** MENU STYLES *******/

.menu-board {
  width: 90%;
  height: fit-content;
  margin: 0 auto;
  color: rgb(15,28,46);
  border: 2px solid rgb(10,22,40);
  border-radius: 8px;
  margin-bottom: 100px;
  margin-top: 40px;
  background-color: white;
  padding: 0 5px;
  padding-top:50px;
}
.menu-board section {
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 30px 25px;
  padding-top:30px;
  margin: 0 auto 40px auto;
  max-width: 520px;
  scroll-margin-top: 56px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); */
}

.menu-board section h2 {
  margin-bottom: 30px;
  color: rgb(10, 22, 40);
}

.menu-board section p {
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
  color: rgb(10, 22, 40);
  font-size: 1.8rem;
  line-height: 1.45;
}
.menu-tabs {
  width: 99%;
  margin: 40px auto 40px;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  border-radius: 8px;
  position: sticky;
  top: 0;
  background: white;
}
.menu-tabs a {
  color: rgb(10, 22, 40);
  background: white;
  font-size: 2.0rem;
  line-height: 4.0rem;
  text-align: center;
  padding: 0 5px;
  padding-block: 0;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  font-weight: 700;
  transition: transform 0.1s, box-shadow 0.1s;
  text-wrap: nowrap;
  height:100%;
  width: 100%;
  display: inline-block;
}
.menu-tabs a:hover {
  cursor: pointer;
  background: rgb(58, 122, 208);
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
  transition: transform 0.1s, box-shadow 0.1s;
}
.menu-board > section > h1,
h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  text-align: center;
}
.menu-board > h1{
  margin-bottom: 0;
}
.menu-board > section > p {
  width: 210px;

}


/* BURGERS */
.burgers {
  height: fit-content;
  display: block;
}
.burgers p:first-of-type {
  width: 90%;
  max-width: 500px;
  margin-bottom: 0px;
}
div.burgsHero{
  margin-bottom: 50px;
}
.cheese {
  color: rgb(15,28,46);
  font-size:1.9rem;
  margin-bottom: 60px;
}
#burg p.cheese {
  width: 90%;
  max-width: 330px;
}

/*TOPPINGS*/
.toppings {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-evenly;
  height: 170px;
  text-align: center;
  width: 70%;
  max-width: 420px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.burgers ul li {
  font-size: 1.6rem;
  padding: 1px 5px;
}
ul.specials li p {
  font-size: 1.6rem;
  line-height: 1.9rem;
  width: 98%;
  max-width: 410px;
}
ul.specials li:last-of-type p {
  margin-bottom: 0;
}
li.specialItem{
  margin-bottom: 30px;
}

li.specialItems{
  margin-bottom: 30px;
}
/* SANDWICHES*/
.sandwiches {
  display: block;
  height: fit-content;
}


/* BASKETS */
.baskets {
  display: block;
}
.baskets .specials li p:first-of-type {
  margin-bottom: 15px;
}
.baskets .specials li p:last-of-type {
  font-size: 1.4rem;
}


/* SIDES */
.sides {
  display: block;
}
.sides .specials li p:first-of-type{
  margin-bottom: 30px;
}
.sides .toppings {
  flex-direction: column;
}
.sides .toppings li {
  font-size: 1.6rem;
}

.tots{
  margin-top:25px;
}

/* CHILI DOG */
section.sides .specialItems:nth-of-type(2) p:nth-of-type(1){
  margin-bottom: 5px;
}


/* KIDS MEALS */

.kidsMeals {
  display: block;
}
.kidsMeals li:first-of-type p:first-of-type{
  margin-bottom: 5px;
}


/* DRINKS */
.drinks {
  display: block;
}
.drinks ul:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 60px;
}
.drinks ul:first-of-type li {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.drinks ul:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: fit-content;
  margin: 0 auto;
  height: 270px;
}
.drinks ul:last-of-type li {
  font-size: 2.2rem;
  text-align: center;
}


/* SHAKES MALTS */
.shakesMalts {
  display: block;
}
.shakesMalts ul:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 60px;
}
.shakesMalts ul:first-of-type li {
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 0 5px;
}

.shakesMalts ul:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-bottom: 40px;
  width: fit-content;
  margin: 0 auto;
  height: 300px;
}
.shakesMalts ul:last-of-type li {
  font-size: 2.2rem;
  text-align: center;
}


/********** ORDER **********/

/*content card*/

.main-content-card {
  background: #fff;
  color: rgb(10, 22, 40);
  border: 1.5px solid rgb(10, 22, 40);
  border-radius: 10px;
  padding: 35px 40px 40px;
  max-width: 620px;
  margin: 40px auto 60px auto;
}

.main-content-card p{
  color: rgb(10, 22, 40);
}

.main-content-card h1 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(10, 22, 40);
  font-size: 3.5rem;
  line-height: 1.2;
}

.main-content-card .contactP {
  color: rgb(10, 22, 40);
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  max-width: none;
}


.main-content-card h2 {
  font-size: 2.2rem;
  margin: 40px 0 20px;
  color: rgb(10, 22, 40);
  text-align: center;
  margin-top: 70px;
}

.main-content-card ul {
  margin: 10px 0 20px 25px;
  padding: 0;
}

.main-content-card li {
  margin-bottom: 8px;
  line-height: 2.2rem;
  font-size:1.8rem;
  color: rgb(10, 22, 40);
}

.main-content-card p {
  margin-bottom: 16px;
  line-height: 1.5;
  color: rgb(10, 22, 40);
}


.main-content-card label {
  color: rgb(10, 22, 40);
}

.main-content-card input,
.main-content-card textarea {
  border: 1.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  padding: 8px 12px;
}

.main-content-card button {
  background: rgb(10, 22, 40);
  color: white;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.main-content-card button:hover {
  background: rgb(58, 122, 208);
  border-color: rgb(58, 122, 208);
  color: white;
}

p.call-order{
  margin-top:80px;
}

section.order a{
  display: inline-block;
  margin: 0 auto;
}


/******** ORDER BUTTON **********/

.order-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background-color: rgb(30, 90, 168);
  color: rgb(255, 255, 255);
  font-size: 1.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid rgb(30, 90, 168);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  height: auto;
  padding: 12px 22px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 6px;
  border: 2.5px solid rgb(10, 22, 40);
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  transition: transform 0.1s, box-shadow 0.1s, background-color 0.15s;
}

.order-btn img,
.order-btn .doordash-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.order-btn.doordash {
  background: #EB1700;
  color: #fff;
  border-color: rgb(10, 22, 40);
}

.order-btn.doordash:hover,
.order-btn.doordash:focus-visible {
  background: #c51400;
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
}
.doordash-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: #EB1700;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s, background-color 0.15s;
}

.doordash-logo-btn img {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}
.order-btn.phone {
  display: inline-block;
  width: auto;
  min-width: 0;
  padding: 10px 18px;
  background-color: #fff;
  color: #000;
  border: 2.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgb(10, 22, 40);
  font-weight: 700;
  font-size: 1.9rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}

.order-btn.phone:hover,
.order-btn.phone:focus-visible {
  background: rgb(58, 122, 208);
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
}

.order-btn.phone:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}
.doordash-logo-btn:hover {
  background: #c51400;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
}

.doordash-logo-btn:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}
.main-content-card .order-btn {
  width: auto;
}


.order-btn:hover,
.order-btn:focus {
  background-color: rgb(20, 70, 140);
  border-color: rgb(20, 70, 140);
  color: rgb(255, 255, 255);
}

.order-btn:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}


/******* CONTACT US **********/

/* CONTACT US */
.contactP{
  max-width: 800px;
}
form {
  max-width: 500px;
  margin: 0 auto 60px auto;
  
}

fieldset {
  padding: 30px;
}

input,
textarea,
button {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
input,
button {
  height: 30px;
}

label {
  color: white;
  font-size: 2.0rem;
  height: 18px;
  display: block;
}

input {
  margin-bottom: 15px;
  margin-top:10px;
  height: 35px;
}
textarea{
  margin-top:10px;
}

button {
  background: lightgray;
  border-radius: 3px;
  border-color: gray;
  border-style: solid;
  color: rgb(58,122,208);
}
button:hover {
  /* opacity: 0.7; */
  cursor: pointer;
}


/*********** PRIVACY ***********/

/*privacy content*/

.privacy-content-card {
  background: #fff;
  color: rgb(10, 22, 40);
  border: 1.5px solid rgb(10, 22, 40);
  border-radius: 10px;
  padding: 35px 40px 40px;
  max-width: 620px;
  margin: 40px auto 100px auto;
}

.privacy-content-card p{
  color: rgb(10, 22, 40);
  text-align: left;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.5;
  width: fit-content;
}

.privacy-content-card h1 {
  text-align: center;
  margin-bottom: 25px;
  color: rgb(10, 22, 40);
  font-size: 3.5rem;
  line-height: 1.2;
}

.privacy-content-card .contactP {
  color: rgb(10, 22, 40);
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  max-width: none;
}

.privacy-content-card a{
  text-decoration:underline;
}
.privacy-content-card h2 {
  font-size: 2.2rem;
  margin: 70px 0 20px;
  color: rgb(10, 22, 40);
  text-align: center;
}

.privacy-content-card ul {
  margin: 10px 0 20px 0px;
  padding: 0;
}

.privacy-content-card li {
  line-height: 2.2rem;
  font-size:1.8rem;
  color: rgb(10, 22, 40);
  margin: 0;
  margin-bottom: 8px;
}


.privacy-content-card label {
  color: rgb(10, 22, 40);
}

.privacy-content-card input,
.privacy-content-card textarea {
  border: 1.5px solid rgb(10, 22, 40);
  border-radius: 6px;
  padding: 8px 12px;
}

.privacy-content-card button {
  background: rgb(10, 22, 40);
  color: white;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.privacy-content-card button:hover {
  background: rgb(58, 122, 208);
  border-color: rgb(58, 122, 208);
  color: white;
}

.privacy-content-card a {
  color: rgb(10, 22, 40);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.privacy-content-card a:hover {
  color: rgb(58, 122, 208);
}

.privacy-content-card a:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
  color: rgb(58, 122, 208);
}
/* FOCUS STATES */

nav ul li a:focus-visible,
.menu-tabs a:focus-visible,
.main-content-card button:focus-visible,
.order-btn:focus-visible,
footer a:focus-visible,
.hours-card a:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}

nav ul li a:focus-visible,
.menu-tabs a:focus-visible {
  background: rgb(58, 122, 208);
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgb(10, 22, 40);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}

.main-content-card input:focus-visible,
.main-content-card textarea:focus-visible,
.privacy-content-card input:focus-visible,
.privacy-content-card textarea:focus-visible {
  border-color: rgb(10, 22, 40);
  outline: 3px solid rgb(255, 215, 0);
  outline-offset: 3px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 640px){
  .body{
    padding: 0;
  }
  .backgroundFixed{
    background-image: none;
    background-color: rgb(50, 139, 255);
  }
  .hours-card {
    clear: both;
    float: none;
    margin: 0 auto;
    right: 0;
  }
  .hours-card p {
    width: 100%;
    right: 0;

  }
  .logo {
    float: none;
    margin: 0 auto;
    margin-bottom: 30px;
    left: 0;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
    width:95%;
  }
  nav{
    margin-bottom:20px;
  }
  footer ul {
    flex-direction: column;
    text-align: center;
    height: 95px;
  }
  .shakesMalts ul:first-of-type,
  .drinks ul:first-of-type{
    flex-direction: column;
    height: fit-content;
    margin: 0 auto;
    width: fit-content;
    margin-bottom: 30px;
    text-align: center;
  }
  .menu-board{
    margin-top:30px;
  }
  .footer-inner{
    display: flex;
    flex-direction:column;
  }
  .page{
    width: 100%;
    height: 100%;
  }
  .banner p{
    display:none;
  }
  .menu-tabs {
    grid-template-columns: 1fr;
  }

  .menu-tabs a {
    width: 100%;
    max-width: none;
  }
}




@media screen and (max-width: 640px){
  .menu-board section{
    padding: 30px 0;
    padding-top:60px;
  }
  .site-bg {
    background-size: 10%;
  }
}

@media (min-width: 641px) and (max-width: 1007px) {
  .site-bg {
    background-size: 13%;
  }
}

@media (min-width: 990px)
{
  .menu-board .menu-tabs {
    flex-direction: row;
    /* width: 100%; */
    justify-content: space-around;
    /* border-bottom: 2px solid rgb(58,122,208); */
  }
  .menu-board .menu-tabs li {
    border-bottom: none;
    width: 100%;

  }
  .menu-board .menu-tabs li + li {
    /* border-left: 2px solid rgb(58,122,208); */
  }
}

@media (min-width: 1008px) and (max-width: 1799px){
  .site-bg {
    background-size: 13%;
  }
}

@media (min-width: 1800px) and (max-width: 2099px){
  .site-bg {
    background-size: 12%;
  }
}

@media (min-width: 2100px) {
  .site-bg {
    background-size: 10%;
  }
}


/*BANNER MEDIA QUERIES*/

@media (max-width: 815px){
  .banner h1 {
    font-size: 5.2rem;
    margin-bottom: 0;
    line-height: 5.6rem;
    margin-top: 23px;
  }
  
  .banner span {
    font-size: 2.9rem;
  }
}

@media (min-width:816px) and (max-width: 1039px){
  .banner h1 {
    font-size: 4.8rem;
    margin-bottom: 5px;
    line-height: 4rem;
    margin-top: 1px;
  }
  
  .banner span {
    font-size: 3.2rem;
  }
}

@media (max-width:597px){
  .banner span{
    display: none;
  }
  .banner{
    filter: none;
  }
  footer>ul{
    display: none;
  }
}


/*testing menu button changes*/


@media screen and (min-width: 641px) and (max-width: 1279px) {
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .menu-tabs a {
    grid-column: span 4;
  }

  .menu-tabs a:nth-child(n + 4) {
    grid-column: span 3;
  }
  .menu-board section{
    scroll-margin-top: 112px;
  }
}

@media screen and (max-width: 640px) {
  .menu-board{
    width:98%;
  }
   .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 0.6rem;
    padding: 6px 8px 12px;
    scrollbar-gutter:stable;
  }
  .menu-board section{
    scroll-margin-top: 80px;
  }
  .menu-tabs a,
  .menu-tabs a:nth-child(n + 4) {
    grid-column: auto;
    flex: 0 0 auto;      
    width: auto;
    max-width: none;
    min-width: max-content;
    white-space: nowrap;
    height: auto;
    min-height: 40px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px; /* this is the missing side padding */
  }
}





/* ===== MENU SECTION CARD TEST (override only) ===== */

.menu-board section {
  background: rgb(10, 22, 40);
  color: #fff;
  border: 2px solid rgb(10, 22, 40);
  border-radius: 10px;
  /* box-shadow: 3px 3px 0 0 rgba(10, 22, 40, 0.35); */
  padding: 30px 25px;
}

.menu-board section h2,
.menu-board section h3,
.menu-board section p,
.menu-board section li,
.menu-board section span {
  color: #fff;
}

.menu-board section p,
.menu-board section .cheese,
.menu-board #burg p.cheese,
.menu-board .baskets .specials li p:last-of-type {
  color: #fff;
}

.menu-board .toppings,
.menu-board .specials,
.menu-board .drinks ul,
.menu-board .shakesMalts ul {
  color: #fff;
}

.menu-board section a {
  color: #fff;
}

/* keep the outer white board and tabs as they are */
.menu-board {
  background-color: #fff;
}

.menu-board > h1,
.menu-board .menu-tabs a {
  color: rgb(10, 22, 40);
}

.menu-board .menu-tabs a:hover,
.menu-board .menu-tabs a:focus-visible {
  color: #fff;
}

.menu-board section h2{
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sides > h3,
.burgers > h3 {
  text-transform: uppercase;
}