@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 900;
    src: url(fonts/asapcondensed-black-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-black-webfont.woff ) format('woff');
}

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 300;
    src: url(fonts/asapcondensed-regular-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-regular-webfont.woff ) format('woff');
}

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 300;
    font-style: Italic;
    src: url(fonts/asapcondensed-italic-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-italic-webfont.woff ) format('woff');

}



:root{
  --primary-color: #ff000f;
  --secondary-color: #263349;
  --hover-color: #31323e;
  --accent-color: #0071FF;
  --text-color: #ffffff;
  --BG1: #d5bf86;
  --BG2: #778472;


}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

html{
  font-family: 'Asap Condensed', sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth; /*For bookmark links*/
}
body{
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--text-color);

}

main{
 width: 100%;
}

main p{
  margin-top: .15em;
}

nav{
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    right: -100%;
    /*height: 100vh;*/
    height: auto;
    width: min(15em, 100%);
    z-index: 10;
    /*border-left: 1px solid var(--hover-color);*/
    transition: right 300ms ease-in-out;

  }

   nav.show{
    display: block;
    right: 0;
  }

  nav.show ~ #overlay{
    display: block;
  }
nav ul{
   
   width: 100%;
   flex-direction: column; 
   text-transform: uppercase;
   background-color: hsla(0, 0%, 0%, 0.118); 
   color: white;
   list-style: none;
   display: flex;
}
nav .home-li{
  /*margin-right: auto;*/
  text-transform: uppercase;
}
nav li{
  display: flex;
 
}
nav a{
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1.5em 2em;
  transition: background-color 150ms ease;
}
nav a:hover{
  background-color: var(--hover-color);
}

 nav a.active-link{
    border-bottom: none;
  }



#open-sidebar-button{
  display: block;
  position: absolute;
  top: 80px;
  right: 0px;
  background: var(--secondary-color);
  width: -60%; 
  text-align: right;
  border: none;
  padding: 0em 1rem 0em 1rem;
  margin-left: auto;
  cursor: pointer;
}

#close-sidebar-button{
  display: block;
  background: var(--secondary-color);
  width: 10%; 
  text-align: right;
  border: none;
  padding-top: 1em;
  padding-right: 4em;
  margin-left: auto;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}
.button2 {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  display: inline-block;
  padding: .2em .3em .2em .3em;
  background-color: var(--BG2);
  color: white;
  font-size: .75em;
  font-weight: 900;
  text-decoration: none;
  border-radius: .5em;
  box-shadow: .24em .25em .25em rgba(0, 0, 0, 1.0);
}

.sticky-header {
    position: sticky; /* Enables the sticky behavior */
    top: 0;    
    z-index: 990;/* Sticks the element at 0 pixels from the top of the viewport */
}   

.myLogo{
    padding: 37px 37px 37px 37px;
    background-color: #263349;
    width: 100%;
    display: flex;
    align-items: center;
    
  } 

 .myLogo img{
    margin-right: 20px;
 }

 .myLogo p{
    padding-top: 15px;
    font-family: "Guildhall", sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
  }

 h1 {
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: var(--primary-color);
    font-weight: 300;
    font-size: 30px;
    text-align: center;
 	  text-transform: uppercase;
	  padding: 2em auto 2em auto;
    color: white;
    width: 70%;
    height: auto;
    margin: none;

}

h2{
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight:300;
  padding: .4em;
}

h3{
  font-size: 2rem;
  color: var(--secondary-color);
  text-align: center;
  padding: .5em 1em 0 1em;
}

h4{
  font-size: 1.5rem;
  color: var(--secondary-color);
  text-align: left;
  padding: .5em 1em 0 1em;
} 

h5{
  font-size: 1.5rem;
  color: var(--secondary-color);
  text-align: right;
 padding: .5em 1em 0 1em;
}

h6 {
  font-size: 1rem;
  font-weight: 300;
  padding: .5em;

}
    
 p {
	  font-family: 'Asap Condensed';
    font-weight: 300;
    font-size: 16px;
	  margin-bottom: .5em;
}

.horizontal-line {
   margin-top: 1.0rem;
   padding-top: 0;
   width: 100%;
   height: 2px;
   background-color: var(--secondary-color) 
}

.darkText{
  color: var(--secondary-color);
  padding: .5em 2em 0 2em;
}
    
.fa{
   padding: .2em;
}

second_nav ul {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;

  background-color:  var(--BG1);
	list-style-type: none;
  justify-content: center;
  font-size: 2.5rem;
  text-align: center;
  gap: 1px;

}

 second_nav ul li {
    width: 2em;
    display: flex;
    font-size: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}

second_nav ul li a{
    color: #ffffff;
    
    width: 10px;
    height: 2rem;
    margin: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.col-md-one-half {
      width: auto;
}

.special-font{
    font-family: 'Asap Condensed', sans-serif;
}

.hero1 {
  position: relative;
  width:100vw;
}

.image-container{
  display: block;
  background-image: url(images/front_photo_768.jpg);
  background-size: cover;
  background-repeat: no-repeat ;
  width: 100%;
  height: auto;
  background-position: center center;
}

.text-overlay{
 
  position: absolute;
  top:30%;
  left: 50%;
  transform: translate(-50%);
  z-index: 11;
  color: white;
  text-align: center;
  

}
.mainSelector{
  display:flex;
  margin: 20px;
  padding: .4em 1.5em .4em 1.5rem;
  color: var(--text-color);
  font-size: 1.5em;
  font-weight: 300;
  /*line-height: 3.5rem;*/
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  text-align: center;
  justify-content:center;
  background-color: hsla(0, 0%, 0%, 0.6);
  border-radius: .5rem;
  box-shadow: var(--secondary-color) 0px 2px 4px; 
}

.mainSelector:hover{
  background-color: var(--hover-color);

}
     
.mainNav{
  display: flex;
  justify-content: center;
  margin: auto;
  padding: .5em;
 
}
  
.footer-text{
  font-size: .8rem;
  line-height: 1.5em;
  text-align: left;
  padding: 1em;
  color: var(--secondary-color);
}

.foodPhoto{
    display: inline-flex;
    width: 100%;
    padding: 0;
}

.foodPhoto img {
  width: 40vw;
  min-height: 60px;
  max-height: 100px;
  object-fit: cover;
  /*height: auto;*/

}
/*
.menu-line{
  display: block;
  width: 100%;
  height: 65px;
  background-color: var(--secondary-color);
}*/

.grid-container{
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(75px, 4fr));
  grid-auto-flow: row;
  height: auto;
  gap: .5em;
}

.grid-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

 .grid-container .box:first-child {
  background-color: var(--text-color);
  height: auto;
  grid-column: 1 / 5;
  grid-row: 1 / 5;
 
 }
 
 .grid-container .box:nth-child(2){
    object-fit: cover;
    height: 300px;
    
    grid-column: 1 / 3;
    grid-row: 5 / 6;
 }

.grid-container .box:nth-child(3){
     object-fit: cover;
    height: 300px;
 
  grid-column: 3 / 5;
  grid-row: 5 / 6;
 }

 .grid-container .box:nth-child(4){
     object-fit: cover;
    height: 300px;

  grid-column: 1 / 3;
  grid-row: 6 / 7;
 }

 .grid-container .box:nth-child(5){
     object-fit: cover;
  height: 300px;
 
  grid-column: 3 / 5;
  grid-row: 6 / 7;
 }

  .grid-container .box:nth-child(6){
    background-color: var(--BG1) ;
    height: 200px;
    grid-column: 1 / 5;
    grid-row: 7 / 8;
 }

  .grid-container .box:nth-child(7){
    height: 200px;
    background-color: var(--BG2);
    grid-column: 1 / 5;
    grid-row: 8 / 9;
 }

 

.image-container{
  display: block;
  height: minmax(600px,auto);
  background-image: url(images/KCThumbnail.png);

  }

  .container__section{
    max-width: 100vw;
    min-height: auto;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    align-content: space-evenly;
    gap: .5em;

  }

 .box__section{
  background-color: var(--BG1);
    max-width:700px;
    height: 200px;
    display: flex;
    flex: 1 1 300px;
  }

 .grid-container .box .info-box-tan{
  background-color: var(--BG1);
  color: var(--text-color);
	padding: 1em;
	text-align: center;
 }

 .grid-container .box .info-box-dark{
  width: autofit;
	background-color: var(--BG2);
  color: #FFFFFF;
	padding:  15px;
	text-align: center;
 }

 .grid-container .box .info-box-dark a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 20px;
 }

 .secondBox{
  display: block;
  width: 100%;
  padding: .25em 2em;
  color: var(--text-color);
  margin-bottom: 0%;

.left-element {
  font-family: 'Asap Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--secondary-color);
  float: left;
  padding-right: 1em;
}

.right-element {
  font-family: 'Asap Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--secondary-color);
  float:right;
 
}

.clear-fix { 
  clear: both;
 }


/*Tablet View |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/   
    
@media screen and (min-width: 700px) {
  
  #open-sidebar-button, #close-sidebar-button{
    display: none;
  }
     
nav{
  position:fixed;
  top: 80px;
  left: 0;
  /*display: flex;
  flex-direction: row;*/
}

    nav a{
      /*display: flex;*/
      text-decoration: none;
      color: var(--text-color);
      padding: 1em .7em; 1em .7em;
      transition: background-color 150ms ease;
      text-transform: uppercase;
      /*flex-direction: row;*/
  }

   nav ul{
    background-color: var(--secondary-color);
    color: var(--text-color);
    list-style: none;
    display: flex; 
    flex-direction: row;
   }

   /*nav li{
    display: flex;
    flex-direction: row;
   }*/

      nav a.active-link{
  border-bottom: 2px solid var(--text-color);

      }

.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px;
	}
     .row {
    display: flex; /* Makes the child elements (the tables) flexible */
    align-items: stretch; /* This is the default value, but ensures children stretch to the height of the tallest sibling */
    gap: 0px; /* Optional: adds space between the tables */
}
    
    .info-box-tan, .info-box-dark {
    height: 100%; 
    /* Additional table styling (border, padding, etc.) */
    border-collapse: collapse; 
}

h1{
  font-size: 35px;
  width:70%;
}

.foodPhoto img {
  width: 30vw;
  min-height: 60px;
  max-height: 100px;
  object-fit: cover;
  /*height: auto;*/

}


 .container__section{
  flex-flow: row wrap;
  min-height: 200px;
   box-sizing: border-box;
   background-color: var(--BG2);
  /* width: 50vw;
      }*/
 }

.box__section{
  max-width: 100vw;
   padding: 0%;
   flex: 1 1 150px;
   gap: 0;
  
  }

/*   
  .info-box-tan {
    position: relative;
    top: 0%;
   
   padding: .5em;
    height: 13em;
    max-width: 49vw;
    flex: 1 1 150px;
}

  .info-box-dark {
    position: relative;
    top: 0%;
  
    height: 13em;
    max-width: 48vw;
    flex: 1 1 150px;
}

*/

.grid-container .box:first-child {
  background-color: var(--text-color);
  height: auto;
  grid-column: 1 / 4;
  grid-row: 1 / 5;
 
 }
 
 .grid-container .box:nth-child(2){
    object-fit: cover;
    height: 150px;
    
    grid-column: 4 / 5;
    grid-row: 1 / 2;
 }

.grid-container .box:nth-child(3){
     object-fit: cover;
    height: 150px;
 
  grid-column: 4 / 5;
  grid-row: 2 / 3;
 }

 .grid-container .box:nth-child(4){
     object-fit: cover;
    height: 150px;

  grid-column: 4 / 5;
  grid-row: 3 / 4;
 }

 .grid-container .box:nth-child(5){
     object-fit: cover;
  height: 150px;
 
  grid-column: 4 / 5;
  grid-row: 4 / 5;
 }

  .grid-container .box:nth-child(6){
    background-color: var(--BG1);
    height: 200px;
    grid-column: 1 / 3;
    grid-row: 5 / 6;
 }

  .grid-container .box:nth-child(7){
    height: 200px;
    background-color: var(--BG2);
    grid-column: 3 / 5;
    grid-row: 5 / 6;
 }

.grid-container .box .info-box-tan{
  background-color: var(--BG1);
  color: var(--text-color);
	padding: 1em;
	text-align: center;
 }

 .grid-container .box .info-box-dark{
  width: autofit;
	background-color: var(--BG2);
  color: #FFFFFF;
	padding:  15px;
	text-align: center;
 }

 .grid-container .box .info-box-dark a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 20px;
 }


}

/*Large View*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
@media screen and (min-width: 900px) {
	
   
  
      .info-box-tan{
        height: 16em;
     }
 	
	.col-md-one-half {
		width: 50%;
	}
   .col-list-width{
         width: 16%;
       
     }
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	} 

     .row {
    display: flex; /* Makes the child elements (the tables) flexible */
    align-items: stretch; /* This is the default value, but ensures children stretch to the height of the tallest sibling */
    gap: 20px; /* Optional: adds space between the tables */
}
   
.col-md-one-half{
  height: 18em;
}
h1 {
      font-size: 45px;
      }  

/* .info-box-tan {
  margin-top: -.7%;
       height: 13em;
   }*/

  
  }
/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*Desktop View*/
@media screen and (min-width: 1024px) {
	

 body {
        
		max-width: 2200px;
	}
	
   
         
	
	  .col-lg-one-fourth {
		  width: 25%;
	}
    .col-list-width{
         width: 12%;
  }
 h1 {
     font-size: 50px;
} 
}