/* FILE CONTENT */
/*
BASIC RESET (Body font, body padding etc)
COLOR MODE (Everything related to light and dark mode colors & util classes related to color mode)
LAYOUT (Container, section padding)
HEADER
FOOTER
BUTTONS
FILTER BUTTON
INFO CARD
TESTIMONIAL CARD
AUTHOR CARD
OFEERING CARD
MENU CARD
HERO SECTION
ABOUT US SECTION
TESTIMONIALS SECTION
VISIT US SECTION
PARTNER WITH US
MENU PAGE
UTILS
*/

:root,
[data-bs-theme='light'] {
  --bs-body-font-family: 'Poppins', sans-serif;
  --blue: #6752e0;
  --blue-hover: #492fda;
  --font-display: 'Qwigley', cursive;
}

html {
  /* If your content is too close or beneath the header when making use of smooth scroll, You can uncomment the following property. Play around with the value to achieve desired result */
  scroll-padding-top: 40px;
}

body {
  line-height: 170%;
}

small {
  font-size: 12px;
}

.font-display {
  font-family: var(--font-display);
}

/*******************************/
/* COLOR MODE */
/*******************************/

/* Light mode colors */
[data-bs-theme='light'] {
  --bs-body-color: #4b5563;
  --bs-body-color-rgb: 75, 85, 99;
  --bs-body-bg: #ffffff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #030712;
  --bs-emphasis-color-rgb: 3, 7, 18;
  --nav-border-color: #f3f4f6;
  --btn-secondary: #f0eefc;
  --btn-secondary-hover: #d0cbf6;
  --filter-btn-bg: transparent;
  --filter-btn-bg-hover: #f0eefc;
  --filter-btn-border: #f4f4f4;
  --gold: hsl(31, 100%, 43%);
  --bg-light: hsl(0, 0%, 99%);
  --bg-gradient: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  --menu-card-bg: transparent;
  --menu-card-border-color: #f4f4f4;
}

/* Dark mode colors */
[data-bs-theme='dark'] {
  --bs-body-color: #9ca3af;
  --bs-body-color-rgb: 156, 163, 175;
  --bs-body-bg: #050311;
  --bs-body-bg-rgb: 5, 3, 17;
  --bs-emphasis-color: #f9fafb;
  --bs-emphasis-color-rgb: 249, 250, 251;
  --nav-border-color: #111827;
  --btn-secondary: #150c45;
  --btn-secondary-hover: #1f1268;
  --filter-btn-bg: #0a0623;
  --filter-btn-bg-hover: #150c45;
  --filter-btn-border: transparent;
  --gold: hsl(31, 100%, 73%);
  --bg-light: hsl(0, 0%, 11%);
  --bg-gradient: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  --menu-card-bg: #0a0623;
  --menu-card-border-color: transparent;
}

/* Elements with 'd-light-none' class wont be displayed in light mode */
[data-bs-theme='light'] .d-light-none {
  display: none;
}

/* Elements with 'd-dark-none' class wont be displayed in dark mode */
[data-bs-theme='dark'] .d-dark-none {
  display: none;
}

/* Suitable for headers and important text */
.text-emphasis {
  color: var(--bs-emphasis-color);
}

.text-gold {
  color: var(--gold);
}

.bg-light {
  background-color: var(--bg-light) !important;
}

input,
textarea {
  border-color: var(--bs-body-color) !important;
  background-color: var(--bg-light) !important;
}

/* Theme toggler button styling */
#theme-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
}

/*******************************/
/* LAYOUT */
/*******************************/
.container,
.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: clamp(2rem, 0.6154rem + 6.1538vw, 6rem);
  padding-bottom: clamp(2rem, 0.6154rem + 6.1538vw, 6rem);
}

/*******************************/
/* HEADER  */
/*******************************/

.c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.c-header-content {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-logo:link,
.c-logo:visited {
}

.c-logo:hover {
}

.c-logo:active {
}

.c-logo-img {
  display: inline-block;
  height: 32px;
}

.c-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 30px;
  background-color: transparent;
  position: relative;
  z-index: 20;
}

.c-toggler-icon,
.c-toggler-icon::before,
.c-toggler-icon::after {
  display: inline-block;
  height: 2px;
  width: 32px;
  border-radius: 20px;
  background-color: var(--bs-emphasis-color);
  transition: all 0.3s ease;
}

.c-toggler-icon {
  position: relative;
}

.c-toggler-icon::before,
.c-toggler-icon::after {
  position: absolute;
  left: 0;
  content: '';
  display: inline-block;
}

.c-toggler-icon::before {
  top: -10px;
}

.c-toggler-icon::after {
  top: 10px;
}

.c-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  height: 100dvh;
  width: 100%;
  background-color: var(--bs-body-bg);
  left: 100%;
  transition: all 0.6s ease;
}

.c-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
}

.c-menu-item {
}

.c-menu-link:link,
.c-menu-link:visited {
  text-decoration: none;
  color: var(--bs-emphasis-color);
  font-size: 16px;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.c-menu-link::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.c-menu-link:hover::after,
.c-menu-link.active::after {
  opacity: inherit;
  bottom: -8px;
}

.c-menu-link:active {
  opacity: 1;
}

.c-menu-link.active {
  opacity: 1;
}

/* STYLING WHEN HEADER IS OPEN */
.c-header.open .c-toggler-icon {
  background-color: transparent;
}

.c-header.open .c-toggler-icon::before,
.c-header.open .c-toggler-icon::after {
  top: 0;
}

.c-header.open .c-toggler-icon::before {
  transform: rotate(135deg);
}

.c-header.open .c-toggler-icon::after {
  transform: rotate(-135deg);
}

.c-header.open .c-nav {
  left: 0;
}

/* STYLING FOR DESKTOP HEADER */
/* Change min-width to desired value to achieve responsiveness at diff screen size.
(NOTE: We cannot use CSS properties to set min-width value. It as to be done manually) */
@media screen and (min-width: 1200px) {
  .c-toggler {
    display: none;
  }

  .c-logo-img {
    height: 64px;
  }

  .c-nav {
    position: relative;
    z-index: auto;
    top: auto;
    height: auto;
    width: auto;
    background-color: transparent;
    left: auto;
  }

  .c-menu {
    gap: 48px;
    flex-direction: row;
  }
}

/* STYLING WHEN HEADER IS FIXED */
.c-header.fixed {
  position: fixed;
  background-color: rgba(var(--bs-body-bg-rgb), 0.8);
  border-bottom: 1px solid var(--nav-border-color);
  backdrop-filter: blur(5px);
}

.c-header.fixed .c-logo-img {
  height: 32px;
}

/*******************************/
/* FOOTER  */
/*******************************/
.footer-logo img {
  max-width: 250px;
}

.contact-links a {
  display: flex;
  gap: 16px;
}

.contact-links a i {
  font-size: 20px;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.footer-link:hover,
.footer-link:active {
  color: var(--bs-emphasis-color);
}

.latest-posts {
  display: flex;
  gap: 16px;
}

.latest-posts a:link,
.latest-posts a:visited {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.latest-posts a:hover img {
  transform: scale(1.1);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a:link,
.social-links a:visited {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--btn-secondary);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: inherit;
}

.social-links a:hover,
.social-links a:active {
  color: var(--bs-emphasis-color);
  background-color: var(--btn-secondary-hover);
}

/*******************************/
/* BUTTONS */
/*******************************/
.btn {
  --bs-btn-padding-x: 24px;
  --bs-btn-padding-y: 12px;
  --bs-btn-font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  --bs-btn-color: #fafafa;
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-color: #fafafa;
  --bs-btn-hover-bg: var(--blue-hover);
  --bs-btn-hover-border-color: var(--blue-hover);
  --bs-btn-active-color: #fafafa;
  --bs-btn-active-bg: var(--blue-hover);
  --bs-btn-active-border-color: var(--blue-hover);
}

.btn-secondary {
  --bs-btn-color: var(--bs-emphasis-color);
  --bs-btn-bg: var(--btn-secondary);
  --bs-btn-border-color: var(--btn-secondary);
  --bs-btn-hover-color: var(--bs-emphasis-color);
  --bs-btn-hover-bg: var(--btn-secondary-hover);
  --bs-btn-hover-border-color: var(--btn-secondary-hover);
  --bs-btn-active-color: var(--bs-emphasis-color);
  --bs-btn-active-bg: var(--btn-secondary-hover);
  --bs-btn-active-border-color: var(--btn-secondary-hover);
}

.btn-transparent {
  --bs-btn-hover-color: var(--bs-emphasis-color);
  --bs-btn-active-color: var(--bs-emphasis-color);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 14px !important;
}

/*******************************/
/* FILTER BUTTON */
/*******************************/
.filter-container {
}

.filter-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-btn-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  list-style: none;
  gap: 32px;
  overflow-x: scroll;
  width: calc(100% - 120px);
  scroll-behavior: smooth;
}

.filter-btn-list::-webkit-scrollbar {
  height: 0;
}

.filter-btn-list.dragging {
  scroll-behavior: auto;
  cursor: grab;
  user-select: none;
}

.filter-btn-list.dragging li,
.filter-btn-list.dragging a,
..filter-btn-list.dragging img,
.filter-btn-list.dragging span {
  user-select: none;
}

.filter-btn:link,
.filter-btn:visited {
  color: var(--bs-emphasis-color);
  text-decoration: none;
  background-color: var(--filter-btn-bg);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 200px;
  border: 1px solid var(--filter-btn-border);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.filter-btn:hover,
.filter-btn:active {
  background-color: var(--filter-btn-bg-hover);
}

.filter-btn.active {
  color: #fff;
  background-color: var(--blue);
}

.filter-btn .h6 {
  font-size: 14px;
  margin: 0;
}

.filter-btn img {
  height: 36px;
  width: auto;
}

/*******************************/
/* INFO CARD */
/*******************************/
.info-card {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-gap: 8px;
}

.info-card-icon {
  height: 56px;
  width: auto;
  display: inline-block;
}

.info-card .h5 {
  margin-bottom: 0;
}

.info-card p {
  margin-bottom: 0;
}

/*******************************/
/* TESTIMONIAL CARD */
/*******************************/
.testimonial-card {
  background: linear-gradient(180deg, #6752e0 0%, #382d7a 100%);
  border: none;
  color: #fff;
  border-radius: 16px;
}

/* Uncomment following code if you want testimonial author to be placed at the bottom of the card */
/* .testimonial-card .card-body {
  display: flex;
  flex-direction: column;
}

.testimonial-card .card-body p {
  margin-bottom: auto;
} */

/*******************************/
/* AUTHOR CARD */
/*******************************/
.author-card {
  display: flex;
  gap: 16px;
}

.author-card-img {
  display: inline-block;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.author-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-card .h6 {
  margin-bottom: 0;
}

.author-card-rating {
  display: flex;
  gap: 4px;
}

.author-card-rating span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 193, 7, 1);
}

/*******************************/
/* OFFERING CARD */
/*******************************/

.offering-card {
}

.offering-card-bg {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 1 / 2;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-card-bg-1 {
  background-image: linear-gradient(
      to bottom,
      rgba(201, 126, 58, 0.8),
      rgba(63, 39, 26, 0.8)
    ),
    url('./../img/offerings-section/bg/waffle-sandwich.webp');
}

.offering-card-bg-2 {
  background-image: linear-gradient(
      to bottom,
      rgba(215, 138, 55, 0.8),
      rgba(73, 57, 46, 0.8)
    ),
    url('./../img/offerings-section/bg/pancakes-and-waffles.webp');
}

.offering-card-bg-3 {
  background-image: linear-gradient(
      to bottom,
      rgba(131, 109, 135, 0.8),
      rgba(105, 64, 45, 0.8)
    ),
    url('./../img/offerings-section/bg/speciality-cakes.webp');
}

.offering-card-bg-4 {
  background-image: linear-gradient(
      to bottom,
      rgba(185, 141, 102, 0.8),
      rgba(27, 25, 29, 0.8)
    ),
    url('./../img/offerings-section/bg/beverages.webp');
}

@media (min-width: 1400px) {
  .offering-card-bg {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }
}

.offering-card-img {
  width: 150%;
  transform: translateX(50%);
  max-width: 280px;
}

@media (min-width: 768px) {
  .offering-card .order-lg-2 .offering-card-img {
    transform: translateX(-50%);
  }
}

@media (min-width: 1400px) {
  .offering-card-img {
    width: 100%;
    transform: translateX(50%);
    max-width: 360px;
  }
}

/*******************************/
/* MENU CARD */
/*******************************/
.menu-card {
  background-color: var(--menu-card-bg);
  border: 1px solid var(--menu-card-border-color);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.menu-card {
  font-size: 14px;
}

.menu-card:not(:last-child) {
  margin-bottom: 64px;
}

.menu-card-img-wrapper {
  width: 100%;
  height: 240px;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .menu-card {
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

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

.hero-swiper-media {
  position: relative;
}

.hero-swiper-img {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: moveUpDown 5s ease-in-out infinite;
  width: 100%;
}

.hero-swiper-img {
  width: 100%;
  max-width: 360px;
}

.hero-swiper-video-wrapper {
  display: inline-block;
  max-width: 50%;
  height: 60dvh;
  max-height: 480px;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: right;
}

@media (min-width: 992px) {
  .hero-swiper-video-wrapper {
    max-width: initial;
    max-height: initial;
    height: calc(100dvh - 200px);
    aspect-ratio: 2 / 3;
  }
}

.hero-swiper-video-wrapper::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-image: linear-gradient(to bottom, #1f0f08, #9e6530);
}

.hero-swiper-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: var(--bs-emphasis-color);
}

@media (min-width: 992px) {
  .hero {
    height: 100dvh;
  }

  .hero-swiper-img {
    width: 100%;
    max-width: 480px;
  }

  .swiper-pagination {
    bottom: 32px !important;
  }
}

/*******************************/
/* ABOUT US SECTION */
/*******************************/
.about-grad {
  display: inline-block;
  background: linear-gradient(180deg, #8e4f1d 0%, #6752e0 100%);
  margin-bottom: 32px;
  margin-right: 32px;
}

.about-grad img {
  transform: translate(32px, 32px);
}

.about-title {
  display: grid;
  align-items: center;
  grid-template-columns: max-content min-content 1fr;
}

.about-title::before,
.about-title::after {
  content: '';
  background-color: var(--gold);
  display: inline-block;
}

.about-title::before {
  height: 4px;
  width: 4px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  transform: rotate(45deg);
  margin-left: 24px;
}

.about-title::after {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  height: 1px;
  width: 100%;
  max-width: 200px;
}

/*******************************/
/* TESTIMONIALS SECTION */
/*******************************/
#testimonials {
  background-image: var(--bg-gradient), url('./../img/testimonials/bg.jpg');
}

.testimonial-swiper-wrapper {
  position: relative;
}

.testimonial-swiper {
  width: 75%;
  height: 450px;
}

@media (min-width: 576px) {
  .testimonial-swiper {
    height: 285px;
    width: 80%;
  }
}

@media (min-width: 768px) {
  .testimonial-swiper {
    height: 260px;
    width: 80%;
  }
}

@media (min-width: 992px) {
  .testimonial-swiper {
    width: 90%;
    height: 450px;
  }
}

@media (min-width: 1200px) {
  .testimonial-swiper {
    width: 90%;
    height: 365px;
  }
}

@media (min-width: 1400px) {
  .testimonial-swiper {
    width: 90%;
    height: 340px;
  }
}

.testimonial-swiper .swiper-slide {
  display: flex;
}

.testimonial-swiper-prev,
.testimonial-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-swiper-prev {
  left: 0;
}
.testimonial-swiper-next {
  right: 0;
}

/*******************************/
/* VISIT US SECTION */
/*******************************/

.map {
  height: 400px;
  width: 100%;
  max-width: 1000px;
  border-radius: 24px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/*******************************/
/* PARTNER WITH US */
/*******************************/
.deco-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  max-width: 400px;
  transform: translate(-20%, -50%);
  z-index: 9999;
}

#partner-with-us {
  position: relative;
}

.form-group::after {
  content: attr(data-error);
  font-size: 14px;
  font-style: italic;
  color: var(--bs-red);
  text-align: right;
  width: 100%;
}

/*******************************/
/* MENU PAGE */
/*******************************/
.menu-side-img-wrapper {
  aspect-ratio: 1 / 1.5;
  border-radius: 16px;
  background-image: linear-gradient(
      to bottom,
      rgba(201, 126, 58, 0.8),
      rgba(63, 39, 26, 0.8)
    ),
    url(./../img/menu/bg/waffle-sandwich-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.menu-side-img-wrapper img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*******************************/
/* UTILS */
/*******************************/
.text-primary {
  color: var(--blue) !important;
}

.form-control::placeholder {
  color: transparent;
}

.pt-10 {
  padding-top: 100px;
}

.max-w-8 {
  max-width: 800px;
}

.btn-icon-size {
  height: 28px;
  width: 28px;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  border: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-icon-size:hover {
  background-color: var(--blue-hover);
}

@keyframes moveUpDown {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(
      -50%,
      calc(-50% - 20px)
    ); /* adjust the distance the element moves */
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
  33% {
    background-size: calc(100% / 3) 0%, calc(100% / 3) 100%, calc(100% / 3) 100%;
  }
  50% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 0%, calc(100% / 3) 100%;
  }
  66% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%, calc(100% / 3) 0%;
  }
}

.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
