:root {
  --black-dark: #000000;
  --bg-black-light: #000000b0;
  --green-mid: #687972;
  --blue: #46aff3;
  --blue-dark: #0099ff;
  --card-bg: #e8d9b8;
  --text-light: #f5f5f5;
  --text-muted: #b0c4b8;
  --dark-bg: #111c17;
  --bg-white: #ffffff;
  --text-black: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* @font-face {
  font-family: "Gala Biline";
  src: url('../font/fonts/fonnts.com-Gala_Biline.otf');
} */

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-white);
  color: #1a1a1a;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-weight: 800;
  font-size: calc(max(3rem, 3.8vw));
}

h2 {
  font-weight: 700;
  font-size: calc(max(2.5rem, 3vw));
}
h3{
  font-size: calc(max(1.5rem, 2.5vw));
}

.section {
  padding: 3rem 0rem;
}

.highlights {
  color: #0099ff;
  font-weight: 600;
}

.text-blue{
  color: var(--blue);
}
#mainTitle {
  color: white;
  font-size: 16px;
}

.main-logo {
  filter: invert(1) brightness(10) contrast(2);
}

.resto-name {
  /* margin-top: 10px; */
  display: inline-block;
  position: relative;
  top: .1rem;
}
.breadcrumb-section .breadcrumb-wrapper {
  position: relative;
  /* background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('../images/banner/land_banner3.jpg'); */
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('../images/banner/troller_banner3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero h1 {
  font-weight: 500;
  /* font-size: calc(max(3rem, 7.8vw));
  text-transform: uppercase; */
  font-size: calc(max(3.6rem, 6.5vw));
    text-transform: uppercase;
    /* letter-spacing: -3px; */
}
.head-text h1 {
  text-transform: uppercase;
  text-align: center;
}
.head-text h1 span {
  position: relative;
}
.head-text h1 span::after {
  content: "";
  position: absolute;
  height: 60%;
  aspect-ratio: 1;
  background-image: url('../images/shape/dish1.png');
  animation: 20s linear 0s infinite normal none running cir36;
  background-size: contain;
  background-position: center;
  left: 25%;
    top: 20%;
}
/* header{
  position: sticky;
  top: 0;
  z-index: 99;
} */

/* a{
  cursor: url(../images/icon/fish.png), auto;
} */

p {
  color: var(--text-black);
}

.menu-card p {
  color: var(--black-dark);
}

.resto-section h3 {
  font-size: calc(max(2.5rem, 2.5vw));
}

.resto-section h4 {
  font-size: 1.5rem;
}

.resto-section .food-img {
  border-radius: 20px 20px 0px 0px;
  background-color: #ffffff;
  padding: 0;
  padding: 14px;
  color: black;
}

.resto-section .food-img2 {
  border-radius: 0px 0px 20px 20px;
  background-color: #46aff3;
  padding: 0;
  padding: 30px 10px;
  color: white;
}


.testimonial P {
  color: var(--black-dark);
}

.navbar {
  background-color: var(--black-dark);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-toggler-icon {
  filter: invert(1);
  border: 1px solid;
  border-radius: 5px;
  width: 36px;
  height: 36px;
}

.navbar-nav .nav-item .nav-link {
  color: var(--text-light);
  text-transform: uppercase;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: white;
  /* background-color: #ecaf06; */
  background-color: var(--blue);
  border: 1px solid;
}

.nav-pills .nav-link {
  border: 1px solid #46aff3;
  color: black;
  background-color: transparent;
}


.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cat-btn {
  background-color: var(--amber);
  padding: 5px 15px;
  border-radius: 1rem;
  margin-bottom: 5px;
  border: 1px solid white;
  color: white;
}

.btn {
  /* background-color: var(--amber); */
  background-color: var(--blue);
  color: white;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 1rem;
}

.btn2 {
  /* background-color: var(--amber); */
  background-color: var(--blue);
  font-size: 12px;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 1rem;
}

.btn:hover {
  background-color: var(--black-dark);
  color: white;
  border: 2px solid white;
}

.banner-content {
  background-color: var(--bg-black-light);
}

.border1 {
  border-radius: 1rem;
}

.border-50 {
  border-radius: 50%;
}

footer h4 {
  font-weight: 600;
  text-transform: uppercase;
}

small.error {
  color: red;
  font-size: 18px;
  margin-top: 5px;
}

/* .hero-bg {
  background: url("../images/banner/banner1.jpg") no-repeat;
  background-size: cover;
  background-position: center;

} */

.swiper-slide .banner-content,
.swiper-slide .thumbImg {
  opacity: 0;
  transform: translateY(40px);
  transition: all 5s ease;
}

.swiper-slide-active .banner-content,
.swiper-slide-active .thumbImg {
  opacity: 1;
  transform: translateY(0);
}

/* 27.About */
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.about-wrapper {
  position: relative;
}


.about-wrapper img {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about-wrapper .shape1 {
  position: absolute;
  bottom: -100px;
  right: 8px;
  z-index: 1;
  padding: 5px;
  background-color: #000000;
}

.about-wrapper .shape3 {
  position: absolute;
  top: 120px;
  left: 200px;
  z-index: 2;
}

.about-wrapper .shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about-wrapper .shape6 {
  position: absolute;
  top: 120px;
  right: 200px;
  z-index: 2;
}

.menu-dish {
  background-color: var(--blue);
  max-width: fit-content;
  padding: 8px;
  border-radius: 2rem;
  color: white;
  font-size: 14px;
}

.menu-wrapper {
  position: relative;
}

.menu-wrapper .menu-dish1 {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 350px;
  z-index: -1;
}

.menu-wrapper .menu-dish2 {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 350px;
  z-index: -1;
}

.menu-wrapper .menu-dish3 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 350px;
  z-index: -1;
}

.cta-section .about-wrapper {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner/troller_banner3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cta-section h3 {
  font-size: calc(max(1.5rem, 2.5vw));
  font-weight: 700;
}


.resto-section .resto-wrapper {
  position: relative;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/banner/land_banner2.jpg'); */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/banner/troller_banner3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.contact-section .contact-wrapper {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/banner/land_banner3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.float-bob-x {
  /* -webkit-animation-name: float-bob-x; */
  animation-name: float-bob-x;
  /* -webkit-animation-duration: 3s; */
  animation-duration: 3s;
  /* -webkit-animation-iteration-count: infinite; */
  animation-iteration-count: infinite;
  /* -webkit-animation-timing-function: linear; */
  animation-timing-function: linear;
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

marquee h2 {
  color: white;
  text-transform: uppercase;
}

marquee h2:hover {
  color: red;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}


.counterup h2 {
  color: var(--text-light);
}

.counterup h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.counter-card {
  padding: 10px;
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid white;
  border-top: 4px solid var(--amber);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.img-overlay {
  position: relative;
}

.special-menu {
  /* background-image: url('../images/shape/menu-bg.jpg'); */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/shape/menu-bg.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00000099;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.overlay:hover {
  background-color: #000000c2;
  transition: .5s ease;
  cursor: pointer;
}

.img-overlay .overlay {
  height: 100%;
}

.img-overlay .text {
  white-space: nowrap;
  color: white;
  /* font-size: 1.5rem; */
  font-size: calc(max(1.2rem, 1.6vw));
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  overflow: hidden;
  top: 50%;
  padding: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.img-overlay .text2 {
  white-space: nowrap;
  color: white;
  /* font-size: 1.5rem; */
  font-size: calc(max(1.5rem, 1.3vw));
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  overflow: hidden;
  top: 50%;
  padding: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* testimonial css */

.testimonial-card.style1 {
  padding: 25px;
  margin: 5px;
  max-width: 757px;
  border-radius: 16px;
  /* border-top: 4px solid var(--amber); */
  /* background: var(--bg-white); */
  /* box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06); */
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.testimonial-card.style1 .testimonial-header {
  position: relative;
  margin-bottom: 22px;
}
.testimonial-card h4 {
  font-size: 1.2rem;
}

.testimonial-card.style1 .quote {
  filter: invert(1) contrast(5);
}

.testimonial-card.style1 .testimonial-header .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card.style1 .testimonial-header .quote {
  position: absolute;
  top: 0;
  right: -20px;
}

/* menu css */
.menu-price {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.menu-name {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.special-menu .desc {
  color: #ffffff;
  opacity: .7;
}
.special-menu p {
  color: #ffffff;
  /* opacity: .7; */
}

.menu-border {
  width: 100%;
  flex: 1 1 0%;
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(183, 183, 183);
}


/* gallery css */

.gallery-section {
  background: #f5f5f5;
}

/* Masonry Layout */
.masonry-gallery {
  column-count: 4;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: .4s ease;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .masonry-gallery {
      column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-gallery {
      column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-gallery {
      column-count: 1;
  }
}

/* footer css */

.social-icon i:hover {
  color: white;
  font-size: 18px;
  background-color: #0099ff;
  padding: 7px;
  border-radius: 10px;
}

.social-icon i {
  color: white;
  font-size: 18px;
  padding: 7px;
  background-color: var(--blue);
  border: 1px solid white;
  border-radius: 10px;
}

a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
  color: #0099ff !important;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

footer .footer-curve {
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  /* padding: 2rem; */
  border-radius: 2rem 2rem 0rem 0rem;
}

/* .section {
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
} */

/* Day names (Sun, Mon, Tue...) */
.fc .fc-col-header-cell-cushion {
  color: #000 !important;
  font-weight: 600;
}

/* Date numbers (1, 2, 3...) */
.fc .fc-daygrid-day-number {
  color: #000 !important;
  font-weight: 600;
}

/* Today's date */
.fc .fc-day-today .fc-daygrid-day-number {
  color: #000 !important;
}

/* Calendar title (July 2026) */
.fc .fc-toolbar-title {
  color: #000 !important;
}

/* Optional: day cells */
.fc-theme-standard td,
.fc-theme-standard th {
  color: #000 !important;
}

/* widget css */
.widget.main-widget {
  background-color: #ffffff;
  color: #000000;
  bottom: 1rem;
  left: 50%;
  z-index: 9999 !important;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 3rem;
  border: 1px solid #2b2b2b;
}

@media screen and (min-width: 768px) {
.widget.main-widget {
      border-radius: 50%;
      aspect-ratio: 1;
      width: 120px;
      padding: 0.5rem;
  }
}

.widget.main-widget a {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 1.1rem;
}

/* loader style css */
@keyframes fish {
  100% {
      stroke-dasharray: 329;
      stroke-dashoffset: 658;
  }
}

#overlayer {
  position: fixed;
  background: #3cbffc;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

#overlayer.fade-out {
  opacity: 0;
  visibility: hidden;
}

#overlayer #spinner {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#overlayer #spinner svg.spinner-webkit {
  width: 100px;
  height: 100px;
}

#overlayer #spinner svg.spinner-webkit path {
  stroke-dasharray: 329;
  stroke-dashoffset: 0;
  stroke: #ffffff;
  stroke-width: 1.8px;
  animation: fish 4s ease-in-out infinite;
  fill: transparent;
  fill-opacity: 0;
}