@import url('https://fonts.googleapis.com/css2?family=Buda:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #BC6C25;
  --secondary-color:              #DDA15E;
  --section-bg-color:             #30100e;
  --custom-btn-bg-color:          #BC6C25;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family: "Open Sans", sans-serif;
  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             600;
}
html, body {
  overflow-x: hidden;
}
body {
background: linear-gradient(135deg, black, #220033);
  font-family: var(--body-font-family);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background:#30100e;
}
.glightbox-open {
  height: auto !important;
}
.glightbox .gdesc-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px;
  width: 100%;
  font-size: 16px;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  font-family: "Merienda", cursive;
}

h2 {
  font-size: var(--h2-font-size);
  font-family: "Merienda", cursive;
}

h3 {
  font-size: var(--h3-font-size);
  font-family: "Merienda", cursive;
}

h4 {
  font-size: var(--h4-font-size);
  font-family: "Merienda", cursive;
}

h5 {
  font-size: var(--h5-font-size);
  font-family: "Merienda", cursive;
}

h6 {
  font-size: var(--h6-font-size);
  font-family: "Merienda", cursive;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}
.fa-birthday-cake {
    color: #ff7f50; /* Coral color for the birthday cake */
}

.fa-heart {
    color: #ff69b4; /* Hot Pink for anniversary */
}

.fa-gift{
    color: #32cd32; /* Lime Green for wedding */
}

.fa-users {
    color: #fff; /* Dodger Blue for cozy gathering */
}

.fa-cookie-bite{
    color: #553311; /* Chocolate color for sweet craving */
}
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#590487;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    width: 140px; /* Adjust logo size */
    height: 140px;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-logo img {
    width: 100%;
    height: auto;
}

/* Animation for the logo */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Fade out when loaded */
.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #7c5c52;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 1px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 0px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  border: 2px solid #fff;
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}
.custom-btn-bg-white:hover{
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}
/* Extra shiny effect class */
.shiny-btn {
  position: relative;
  overflow: hidden; /* keep shine inside */
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 3rem;
  height: 3rem;
  font-size: 1.875rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.text_icon {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.8125rem;
}

/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar {
  background: transparent;
  z-index: 100;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar .container {
  background: rgba(0, 0, 0, 0.55);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
}

.navbar-brand-image {
  width: 6rem;
  height: auto;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .navbar-brand-image {
    width: 5rem;
    height: auto;
    margin-right: 10px;
  }
}

.navbar .custom-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  border: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  background-position: center center;
  overflow: hidden;
  min-height: 80vh;
  text-align: center;
}
@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }
}
.hero-section .vegas-slide-inner {
    background-size: 100% 100% !important;
}
.hero-section::after {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 250px;
  height: 350px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-section::after {
  }
}
.hero-section h3 {
  color: var(--secondary-color);
  text-shadow: -1px 0 3px #000;
}
.hero-section p{
  font-family:"Buda", serif
}
.small-text {
  color: var(--white-color);
  text-shadow: -1px 0 3px #000;
  font-weight: 700;
}

.hero-section .custom-border-btn {
}

.hero-section .container {
  position: relative;
  z-index: 9;
}
.hero-slides {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  position: absolute !important;
  filter: saturate(120%);
}
/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
background-image: linear-gradient(to right,#05D6D9,#F907FC);
  color: transparent;
 -webkit-background-clip: text;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin:  100%;
  -moz-transform-origin:  100%;
  -ms-transform-origin:  100%;
  -o-transform-origin:  100%;
  transform-origin:  100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .underline {
  background-color: rgba(255, 255, 255, 0.75);
  width: 35%;
  height: 1px;
  margin: auto 15px 0 15px;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}
.about-info img{
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom, #05D6D9, #F907FC) 1;
  background-clip: padding-box; 
  filter: saturate(110%);
}
.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 450px;
  cursor: pointer;
}

.team-block-wrap:hover .team-block-image {
  transform: rotate(2deg) scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(110%);
  transition: all 0.3s;
}

.team-block-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(48, 16, 14, 0.5));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;

}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: 
    url('../images/banner-10.jpg');
  filter: saturate(120%);
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: cover;
  background-color: #FEC144;
}

@media (max-width: 992px) {
  .menu-section {
    background-position: 50% 50%;
    background-size: contain;
  }
}
.menu-block-wrap {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}
/*---------------Couters----------------------*/
.fact-section{
}
.fact {
  background: transparent;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  /* Icon styling */
  /* Responsive adjustments */ }
  .fact .container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto; }
  .fact .section-title {
    margin-bottom: 2rem; }
    .fact .section-title h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 0.5rem; }
    .fact .section-title h4 {
      font-size: 1rem;
      font-weight: 400;
      color: #e67e22;
      margin-bottom: 1.5rem; }
  .fact .row {
    margin: 0 auto;
    justify-content: center;
    max-width: 100%; }
    .fact .row [class^="col-"] {
      padding: 1rem;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center; }
  .fact .fa-check {
    color: #28a745; }
  .fact .fa-users-cog {
    color: #17a2b8; }
  .fact .fa-users {
    color: #ffc107; }
  .fact .fa-cogs {
    color: #dc3545; }
  .fact h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin: 0.5rem 0; }
  .fact p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    max-width: 150px; }
  @media (max-width: 768px) {
    .fact .section-title h2 {
      font-size: 1.75rem; }
    .fact .section-title h4 {
      margin-bottom: 1rem; }
    .fact h2 {
      font-size: 1.5rem; }
    .fact .row [class^="col-"] {
      padding: 0.5rem; } }
/* Add this to your existing CSS */
.stat-circle {
    background: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
}

.stat-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Adjust icon colors to match your theme */
.stat-circle .fa-award { color: #ff6b6b; }
.stat-circle .fa-cake { color: #f06595; }
.stat-circle .fa-heart { color: #cc5de8; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    .stat-circle i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .stat-circle h2 {
        font-size: 1.25rem !important;
    }
    .stat-circle p {
        font-size: 0.85rem !important;
    }
}
/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  overflow-x: hidden !important;
}

.reviews-block {
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}
.reviews-block-image-wrap {
  position: relative; 
  background-image: url('../images/order-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  color: white;
  z-index: 1; 
}

/* Dark Overlay */
.reviews-block-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1; 
}
.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size:14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-group i {
  color: var(--white-color);
}
/*--------------------------------------------------------------
#shoutout
--------------------------------------------------------------*/
.shoutouts{
}
.shoutouts .shoutouts-carousel,
.shoutouts .shoutouts-slider {
  overflow: hidden;
}

.shoutouts .shoutout-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background:transparent;
  border-radius: 15px;
}

.shoutouts .shoutout-item .shoutout-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.shoutouts .shoutout-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #fff;
}

.shoutouts .shoutout-item h4{
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.shoutouts .shoutout-item .quote-icon-left,
.shoutouts .shoutout-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.shoutouts .shoutout-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.shoutouts .shoutout-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.shoutouts .shoutout-item p {
  font-style: italic;
  font-size: 14px;
  margin: 30px auto 15px auto;
}

.shoutouts .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.shoutouts .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.shoutouts .swiper-pagination .swiper-pagination-bullet-active {
  background-color:#FF69B4;
  width: 15px;
  height: 15px;
}
.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.1);
}

.custom-block-image {
  transition: all 0.3s;
  filter: saturate(150%);
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.30px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn  {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}
.custom-block .col-lg-6 {
  display: flex;
  align-items: center;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.90);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  color: var(--white-color);
}

.reservation-page .custom-border-btn:hover {
}
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem; /* make room for arrow */
    background-color: #fff; /* or inherit */
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff; /* or adjust to match your design */
    font-size: 0.8rem;
}
/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
background-image: 
  linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0) 0%,          /* Unchanged dark fade */
    rgba(48, 16, 14, 0.6) 50%,     /* Unchanged midtone */
    rgba(48, 16, 14, 1) 100%        /* Your hex #30100e as RGBA */ 
  );
}
.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(50);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color:#fff;
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background:#590487;
  border-color: transparent;
}
::placeholder {
    color: #a0a0a0 !important;
    opacity: 1 !important; 
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}
.custom-form button[type="submit"] {
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.5s ease;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  border-color: transparent;
  color: var(--white-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}

/*------------Gallery--------------------*/
#product-grid{
}
.gallery-grid {
  column-count: 2;
  column-gap: 0.2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    column-count: 4;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
}

.gallery {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.gallery h3 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #444;
  letter-spacing: 0.5px;
  position: relative;
}

.gallery h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #d8573c;
  margin: 1rem auto 0;
  border-radius: 10px;
}
/* Container holding filters and search */
.gallery .filter-search-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Filter buttons container */
.gallery .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

/* Search panel styling */
.gallery .panel-search {
  flex-shrink: 0;
}

.gallery .panel-search input {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  min-width: 200px;
  transition: border 0.3s;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery .filter-search-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery .filter-buttons {
    justify-content: center;
  }

  .gallery .panel-search {
    width: 100%;
  }

  .gallery .panel-search input {
    width: 100%;
  }
}
.gallery .filter-btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 30px;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

.gallery .filter-btn:hover,
.gallery .filter-btn.active {
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  color: #fff;
  border-color: #d8573c;
}

.gallery .panel-search input {
  border-radius: 30px;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  box-shadow: none;
  width: 220px;
  border-radius:10px !important;
  transition: border 0.3s;
}

.gallery .panel-search input:focus {
  border-color: #d8573c;
  outline: none;
}
.gallery .panel-search {
  position: relative;
  max-width: 240px;
  width: 100%;
}

.gallery .panel-search input {
  border-radius: 30px;
  padding: 0.5rem 1rem 0.5rem 2.2rem; /* space for icon */
  border: 1px solid #ccc;
  width: 100%;
  transition: border 0.3s;
}

.gallery .panel-search input:focus {
  border-color: #d8573c;
  outline: none;
}

.gallery .panel-search .search-icon {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0.6;
}
/* Optional: hide icon when typing */
.gallery .panel-search input:not(:placeholder-shown) + .search-icon {
  opacity: 0;
}
.gallery .card {
  border: none;
  border-radius: 7px;
  overflow: hidden;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.gallery .card-img-top img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
.gallery .card-img-container img{
  transition: all .5s ease;
}
.gallery .card-img-container img:hover{
    filter:saturate(120%);
    transform: scale(1.1);
}

.gallery .card {
  position: relative;     
  overflow: hidden;     
  border-radius: 7px;
}

.gallery .card .card-img-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery .card > .card-body {
  position: absolute;      /* overlay */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  margin: 0;               /* override bootstrap margin */
  padding: 0.6rem 0.9rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 48px;
background: linear-gradient(
  180deg,
  rgba(89, 4, 135, 0.0) 0%,  
  rgba(89, 4, 135, 0.45) 50%, 
  rgba(89, 4, 135, 0.99) 100% 
);
  color: #fff;
  text-align: left;
  transition: transform .2s ease;
}

.gallery .card > .card-body .h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* badge style inside overlay */
.gallery .card > .card-body .badge {
  background-color: #d8573c;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.28em 0.55em;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

/* keep image hover zoom but don't move the overlay */
.gallery .card .card-img-container:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}


.gallery .card-body a {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.gallery .card-body span.text-muted {
  font-size: 0.9rem;
  color: #666;
}

.gallery .badge {
  background-color: #d8573c;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3em 0.6em;
  border-radius: 0.5rem;
  margin-left: 0.4rem;
}
.gallery .badge::before{
    display: none;
}
.gallery #load-more-btn {
  padding: 0.6rem 2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e67e22, #e74c3c);
  color: #fff;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.gallery #load-more-btn:hover {
  background-color: #b94b31;
}
/* Make sure .gslide-description is properly positioned inside the slide */
.glightbox-clean .gslide-description {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 1rem;
  margin: 0;
  box-shadow: none !important;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  border-radius: 0.5rem;
}


/* Style title text */
.glightbox-clean .gslide-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family:"Quicksand", sans-serif;
}

/* Style the description text */
.glightbox-clean .gslide-desc {
  font-size: 1rem;
  margin: 0;
  color: #fff !important;
  font-family:"Quicksand",sans-serif;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glightbox-clean .gslide-description {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .glightbox-clean .gslide-title {
    font-size: 1.2rem;
  }

  .glightbox-clean .gslide-desc {
    font-size: 0.9rem;
  }
}
.offers {
  filter: saturate(110%);
}

.custom-carousel {
  position: relative;
  z-index: 100;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.custom-carousel-item {
  --items: 10;
  --width: clamp(150px, 30vw, 300px);
  --height: clamp(200px, 40vw, 400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 100%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.5);
  background: black;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}
.custom-carousel-item .custom-carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: "Orelo-sw-db", serif;
}
.custom-carousel-item .custom-carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}
.custom-carousel-item .title {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 20px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.custom-carousel-item .num {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 10px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 10vw, 80px);
}
.custom-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform 0.85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none;
}
@media (pointer: fine) {
  .cursor {
    display: block;
  }
}
.cursor2 {
  --size: 2px;
  transition-duration: 0.7s;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--section-bg-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255);
  font-weight: 500;
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
	color: rgba(255, 200, 160, 0.75);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
}

.social-icon-link {
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;

}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}
/* WhatsApp Button with Perfect Text Flow */
.whatsapp-submit-btn {
    display: inline-flex;
    min-width: 100%;
    background-color:#128C7E;
    color: white;
    border: none;
    border-radius: var(--border-radius-large);
    padding: 12px 28px;
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    justify-content: center;
}

.btn-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    white-space: nowrap;
}

.whatsapp-submit-btn i {
    font-size: 1.2em;
    flex-shrink: 0;
}

#whatsapp-text {
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

#whatsapp-spinner {
    display: none;
    flex-shrink: 0;
}

/* Hover States */
.whatsapp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-submit-btn:active {
    transform: translateY(0);
}
.poster-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image-container {
  overflow: hidden;
  max-height: 400px;
  display: flex;
  align-items: center;
  background: var(--section-bg-color);
  cursor: zoom-in;
}

.poster-image-container img {
  object-fit: cover;
  object-position: top; /* or use '50% 0%' for more precision */
  width: 100%;
  height: auto;
  max-height: 400px;
  border: 1.5px solid transparent;
  border-image: linear-gradient(to bottom, #05D6D9, #F907FC) 1;
  transition: transform 0.3s ease;
}

.poster-card:hover .poster-image-container img {
  transform: scale(1.01);
}
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 12px 18px;
    background: linear-gradient(135deg, #e67e22, #e74c3c);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
#scrollTopBtn:hover {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}
/* Add this to your stylesheet */
.card-img-container {
  position: relative;
  min-height: 200px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img-loading {
  position: absolute;
  color: #666;
  font-size: 2rem;
  z-index: 2;
}

.card-img-top {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card-img-top.loaded {
  opacity: 1;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
