@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Parisienne&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

:root{
	--blue:#456493;
	--black:#192a56;
	--light-color:#666;
	--box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
	--box-shadow-top:1.5rem 0 1.5rem 0.5rem rgba(0,0,0,.3);
}

a:focus,
button:focus,
.dropbtn:focus,
.onlinebtn a:focus,
header .icons i:focus,
.focusable:focus {
  outline: none; /* remove the problematic outline */
  background-color: rgba(0, 123, 255, 0.2); /* light blue highlight, tweak as needed */
  border-radius: 4px; /* optional, just for a softer look */
  transition: background-color 0.2s ease;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.dropbtn:focus:not(:focus-visible),
.onlinebtn a:focus:not(:focus-visible),
header .icons i:focus:not(:focus-visible),
.focusable:focus:not(:focus-visible) {
  box-shadow: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
  width: auto;
  height: auto;
  padding: 8px;
  background: #000;
  color: #fff;
}
*{
	font-family: 'Nunito Sans', sans-serif;
	margin:0; padding:0;
	box-sizing: border-box;
	text-decoration: none;
	outline: none; border: none;
	text-transform: uppercase;
	transition: all .2s linear;
}

html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 5.5rem;
	scroll-behavior: smooth;
}

section{
	padding:2rem 9%;
}

.sub-heading{
	text-align: center;
	color: var(--blue);
	font-size: 2rem;
	padding-top: 1rem;
	padding-bottom: 2rem;
}

.heading{
	text-align: center;
	color: var(--black);
	font-size: 3rem;
	padding-bottom: 2rem;
	text-transform: uppercase;
}

.heading2{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: var(--black);
	font-size: 1.5rem;
	padding-bottom: 1rem;
	text-transform: capitalize;
}

.heading3{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: var(--black);
	font-size: 2.5rem;
	padding-bottom: 1rem;
	text-transform: capitalize;
}
.p2{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	color:#1B1B1B;
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1.6rem;
	font-weight: normal;
	padding-bottom: 1rem;
	text-transform:none;
}

.p3{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	color:#1B1B1B;
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 2rem;
	font-weight: normal;
	padding-bottom: 1rem;
	text-transform:none;
}

.p4{
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	text-align: center;
	font-size: 3rem;
	color: #960306;	
	
}

.p5{
	text-align: left;
	color: var(--blue);
	font-size: 1.6rem;
	padding-top: 0.3rem;
	padding-bottom: 1.5rem;
	text-transform: uppercase;
	
}

.p6{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: var(--black);
	font-size: 2.5rem;
	padding-bottom: 1rem;
	font-family: 'Indie Flower', cursive;	
}

[id] {
  scroll-margin-top: 100px; /* adjust to match your sticky header height */
}

.greyline{
	height: 2px;
  background-color: #ccc; /* Match the color of your gif line */
  width: 100%;
  margin: 5px auto;
}



header{
	position: fixed;
	top: 0; left: 0; right: 0;
	padding: 1.7rem 7%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	box-shadow: var(--box-shadow);
}

header .navbar a{
	font-size: 1.7rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: var(--light-color);
}
header .navbar a:hover{
	color:#ffffff;
	background: var(--blue);
}

header .icons i,
header .icons a{
	cursor: pointer;
	margin-left: .5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	width: 4.5rem;
	text-align: center;
	font-size: 1.7rem;
	color: var(--black);
	border-radius: 50%;
	background: #eee;
}

header .icons i:hover,
header .icons a:hover{
	color:#ffffff;
	background: var(--blue);
	transform: rotate(360deg);
}

header .icons #menu-bars{
	display: none;	
}

.dropbtn {
 	font-size: 1.7rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: var(--light-color);
 	cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	color:#ffffff;
	background: var(--blue);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
	color: #fff;
  background-color: var(--blue);
}

.onlineorder {
	margin-left: 5rem;
	position: relative;
	display: inline-block;
	border-color: var(--blue);
	border-style:solid;
	border-radius: 0.7rem;
	padding: .4rem .0rem;
	font-weight: bolder;
	color: var(--blue);
}

.onlineorder .onlinebtn{
	color: var(--blue);
}

.onlineorder .onlinebtn a{
	font-size: 1.7rem;
	border-radius: 0.5rem;
	color: var(--blue);
}

.onlineorder .onlinebtn a:hover{
	color:#ffffff;
	background: var(--blue);
	border-radius: 0.5rem;
}

.focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 1rem;
  background: #fff;
  color: #000;
  z-index: 9999;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Lightbox image container */
.fun-pic img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .fun-pic img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }
}

/* Override Lightbox2 image sizing */
.lb-image {
  max-width: 100vw !important;
  max-height: 100vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .lb-outerContainer {
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: 100vh !important;
    margin: 0 auto !important;
  }
}

#search-form{
	position: fixed;
	top:-110%; left:0;
	height:100%; width:100%;
	z-index: 1004;
	background: rgba(0,0,0,.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

#search-form.active{
	top:0;
}

#search-form #search-box{
	width: 50rem;
	border-bottom: .1rem solid #fff;
	padding:1rem 0;
	color: #fff;
	font-size: 3rem;
	text-transform: none;
	background: none;
}

#search-form #search-box::placeholder{
	color: #eee;
}

#search-form #search-box::-webkit-search-cancel-button{
	-webkit-appearance:none;
}

#search-form label{
	color: #fff;
	cursor:pointer;
	font-size: 3rem;
}

#search-form label:hover{
	color:var(--blue);
}

#search-form #close{
	position: absolute;
	color: #fff;
	cursor: pointer;
	top: 2rem; right:3rem;
	font-size: 5rem;
}

.fun-pagination {
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
	font-weight: bold;
	
}

.fun-pagination .prev {
	font-size: 2rem;
}

.fun-pagination .next {
	font-size: 2rem;
}
.fun-pagination a,
.fun-pagination span.disabled {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  background: #f0f0f0;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.fun-pagination a:hover {
  background: #ddd;
}

.fun-pagination a.active {
  background: var(--blue);
  color: white;
}

.fun-pagination span.disabled {
  color: #aaa;
  background: #e0e0e0;
  cursor: default;
}

.fun-name {
  margin-top: 150px; /* or however much space you need */
  text-align: center; /* if you want it centered */
  font-size: 2em;
  color: #333; /* or whatever your theme uses */
  background-color: #F0F0F0;
}

.home {
	padding-bottom: 3rem;
	background-image: url("../images/background1.gif");
}

.home .home-slider{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width:80%;
	position: relative;
	padding-bottom: 13rem;
}

.home .home-slider .slide{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:2rem;
	padding-top: 0rem;
	padding-bottom: 0rem;
	position:relative; top: 9rem;
	background-color: transparent;
}

.home .home-slider .slide .content{
	flex:1 1 45rem;
	align-items: center;
	position: relative;
}

.home .home-slider .slide .image{
	flex:1 1 45rem;
	align-items: center;
	position: relative;
}

.home .home-slider .slide .image img{
	width: 100%;
	align-items: center;
	position: relative;
}

.swiper-container{
	overflow: hidden;
	width: 100%;
}

.swiper-pagination-bullet-active{
	background: var(--blue);
}

.slider-toggle {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	font-size: 1.5rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.slider-toggle:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.menulist-top{
	margin: auto;
  	width: 100%;
  	border: none;
  	padding-top: 24px;
	padding-bottom: 5px;
	background-color:#FFFFFF;
	justify-content: space-between;
	position: fixed;
	top: 78px;
	z-index: 100;
}

.menulist-top .content .menunav{
	text-align: center;
	justify-content: space-between;
	font-size: 1.8rem;
}

.menulist-top .content .menunav a{
	font-size: 1.8rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color:#324F39;
	font-weight:800;
}

.menulist-top .content .menunav a:hover{
	font-style: italic;
	font-weight:800;
	text-decoration: underline;
	color:#FF0004;
	transition: 1s;
}

.menulist{
	display: flex;
	padding-top: 9.5rem;
	padding-bottom: 25rem;
	justify-content: space-between;
	background-image: url("../images/cakes01.png");
	background-size: cover;
}

.menulist2{
	display: flex;
	padding-top: 9.5rem;
	padding-bottom: 25rem;
	justify-content: space-between;
	background-image: url("../images/lunch01.png");
	background-size: cover;
}

.menulist-kids{
	display: flex;
	padding-top: 9.5rem;
	padding-bottom: 25rem;
	background-image: url("../images/kids01.png");
	background-size: cover;
}

.menulist-desserts{
	display: flex;
	padding-top: 9.5rem;
	padding-bottom: 25rem;
	justify-content: space-between;
	background-image: url("../images/desserts01.png");
	background-size: cover;
}

.menulist-projects{
	display: flex;
	padding-top: 9rem;
	padding-bottom: 25rem;
	background-image: url("../images/projects.png");
	background-size: cover;
}

.menulist-beverages{
	display: flex;
	padding-top: 9rem;
	padding-bottom: 25rem;
	background-image: url("../images/beverages01.png");
	background-size: cover;
}

.menulist-about{
	display: flex;
	padding-top: 9rem;
	padding-bottom: 25rem;
	background-image: url("../images/aboutus01.png");
	background-size: cover;
}

.menulist-promotions{
	display: flex;
	padding-top: 9rem;
	padding-bottom: 25rem;
	background-image: url("../images/currentpromo01.png");
	background-size: cover;
}

.menulist-retail{
	display: flex;
	padding-top: 9rem;
	padding-bottom: 25rem;
	background-image: url("../images/retail.png");
	background-size: cover;
}

.menulist-contact{
	display: flex;
	padding-top: 25rem;
	padding-bottom: 25rem;
	background-image: url("../images/contact01.png");
	background-size: cover;
}

.menulist .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */		
}

.menulist2 .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */	
}

.menulist-kids .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}

.menulist-desserts .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}

.menulist-projects .heading {
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}

.menulist-about .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}

.menulist-beverages .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}

.menulist-promotions .heading{
  display: block;
  margin: 10rem auto 0 auto;
  padding-top: 2rem;
  color: #000;
  width: 30vw; /* use viewport width instead of percentage */
  background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  font-weight: bold;
  border-radius: 5rem;
  text-align: center; /* just in case */
}
.menulist-retail .heading{
	display: block;
  	margin: 10rem auto 0 auto;
  	padding-top: 2rem;
 	color: #000;
  	width: 30vw; /* use viewport width instead of percentage */
  	background-color: rgba(255, 255, 255, 0.8); /* fully transparent */
  	font-family: 'Parisienne', cursive;
  	text-transform: none;
  	font-size: clamp(2rem, 3vw, 7rem); /* responsive font size */
  	font-weight: bold;
  	border-radius: 5rem;
  	text-align: center; /* just in case */
}

/* Shared nav styles for all .menulist-* sections */
.menulist .content .menunav,
.menulist2 .content .menunav,
.menulist-kids .content .menunav,
.menulist-desserts .content .menunav,
.menulist-projects .content .menunav,
.menulist-about .content .menunav,
.menulist-beverages .content .menunav,
.menulist-promotions .content .menunav {
  position: fixed;
  top: 80px; /* fixed px value (should include 'px') */
  left: 0;
  right: 0;
  padding: 1rem 7%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

.menulist .content .menunav a,
.menulist2 .content .menunav a,
.menulist-kids .content .menunav a,
.menulist-desserts .content .menunav a,
.menulist-projects .content .menunav a,
.menulist-about .content .menunav a,
.menulist-beverages .content .menunav a,
.menulist-promotions .content .menunav a {
    font-size: 1.7rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    color: #324F39;
    font-weight: bold;
}

.menulist .content .menunav a:hover,
.menulist2 .content .menunav a:hover,
.menulist-kids .content .menunav a:hover,
.menulist-desserts .content .menunav a:hover,
.menulist-projects .content .menunav a:hover,
.menulist-about .content .menunav a:hover,
.menulist-beverages .content .menunav a:hover,
.menulist-promotions .content .menunav a:hover {
  font-style: italic;
  font-weight: bold;
  text-decoration: underline;
  color: #FF0004;
}

.menulist .heading h3{
	position: fixed;
}

.menulist2 .heading h3,
.menulist-kids .heading h3,
.menulist-about .heading h3 {
  text-decoration: underline;
  position: fixed;
}

.menulistbreakfast{
	margin: auto;
  	width: 100%;
  	border: none;
  	padding-top: 28px;
	padding-bottom: 5px;
	background-color:#FFFFFF;
	justify-content: space-between;
	position: sticky;
	top: 125px;
	z-index: 90;
}

.menulistbreakfast .content .menunav{
	text-align: center;
	justify-content: space-between;
	font-size: 1.5rem;
}

.menulistbreakfast .content .menunav a{
	font-size: 1.5rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: #324F39;
	font-weight:600;
}

.menulistbreakfast .content .menunav a:hover{
	font-style: italic;
	font-weight:600;
	text-decoration: underline;
	color:#FF0004;
}

.menulistbreakfast .heading h3{
	display:block;
	margin-left: auto;
	margin-right: auto;
}

.projects{
	margin: auto;
  	width: 100%;
  	border: none;
  	padding: 10px;
	background-color: #FFFFFF;
	justify-content: space-between;
}

.projects2{
	margin: auto;
  	width: 100%;
  	border: none;
  	padding: 0px;
	background-color: #FFFFFF;
	justify-content: space-between;
}

.projects .sticky .content .menunav{
	text-align: center;
	justify-content: space-between;
	font-size: 1.5rem;
}

.projects .content .menunav a{
	font-size: 1.5rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: #6D8356;
	font-weight:600;
}

.projects .content .menunav a:hover{
	font-style: italic;
	font-weight:600;
	text-decoration: underline;
	color:#FF0004;
}

.projects .heading h3{
	display:block;
	margin-left: auto;
	margin-right: auto;
}

.dishes-name{
	padding-top: 4rem;
	padding-bottom: 0rem;
	background-color:#EEEEEE;
}
.dishes{
	background-image: url("../images/ckbackground2.png");
}

.dishes .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:1.5rem;
}	
	
.dishes .box-container .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.dishes .box-container .box .breakfast-pic{
	background-image:url("../images/breakfast-flip.png");
}

.dishes .box-container .box .breakfast-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .breakfast-pic a:hover{
	opacity: 0;
}

/* Make the whole box-link clickable */
.box-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
}

/* Fix hover effect to work with unified link */
.box-link .breakfast-pic {
  background-image: url("../images/breakfast-flip.png");
}

.box-link .lunchdinner-pic {
	background-image: url("../images/lunch-flip.png");
}

.box-link .kidsmenu-pic {
	background-image: url("../images/kids-flip.png");
}

.box-link .desserts-pic{
	background-image:url("../images/desert-flip.png");
}

.box-link .beverages-pic{
	background-image:url("../images/beverages-fliip.png");
}

.box-link .promotions-pic{
	background-image:url("../images/promotions-flip.png");
}

.box-link .breakfast-pic img,
.box-link .lunchdinner-pic img,
.box-link .kidsmenu-pic img,
.box-link .desserts-pic img,
.box-link .beverages-pic img,
.box-link .promotions-pic img{
  transition: opacity 1.2s ease;
  display: block;
  width: 100%;
  height: auto;
}

/* Keep the same fade-out effect on hover */
.box-link:hover .breakfast-pic img,
.box-link:hover .lunchdinner-pic img,
.box-link:hover .kidsmenu-pic img,
.box-link:hover .desserts-pic img,
.box-link:hover .beverages-pic img,
.box-link:hover .promotions-pic img {
  opacity: 0;
}

.dishes .box-container .box .lunchdinner-pic{
	background-image: url("../images/lunch-flip.png");
	background-repeat: no-repeat;
}

.dishes .box-container .box .lunchdinner-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .lunchdinner-pic a:hover{
	opacity: 0;
}

.dishes .box-container .box .kidsmenu-pic{
	background-image:url("../images/kids-flip.png");
}

.dishes .box-container .box .kidsmenu-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .kidsmenu-pic a:hover{
	opacity: 0;
}

.dishes .box-container .box .desserts-pic{
	background-image:url("../images/desert-flip.png");
}

.dishes .box-container .box .desserts-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .desserts-pic a:hover{
	opacity: 0;
}

.dishes .box-container .box .beverages-pic{
	background-image:url("../images/beverages-fliip.png");
}

.dishes .box-container .box .beverages-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .beverages-pic a:hover{
	opacity: 0;
}

.dishes .box-container .box .promotions-pic{
	background-image:url("../images/promotions-flip.png");
}

.dishes .box-container .box .promotions-pic a{
	-webkit-transition: all ease 1.2s;
    -moz-transition: all ease 1.2s;
    -o-transition: all ease 1.2s;
    -ms-transition: all ease 1.2s;
    transition: all ease 1.2s;
	opacity:1;
}

.dishes .box-container .box .promotions-pic a:hover{
	opacity: 0;
}

.funfactslist{
	background-image: url("../images/background1.gif");
}

.funfactslist .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:1.5rem;
}	
	
.funfactslist .box-container .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.projects .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:2.5rem;
}

.projects2 .box-container10{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:2.5rem;
}


.projects .box-container .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
	
}

.projects2 .box-container10 .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0rem;
	padding-right: 0rem;
	background: #fff;
	border-radius: 1rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
}


.gift-card .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:2.5rem;
}

.gift-card .box-container .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.gift-card .box-container .box img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 400px;
	align-content: center;
}

.contact .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:2.5rem;
}

.contactus .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:2.5rem;
}

.contact .box-container .box a{
	border-color: var(--blue);
	border-style:solid;
	border-radius: 0.7rem;
	padding: .4rem .7rem;
	font-size: 1.7rem;
	color: var(--blue);
}

.contactus .box-container .box a{
	border-color: var(--blue);
	border-style:solid;
	border-radius: 0.7rem;
	padding: .4rem .7rem;
	font-size: 1.7rem;
	color: var(--blue);
}

.contact .box-container .box a:hover{
	color:#ffffff;
	background: var(--blue);
	border-radius: 0.5rem;
	transition: 1s;
}

.contactus .box-container .box a:hover{
	color:#ffffff;
	background: var(--blue);
	border-radius: 0.5rem;
	transition: 1s;
}

.projects .box-container .box img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	align-content: center;
	padding: .5rem;
}

.separator{
	background-color:#EEEEEE;
	padding: 2.5rem;
	background-image: url("../images/separaqtor01.gif");
	position: relative;
	background-attachment: fixed;
}

.classics-name{
	padding-top: 5rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.skillets-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.omelettes-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.pancakes-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.crepes-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.frenchtoast-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.lighterbreakfast-name{
	padding-top: 0rem;
	padding-bottom: 0rem;
	opacity: 0;
}

.breakfast{
	background-color:#FFFFFF;
}

.breakfast .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap: 0rem;
	background-color: #FFFFFF;
	
}	
	
.breakfast .box-container .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 0rem;
	border:.1rem solid tgba(0,0,0,.2);
	position: relative;
	overflow: hidden;
	text-align: left;
}

.breakfast .box-container .box img{
	width: 100%;
}

.breakfast .box-container .box h4{
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #960306;
}

.breakfast .box-container .box h5{
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 2rem;
	text-align: left;
	font-weight: 500;
	color:#2E2E2E;
}

.breakfast .box-container .box p2{
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1.6rem;
	text-align: left;
	font-weight: 300;
	color:#4E4E4E;
}

.breakfast .box-container .box p3{
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1.6rem;
	text-align: left;
	font-weight: 300;
	color:#B32BB3;

}


.breakfast .box-container .box_about{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem;
	background: #fff;
	border-radius: 0rem;
	border:.1rem solid tgba(0,0,0,.2);
	position: relative;
	overflow: hidden;
	text-align: left;
}

.breakfast .addition{
	background-color:#E4E8A3;
	border-radius: 1rem;
	padding: .5rem;
	color: #FFFFFF;
}

.kids .box-container{
	display:grid;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:1.5rem;
}

.kids .box-container .box img{
	width: 100%;
}

.kids .box-container .box h6{
	font-family: 'Indie Flower', cursive;
	font-size: 3rem;
}

.kids .kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
    gap: 1.5rem;
    justify-content: center; /* centers items horizontally */
	margin-left: auto;
	margin-right: auto;
	grid-auto-flow: dense;
}

.kids .kids-grid .kids-img {
    width: 100vw; /* 100% of viewport width */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*bear animation pop up*/

.kids .smile-bear {
    position: fixed;          
    top: 50%;                 
    left: 50%;                
    transform: translate(-50%, -50%) scale(0); /* start small */
    opacity: 0;               /* start invisible */
    z-index: 1000;            
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease; /* smooth appear & pop */
}

.kids .smile-bear img {
    max-width: 70vw;          
    width: auto;              
    height: auto;
    max-height: 70vh;         
}

.kids .smile-bear.show {
    opacity: 1;               
    transform: translate(-50%, -50%) scale(1); /* fade + grow */
}

.kids .smile-bear.pop {
    opacity: 0;               
    transform: translate(-50%, -50%) scale(2); /* fade + scale out */
}

/*end bear animation pop up*/

.about-name{
	padding-top: 3rem;
	padding-bottom: 0rem;
	background-color: #eee;
	box-shadow: 0.1rem 0.1rem 1.5rem 0 rgba(0,0,0,.3);;
}

.about{
	display:block;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}

.ourprojects{
	display:block;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}

.about .row{
	display:flex;
	flex-wrap: wrap;
	gap:1.5rem;
	align-items: center;
}

.ourprojects .row{
	display:flex;
	flex-wrap: wrap;
	gap:.5rem;
	align-items: center;
}

.about .row .image{
	flex:1 1 45rem;
}

.about .row .foodie{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.about .row .foodie img{
	width:100%;
}

.ourprojects .row .image{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.about .row .image img{
	width:100%;
}

.about .content .image2{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.ourprojects .row .image img{
	width:100%;
}

.about .row .content{
	flex: 1 1 45rem;
}

.ourprojects .row .content{
	flex: 1 1 65rem;
}

.ourprojects .row .content .image{
	width: 100%;
}

.about .row .content h3{
	color: var(--black);
	font-size: 3rem;
	padding: .5rem 0;
	text-align: center;
}

.ourprojects .row .content h3{
	color: var(--black);
	font-size: 3rem;
	padding: .5rem 0;
	text-align: center;
}

.about .row .content p{
	background: #fff;
	opacity:.8;
	color: var(--black);
	font-size: 1.5rem;
	padding: .5rem 0;
	line-height: 1.5;
	text-align: center;
}

.ourprojects .row .content p{
	background: #fff;
	opacity:.8;
	color: var(--black);
	font-size: 1.5rem;
	padding: .5rem 0;
	line-height: 1.5;
	text-align: center;
}

.about .row .content .navbar a{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.7rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: var(--light-color);
	position:relative;
}

.ourprojects .row .content .navbar a{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.7rem;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	color: var(--light-color);
	position:relative;
}

.about .row .content .navbar a:hover{
	color:#ffffff;
	background: var(--blue);
	transition: 1s;
}

.about .row .content .mail{
	text-align: center;
	font-size: 2rem;
}

.about .row .content .mail a{
	text-transform: lowercase;
	color: var(--blue);
	font-weight: bold;
	padding: .5rem;
}

.about .row .content .mail a:hover{
	text-decoration: underline;
	transition: 1s;
}

.about .row .content a{
	color: var(--blue);
	font-size: 1.4rem;
	border-bottom: solid;
}

.about .row .content a:hover{
	color:#860002;
}

.ourprojects .row .content .navbar a:hover{
	color:#ffffff;
	background: var(--blue);
	transition: 1s;
}

.review{
	background-color: #EEEEEE;
	padding-bottom: 0rem;
}

.customer-comments{
	background-image:url("../images/reviewsbckgr.png");
}

.customer-comments .content{
	display:grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
	gap:1.5rem;
}	
	
.customer-comments .content .box{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 0rem;
	background: #fff;
	border-bottom-left-radius: 2rem;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	border:.1rem solid tgba(0,0,0,.2);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
	opacity: 1;
}

.customer-comments .content .box .heading{
	color: #FFFFFF;
	background-color: #2D436A;
	font-size: 2rem;
	padding-bottom: 1rem;
	padding-top:  1rem;
	margin: 0rem;
}

.customer-comments .content .box .heading2{
	color:#2F2F2F;
	background-color: #FFFFFF;
	font-size: 1.6rem;
	padding-bottom: 1rem;
	padding-top:  1rem;
	margin: 1.3rem;
}

.customer-comments .content .box .heading3{
	color:#2D436A;
	background-color: #FFFFFF;
	font-size: 1.3rem;
	padding-bottom: 1rem;
	padding-top:  1rem;
	margin: 1.3rem;
	text-align: right;
}

.loyalty-name{
	background: #fff;
}

.loyalty{
	display:block;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}

.loyalty .row{
	display:flex;
	flex-wrap: wrap;
	gap:1.5rem;
	align-items: center;
}

.loyalty .row .image{
	flex:1 1 45rem;
	flex-wrap: wrap;
}

.loyalty .row .content .image img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 70%;
}

.loyalty .row .content{
	background: #fff;
	flex: 1 1 45rem;
}

.loyalty .row .content h3{
	color: var(--black);
	font-size: 3rem;
	padding: .5rem 0;
	text-align: center;
}

.loyalty .row .content p{
	background: #fff;
	opacity:.8;
	color: var(--black);
	font-size: 1.5rem;
	padding: .5rem 0;
	line-height: 1.5;
	text-align: center;
}

.joinnow{
	margin-left: auto;
	margin-right: auto;
	position:relative;
	display: block;
	font-weight: bolder;
	color: var(--blue);
	text-align: center;
	padding: 1.5rem 1.5rem;
}

.loyalty .row .content .box a{
	border-color: var(--blue);
	border-style:solid;
	border-radius: 0.7rem;
	padding: .4rem .7rem;
	font-size: 1.7rem;
	color: var(--blue);
}

.loyalty .row .content .box a:hover{
	color:#ffffff;
	background: var(--blue);
	border-radius: 0.5rem;
	transition: 1s;
}

.notice{
	text-align: center;
}

.notice .box{
	border: solid;
	border-style: double;
	padding: 1.3rem;
	border-color: #eee;
}

.footer{
	background-color:#D3C675;
}

.footer .box-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap:1.5rem;
	background-color:#D3C675;
}

.footer .box-container .box{
	display:block;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
	padding: .5rem 0;
	font-size: 1.2rem;
	color:var(--black);
}

.footer .box a{
	cursor: pointer;
	height: 4.5rem;
	line-height: 2.5rem;
	width: 4.5rem;
	text-align: center;
	font-size: 1.3rem;
	color:#30376C;
	padding-left: .5rem;
	padding-right: .5rem;
	padding-bottom: 0rem;
	font-weight: 800;
}

.footer .box a:hover{
	color: #FFFFFF;
	transition: 1.2;
}

.footer .box-container .box1{
	display:block;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
	padding: .5rem 0;
	font-size: 1.2rem;
	color:var(--black);
}

.footer .box-container .box2{
	display:block;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
	padding: .5rem 1rem;
	font-size: 1.2rem;
	color:var(--black);
}

.footer .box2 i,
.footer .box2 a{
	cursor: pointer;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	height: 4rem;
	line-height: 4rem;
	width: 4rem;
	text-align: center;
	font-size: 1.7rem;
	color: var(--black);
	border-radius: 50%;
	background: #FFF;
}

.footer .box2 i:hover{
	color:#fff;
	background-color: var(--blue);
	transform: rotate(360deg);
	transition: 1.2s;
}

.credit{
	font-size: 12px;
	text-align: center;
}


.contact{
	margin:0;
	padding-top: 2rem;
	padding-bottom: 5rem;
	font-family: sans-serif;
}

.contactus{
	margin:0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-family: sans-serif;
	width: 100%;
	background-image: url("../images/ckbackgroundcontact.png");
}

.contactus .contact-form{
	border: solid;
	border-color: var(--black);
	border-width: .2rem;
	box-shadow: 0 0 4px 0 rbga(0,0,0,.5);
	margin: 50px auto;
	width: 40rem;
	text-align: center;
	background-color:#E0E0E0;
	border-radius: 20px;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.contactus .contact-form input{
	border: solid;
	border-width: .1rem;
	border-color: #D7D7D7;
	display: block;
	width: 90%;
	margin: 10px auto;
	padding: 10px;
	text-transform: none;
	font-size: 1.7rem;
}

.contactus .contact-form textarea{
	border: solid;
	border-width: .1rem;
	border-color: #D7D7D7;
	width:90%;
	margin: 5px auto;
	padding: 10px;
	height: 80px;
	text-transform: none;
	font-size: 1.7rem;
}

.contactus .contact-form .submit-btn{
	cursor: pointer;
	color:#fff;
	background-color: var(--blue);
	border-radius: 5%;
	font-size: 1.5rem;
	font-weight: bold;
	width: 150px !important;
	margin-left: 22px !important;
}

.g-recaptcha{
	width: 80%;
	margin-left: 16px;
}

.status{
	font-size: 15px;
	color: green;
	padding: 15px;
}

.status span{
	color:red;
}

/* Container that holds the lightbox image */
.lightbox-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* Modal background should fill screen */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* Ensure modal content adjusts on small screens */

/* Optional: constrain lightbox modal max size on small screens */
@media (max-width: 768px) {
  .lightboxOverlay,
  .lightbox {
    width: 100vw !important;
    height: 100vh !important;
  }

  .lb-outerContainer {
    max-width: 90vw !important;
    max-height: 90vh !important;
  }

  .lb-image {
    max-width: 100% !important;
    height: auto !important;
  }
}


/* media queries */

@media (max-width:991px){
	
	html{
		font-size: 55%;
	}
	
	header{
		padding: 1rem 2rem;
	}
	
	section{
		padding:2rem;
	}
}

@media (max-width:768px){
	header .icons #menu-bars{
		display: inline-block;	
	}
	
	header .navbar{
		position: absolute;
		top:100%; left:0; right:0;
		background: #ffffff;
		border-top: .1rem solid rgba(0,0,0,.2);
		border-bottom: .1rem solid rgba(0,0,0,.2);
		padding:1rem;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	
	header .navbar.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
	
	header .navbar a{
		display: block;
		padding: 1.5rem;
		margin: 1rem;
		font-size: 2rem;
		background: #eee;
	}
	
	#search-form #search-box{
		width:90%;
		margin:0 1rem;
	}
}

@media (max-width:991px){
	
	html{
		font-size: 50%;
	}


@media
(prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
