/* @import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Didact+Gothic&family=Dosis:wght@200..800&family=Imperial+Script&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Didact+Gothic&family=Dosis:wght@200..800&family=Imperial+Script&display=swap');


:root {
    --primary-color: #750400;
    --primary-color-rgb: 117, 4, 0;
    --secondary-color: #F6D3B2;
    --secondary-color-rgb: 246, 211, 178;
    --mud-color: #88623F;
    --light-color: #FFE2C7;
    --aboreto: "Aboreto", system-ui;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    width: 100vw;
    overflow-x: hidden;
}
.dosis {
    font-family: "Dosis", sans-serif;
}
.aboreto {
    font-family: "Aboreto", system-ui;
}
.imperial-script {
    font-family: "Imperial Script", cursive;
    text-transform: none;
}
.didact-gothic {
    font-family: "Didact Gothic", sans-serif;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: "Dosis", sans-serif;
}
.color-theme-primary {
    color: var(--primary-color);
}
.text-theme-primary {
    color: var(--primary-color);
}
.text-theme-secondary {
    color: var(--secondary-color);
}

.heading {
    font-family: "Aboreto", system-ui;
    font-size: 64px;
    text-transform: uppercase;
    /* color: var(--secondary-color); */
}
.sub-heading {
    background: var(--light-color);
    color: var(--mud-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 3px 10px;
    display: inline-block;
}
.subheading {
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 300;
}

.theme-btn {
    background: var(--light-color);
    color: var(--mud-color);
    padding: 5px 15px;
    border-radius: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
    border: none;
    transition: all 0.3s ease;
}
.theme-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--mud-color);
    transition: all 0.3s ease;
    z-index: -1;
}
.theme-btn:hover {
    background: var(--light-color);
    color: var(--light-color);
}
.theme-btn:hover svg {
    fill: var(--light-color);
}
.theme-btn:hover:after {
    height: 100%;
}
.theme-btn.btn-md {
    padding: 12px 40px !important;
}
.theme-btn.btn-lg {
    padding: 15px 80px !important;
}

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

/* section {
    width: 100vw;
    overflow-x: hidden;
} */

/* Top Header
=========================== */
.header {
    transition: transform 0.35s ease;
    background: #750400;
    background: linear-gradient(0deg,rgba(117, 4, 0, 0) 0%, rgba(117, 4, 0, 0.9) 100%);
}
.top-header {
    /* background-color: var(--primary-color); */
    color: #fff;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 14px;

    position: relative;
    z-index: 1;
}
.top-header a {
    color: #fff;
    transition: all 0.3s ease;
}
.top-header a:hover {
    color: var(--secondary-color);
}
.col-border-end {
    border-right: 1px solid var(--secondary-color);
    align-content: center;
}
.top-header-col {
    padding: 15px 11px;
    height: 100%;
    align-content: center;
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-inline: 100px;
    }
}

/* Navbar
=========================== */
.navbar-brand {
    max-width: 170px;
}
.navbar-brand,
.navbar-brand img {
    transition: all 0.3s ease;
}
.header.shrink {
    transform: translateY(calc(-1 * var(--top-header-height, 0px)));
}
.header.shrink .navbar {
    background: var(--primary-color);
}
.header.shrink .navbar-brand img {
    max-width: 120px;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background: none;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.navbar-toggler-icon .line {
    display: block;
    width: 30px;
    height: 2px;
    margin-block: 3px;
    background-color: var(--secondary-color);
}

/* #haveliNavbar {
    position: relative;
} */
.navbar-nav .nav-item {
    padding: 10px 15px;
}
.navbar-nav .nav-link {
    font-size: 18px;
    color: #fff;
    padding: 0 !important;
    white-space: nowrap;
    position: relative;
}
.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
    /* border-bottom: solid 1px var(--secondary-color); */
}
.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    transform: scaleX(1);
}
.btn-outline-light-haveli {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 40px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}
.btn-outline-light-haveli:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.3s ease;
    z-index: -1;
}
.btn-outline-light-haveli:hover:after {
    transform: scaleY(1);
}
.btn-outline-light-haveli:hover {
    /* background: var(--secondary-color); */
    color: var(--mud-color);
    border: 2px solid var(--secondary-color); 
}
.header-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.header-social-links a {
    transition: all 0.3s ease;
}
.header-social-links a:hover {
    transform: translateY(3px);
}
.th-link {
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
}

/* Footer
===================== */
.haveli-footer {
    background-color: var(--primary-color);
    color: var(--light-color); 
}
.haveli-footer .footer-logo {
    padding-right: 100px;
}
.haveli-footer .footer-logo img {
    max-width: 300px;
    width: 100%;
}
.haveli-footer .footer-title {
    font-size: 24px;
    margin-bottom: 0.75rem;
}

.haveli-footer .footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.haveli-footer .footer-list li + li {
    margin-top: 0.3rem;
}

.haveli-footer .footer-list a {
    text-decoration: none;
    color: var(--light-color);
    position: relative;
}
.haveli-footer .footer-list a:after,
.thirstyfish:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0);
    /* transform-origin: left; */
    transition: all 0.3s ease;
}
.haveli-footer .footer-list a:hover:after,
.thirstyfish:hover:after {
    transform: scaleX(1);
}

/* .haveli-footer .footer-list a:hover {
    text-decoration: underline;
} */

.haveli-footer .footer-line {
    border-color: rgba(245, 223, 199, 0.3);
}
.thirstyfish {
    color: var(--light-color);
    position: relative;
}


/* On mobile: no vertical borders, nice spacing */
/* @media (max-width: 767px) {
  .haveli-footer .footer-col {
    border-left: none;
  }
} */


/* Hero
================ */
.hero {
    height: 100vh;
    position: relative;
}
.hero-small {
    height: 70vh;
}
.hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.45);
}
.hero .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content-inner {
    max-width: 600px;
    text-align: center;
    color: #fff;
    margin-top: 5%;
}
.hero-title {
    text-shadow: 4px 4px 4px rgba(0,0,0,0.25);
}
.hero-subtitle {
    font-size: 20px;
    font-family: "Didact Gothic", sans-serif;
}
.side-line-text {
    position: relative;
}
.side-line-text span {
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.side-line-text span:before,
.side-line-text span:after {
    content: '';
    width: 47px;
    height: 1px;
    background-color: #fff;
}

/* Book now circle */
.book-now-circle {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    z-index: 1;
}
/* .book-now-group {
    position: relative;
} */
.book-now-group img {
    position: absolute;
}
.bn-ellipse {
    max-width: 120px;
    width: 120px;
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.bn-icon {
    max-width: 70px;
    width: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bn-text {
    top: 0;
    left: 0;
    width: 200px;
    animation: rotating 10s linear infinite;
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Book now circle end */

.pattern-light {
    position: relative;
}
.pattern-light:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pattern-light.png) repeat center;
    background-size: 130%;
    opacity: 0.1;
}
.home-about {
    background: var(--primary-color);
    width: 100vw;
    overflow: hidden !important;
}
.ab-content-wrap {
    padding: 170px 50px;
    background: #fff;
    position: relative;
}
.ab-content {
    max-width: 750px;
    padding-right: 100px;
}
/* .ab-content .heading  {
    margin-top: -34px;
} */
.ab-content .heading .cnm {
    white-space: nowrap;
}
.ab-title {
    margin-top: -57px;
}
.ab-content .heading .imperial-script {
    color: #E3B78F;
    font-size: 140px;
    line-height:  1;
    top: -32px;
    left: -40px;
    position: relative;
}
.ab-img-group {
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 0;
    margin-left: -100px;
    max-width: 100%;
}
.welcome-main-img img,
.welcome-small-img img {
    box-shadow: 8px 4px 8px rgba(0,0,0,0.25);
}

.welcome-small-img {
    padding-block: 50px;
    max-width: 80%;
    margin-left: -100px;
}

/* Home Features */
.home-features {
    padding-block: 80px;
    background: var(--primary-color);
    color: var(--light-color);
}
.features_swiper {
    margin-top: 30px;
}
/* .features_swiper .swiper-slide {
    max-width: 25%;
} */
.feature-card-text {
    width: calc(100% - 12px);
    padding: 60px 30px 20px;
    border-radius: 300px 300px 0 0;
    background: #600300;
    border: solid 2px var(--light-color);
    text-align: center;
    box-shadow: 8px 4px 4px #F6D3B240;
    min-height: 220px;
}
.feature-card-image {
    padding-right: 12px;
}
.feature-card-image img {
    width: 100%;
    /* margin-top: 15px; */
    box-shadow: 8px 4px 4px rgba(0,0,0,0.25);
}
.feature-card {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.feature-card.even {
    flex-direction: column-reverse;
    margin-top: 0;
}
.feature-card img {
    margin-top: 15px;
}
.feature-card.even img {
    margin-bottom: 15px;
}
.feature-card.even .feature-card-text {
    padding: 20px 20px 60px;
    border-radius: 0 0 300px 300px;
}
/* .features_swiper .swiper-slide:nth-child(odd) {
    padding-top: 40px;
}
.features_swiper .swiper-slide:nth-child(even) .feature-card {
    flex-direction: column-reverse;
}
.features_swiper .swiper-slide:nth-child(odd) .feature-card img {
    margin-top: 15px;
}
.features_swiper .swiper-slide:nth-child(even) .feature-card img {
    margin-bottom: 15px;
}
.features_swiper .swiper-slide:nth-child(even) .feature-card-text {
    padding: 20px 20px 60px;
    border-radius: 0 0 300px 300px;
} */
.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 30px !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}
.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Spotlight Menu */
.section {
    padding-block: 50px;
}
.spotlight-card-wrapper {
    margin-right: 100px;
}
.spotlight_swiper {
    padding-bottom: 50px !important;
    overflow: visible;
    direction: rtl;
}
.spotlight-card {
    position: relative;
}
.spotlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #75040070;
    padding: 15px 15px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}
.spotlight-card-overlay:before,
.spotlight-card-overlay:after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    transform: scale(0);
}
.spotlight-card-overlay:before {
    transform-origin: bottom left;
}
.spotlight-card-overlay:after {
    transform-origin: top right;
}
.spotlight-card-overlay:before{
    bottom: 15px;
    left: 15px;
    width: 28px; 
    height: 28px;
    border-bottom: solid 1px var(--light-color);
    border-left: solid 1px var(--light-color);
}
.spotlight-card-overlay:after{
    top: 15px;
    right: 15px;
    width: 125px; 
    height: 125px;
    border-top: solid 1px var(--light-color);
    border-right: solid 1px var(--light-color);
}
.spotlight-card:hover .spotlight-card-overlay {
    opacity: 1;
}
.spotlight-card:hover .spotlight-card-overlay:before,
.spotlight-card:hover .spotlight-card-overlay:after {
    transform: scale(1);
}
.spotlight-card-overlay h5 {
    font-size: 48px;
    text-align: center;
    font-family: var(--aboreto);
    color: var(--light-color);
    font-weight: 400;
    padding-inline: 30px;
    transition: all 0.3s ease;
}
.spotlight-card-image img {
    width: 100%;
}

/* Catering */
.catering-card {
    background: var(--primary-color);
    height: 100%;
}

/* SECTION WRAPPER */
.home-catering {
  width: 100%;
  min-height: 100vh;
}

/* GRID LAYOUT */
.catering-grid {
  display: grid;
  min-height: 100vh; /* full height */
  grid-template-columns: 2fr 1.3fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "left top title"
    "left text bottom";
}

/* COMMON ITEM STYLES */
.catering-grid > div {
  position: relative;
  overflow: hidden;
}

.catering-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRID AREAS */
.hv-left       { grid-area: left; }
.hv-top-img    { grid-area: top; }
.hv-title      { grid-area: title; }
.hv-text       { grid-area: text; }
.hv-bottom-img { grid-area: bottom; }

/* TITLE PANEL */
.hv-title {
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 25px;
  text-align: center;
}

.hv-title .heading {
  font-size: 48px;
  letter-spacing: 2px;
  /* line-height: 1.4;
  text-transform: uppercase; */
}

/* TEXT PANEL */
.hv-text {
  background: var(--primary-color);
  color: #fff;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* overflow: auto !important; */
}

.hv-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hv-text h4 {
  margin-bottom: 10px;
}

.hv-text ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.hv-text ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* BUTTON */
.hv-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s;
}

.hv-btn:hover {
  background: #fff;
  color: #7b0d0d;
}
.catering-mobile {
    max-width: 500px;
    margin-inline: auto;
}

/* ========== RESPONSIVE ========== */

/* Tablet & below */
@media (max-width: 991px) {
  .catering-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "left"
      "top"
      "text"
      "bottom";
    height: auto;          /* let height grow */
  }

  .catering-grid > div {
    height: auto;
  }

  .hv-left,
  .hv-top-img,
  .hv-bottom-img {
    height: 260px;         /* fixed image height on tablet */
  }
  .hv-title {
    position: relative;
  }
  .hv-title:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: #F6D3B2;
    background: linear-gradient(90deg,rgba(246, 211, 178, 0) 0%, rgba(246, 211, 178, 1) 50%, rgba(246, 211, 178, 0) 100%);
  }

  .hv-text {
    padding: 30px 20px;
  }
}

/* Small mobile */
@media (max-width: 575px) {
  .hv-left,
  .hv-top-img,
  .hv-bottom-img {
    height: 220px;
  }

  .hv-title h1 {
    font-size: 22px;
  }

  .hv-text p {
    font-size: 14px;
  }
}

/* Testimonials */
.home-testimonials {
    background: url(../images/testimonials/testimonials-bg.webp) no-repeat center;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    color: var(--light-color);
    overflow: hidden;
}
.home-testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #75040090;
}
.home-testimonials .container-fluid {
    max-width: 1200px;
}
.testimonials-section {
    background: url(../images/testimonials/testimonials-bg-2.webp) no-repeat center;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    color: var(--light-color);
    overflow: hidden;
}
.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #75040090;
}
.quote-left {
    position: absolute;
    bottom: -15px;
    left: 30px;
}
.quote-right {
    position: absolute;
    top: -15px;
    right: 30px;
}
.testimonials_swiper {
    padding-bottom: 250px !important;
}
.testimonial-slider .swiper-pagination-bullet,
.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--light-color) !important;
}
.testi-name {
    font-weight: 600;
}


/* Contact section */
.map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
        filter: grayscale(100%);
}
.home-contact {
    position: relative;
}
.home-contact-wrapper {
    padding: 70px;
    background: var(--light-color);
    color: var(--primary-color);
    position: relative;
}
.home-contact-wrapper.pattern-light:before {
    opacity: 0.6;
}
.home-contact-wrap {
    /* padding: 100px 50px; */
    text-align: center;
    position: relative;
    border-radius: 15%;
    /* corner-shape: scoop;
    border: solid 2px var(--primary-color); */
    background: url(../images/shapes/shape-desktop.png) no-repeat center;
    background-size: 100%;
    max-width: 500px;
    margin-inline: auto;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-contact-content {
    padding: 90px 50px;
}

.scoop-mask-box {
  --scoop-size: 60px; /* depth of scoop – change as you like */

  position: relative;
  padding: 2rem;
  background: #fff;
  border: solid 2px var(--primary-color);
  max-width: 500px;
  margin: 0 auto;

  /* Fallback for browsers without mask support (just rounded corners) */
  border-radius: 60px;

  /* MASK for Chrome / Edge / Safari (WebKit) */
  -webkit-mask:
    radial-gradient(circle at 0 0,          transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) top    left,
    radial-gradient(circle at 100% 0,       transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) top    right,
    radial-gradient(circle at 100% 100%,    transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) bottom right,
    radial-gradient(circle at 0 100%,       transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) bottom left;
  -webkit-mask-size: 50% 50%;
  -webkit-mask-repeat: no-repeat;

  /* MASK for Firefox and others (unprefixed) */
  mask:
    radial-gradient(circle at 0 0,          transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) top    left,
    radial-gradient(circle at 100% 0,       transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) top    right,
    radial-gradient(circle at 100% 100%,    transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) bottom right,
    radial-gradient(circle at 0 100%,       transparent 0, transparent var(--scoop-size), #000 var(--scoop-size)) bottom left;
  mask-size: 50% 50%;
  mask-repeat: no-repeat;
}

/* scoop box */
/* .scoop-box {
  --scoop-size: 2.5rem; 
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #ddd;
  max-width: 500px;
  margin: 0 auto;
}

.scoop-box .corner {
  position: absolute;
  width: var(--scoop-size);
  height: var(--scoop-size);
  background: var(--light-color); 
  pointer-events: none; 
}

.scoop-box .corner-tl {
  top: -1px;
  left: -1px;
  border-radius: 0 0 100% 0;
}

.scoop-box .corner-tr {
  top: -1px;
  right: -1px;
  border-radius: 0 0 0 100%;
}

.scoop-box .corner-br {
  bottom: -1px;
  right: -1px;
  border-radius: 100% 0 0 0;
}

.scoop-box .corner-bl {
  bottom: -1px;
  left: -1px;
  border-radius: 0 100% 0 0;
}

@media (max-width: 576px) {
  .scoop-box {
    --scoop-size: 1.8rem;
    padding: 1.5rem;
  }
} */

 
.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top:66.66%;
}
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-map-section .iframe-wrapper {
    height: 500px !important;
    padding-top: 0;
}

/* Menu Page */
.menu-section {
    padding-block: 80px;
}
.menu-section.pattern-light:before {
    opacity: 0.05;
}
.heading-border {
    border-bottom: solid 1px var(--secondary-color);
}
.menu-filters {
    margin-bottom: 80px;
}
.menu-filter-wrap {
    display: flex;
    gap: 40px;
}
.menu-filter-label {
    width: 60px;
    flex: 0 0 60px;
    padding-top: 3px;
}
.menu-filter-item-wrap {
    --sidevalue: 350px;
    flex: 0 0 calc(100% - var(--sidevalue));
    width: calc(100% - var(--sidevalue));
}
.menu-filter-availability {
    --width: 200px;
    width: var(--width);
    flex: 0 0 var(--width);
    font-size: 24px;
    text-transform: uppercase;
    text-align: right;
}
.menu-filter-item-wrap .button-group {
    display: flex;
    gap: 30px;
}
.button-scroll {
    display: flex;
    white-space: nowrap;
    gap: 30px;
    overflow-x: auto;
    width: 100%;
}

.button-scroll {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: scrollbar-color 0.3s;
}
.button-scroll:hover {
    scrollbar-color: var(--secondary-color) transparent;
}
.button-scroll:not(:hover)::-webkit-scrollbar-thumb {
    background: transparent;
}
.menu-filter-item-wrap .button-group .button {
    height: 32px;
    padding: 5px 24px;
    border: solid 1px var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    line-height: 1;
    margin-bottom: 10px;
    border-radius: 3px;
}
.menu-filter-item-wrap .button-group .button:hover,
.menu-filter-item-wrap .button-group .button.is-checked {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.menu-row {
    display: flex;
    gap: 15px;
}
.menu-img {
    --size: 80px;
    max-width: var(--size);
    flex: 0 0 var(--size);
    width: var(--size);
    height: var(--size);
    position: relative;
}
.menu-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.menu-img img {
    border-radius: 10px;
}
.menu-description h6 {
    font-size: 20px;
}
.menu-description h6 svg {
    margin-left: 5px;
}
.menu-description p {
    font-size: 15px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu-price {
    font-size: 28px;
    margin-left: auto;
    padding-left: 30px;
}
.menu-booking {
    padding-block: 80px 350px;
    background: url(../images/menu/menu-booking-bg.webp) no-repeat top right;
    background-size: cover;
}

.scroll-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.25);
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

/* Reservation Page */
.text-balance {
    text-wrap: balance;
}
.fw-300 {
    font-weight: 300;
}
.reservation-section {
    padding-block: 80px;
    border-bottom: solid 1px rgba(var(--secondary-color-rgb), 0.2);
}
.reservation-section.pattern-light:before {
    opacity: 0.03;
}
.reservation-form-box {
    margin-top: 40px;
    padding: clamp(30px, 4.5vw, 50px);
    border: solid 1px var(--secondary-color);
    max-width: 1200px;
    margin-inline: auto;
}
.reservation-title {
    font-size: clamp(16px, 2.2vw, 32px);
    /* font-size: 32px; */
    line-height: 1.5;
    max-width: 700px;
    margin-inline: auto;
}

.parking-sec {
    background: url(../images/reservations/parking.webp) no-repeat center;
    background-size: cover;
    padding-block: 100px;
    text-align: center;
}
.parking-icon {
    display: inline-block;
    padding: 10px;
    border: solid 1px var(--secondary-color);
}

/* Form */
/* Placeholder */
.form-control::placeholder {
    color: var(--secondary-color);
    opacity: 0.5;
}
.form-control:-ms-input-placeholder {
    color: var(--secondary-color);
}
.form-control::-ms-input-placeholder {
    color: var(--secondary-color);
}

.form-control,
.bootstrap-select>.dropdown-toggle {
    background: transparent;
    border: solid 1px var(--secondary-color);
    height: 50px;
    padding: 10px 15px !important;
    border-radius: 0;
    color: var(--secondary-color) !important;
}
.bootstrap-select>.dropdown-toggle {
    max-width: 100%;
    line-height: 27px;
}
.form-control:focus,
.bootstrap-select>.dropdown-toggle:focus {
    outline: none !important;
    background: none;
    border-color: var(--secondary-color);
    border-radius: 0;
    box-shadow: 0px 0px 12px rgba(var(--secondary-color-rgb), 0.5);
}

.bootstrap-select .bs-searchbox input {
    padding-left: 36px !important;
    background: #ffe4ca url(../images/icons/search-brown.png) no-repeat 10px center;
    background-size: 16px;
    color: var(--primary-color) !important;
}
.bootstrap-select .no-results {
    background: var(--secondary-color) !important;
    color: var(--mud-color) !important;
}

.bootstrap-select .bs-searchbox {
    position: relative;
}


input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
textarea.form-control {
    height: 100px;
}
/* bootstrap select */
.bootstrap-select .dropdown-menu {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--mud-color);
    border-radius: 0;
}
.bootstrap-select .dropdown-item.active, .bootstrap-select .dropdown-item:active,
.bootstrap-select .dropdown-item.active:hover, .bootstrap-select .dropdown-item:active:hover {
    background: var(--mud-color);
    color: var(--light-color);
}
.bootstrap-select .dropdown-item:focus, .bootstrap-select .dropdown-item:hover {
    background: var(--light-color);
    color: var(--mud-color);
}

/* datepicker */
.datepicker-dropdown {
    background: var(--secondary-color) !important;
    border-radius: 0 !important;
    border-color: var(--mud-color) !important;
}
.datepicker-dropdown.datepicker-orient-top:after {
    border-top: 7px solid var(--secondary-color) !important;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
    border-bottom: 7px solid var(--secondary-color) !important;
}
.datepicker td, .datepicker th {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
}
.datepicker table tr td.day:hover, .datepicker table tr td.day.focused,
.datepicker .datepicker-switch:hover, .datepicker .prev:hover, .datepicker .next:hover, .datepicker tfoot tr th:hover {
    background: var(--light-color) !important;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.reservation-form-box .theme-btn {
    width: 100%;
    max-width: 400px;
    font-size: 24px;
    padding-inline: 15px !important;
}

.h-divider {
    position: relative;
}
.h-divider:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #F6D3B2;
    background: linear-gradient(270deg, rgba(246, 211, 178, 0) 0%, rgba(246, 211, 178, 1) 50%, rgba(246, 211, 178, 0) 100%);
}
.h-divider.primary:after {
    background: var(--primary-color);
    background: linear-gradient(270deg, rgba(246, 211, 178, 0) 0%, var(--primary-color) 50%, rgba(246, 211, 178, 0) 100%);
}
.h-divider.md:after {
    height: 2px;
}

/* .contact-map-section.hero-overlay:before {
    background: rgba(var(--primary-color-rgb), 0.3);
    z-index: 1;
} */

.contact-map-section {
    padding-bottom: 30px;
    background: var(--primary-color);
}

.contact-us-booking.menu-booking {
    background: url(../images/contact/contact-us-booking-bg.webp) no-repeat top right;
    background-size: cover;
}
.bullet {
    padding-left: 1rem;
}

.about-overview {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding-block: 80px;
}

.story-gallery {
    background: var(--primary-color);
    padding-block: 30px;
}
.story-card {
    position: relative;
    display: block;
}
.story-card img {
    width: 100%;
}

/* .haveli-events-overview.pattern-light {
    position: relative;
} */
.events-overview-card {
    text-align: center;
    background: var(--secondary-color);
    border: solid 2px var(--primary-color);
    padding: 24px;
    height: 100%;
    position: relative;
    box-shadow: 4px 4px 8px rgba(0,0,0,0);
}
.events-overview-card:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: solid 2px var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
}
.events-overview-card:hover {
    box-shadow: 4px 4px 8px rgba(0,0,0,0.25);
}
.events-overview-card:hover:after {
    top: -15px;
    right: 15px;
    bottom: -15px;
    left: 15px;
    opacity: 1;
}
.eo-icon {
    padding-top: 30px;
}
.eo-title {
    color: var(--primary-color);
    font-family: var(--aboreto);
    font-weight: 300;
    font-size: 36px;
    min-height: 136px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    padding-inline: 15px;
    text-align: center;
    justify-content: center;
}
/* .swiper_coverflow {
    max-width: 600px;
} */
/* .swiper_coverflow .swiper-slide {
    width: auto !important;
} */

/* FAQs */
/* .faq-category-wrap {
    background: #600300;
    border: solid 1px var(--secondary-color);
    padding: 30px;
    position: relative;
}
.faq-category-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.faq-category-wrap ul li {
    padding-left: 24px;
    padding-bottom: 10px;
    position: relative;
}
.faq-category-wrap ul li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
}
.faq-category-wrap ul li.active:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    border: solid 7px transparent;
    border-left: solid 7px var(--secondary-color);
} */
.faq-overview {
    padding-block: 80px;
    border-bottom: solid 1px rgba(var(--secondary-color-rgb), 0.2);
}
.faq-overview.pattern-light:before {
    opacity: 0.05;
}
.accordion-item {
    margin-bottom: 15px;
    background: none;
    border: none;
    border-bottom: solid 1px var(--secondary-color);
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-radius: 0;
}
.accordion-button {
    background: none;
    border: none;    
    color: var(--secondary-color);
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-inline: 0;
    font-size: 24px;
    gap: 20px;
}
.accordion-button:after {
    filter: invert(100%);
}
.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--secondary-color);
}
.accordion-body {
    color: var(--secondary-color);
    padding-inline: 0;
}

/* Testimonials */
.text-wrap-balance {
    text-wrap: balance;
}
.grid-testimonioals {
    padding-block: 80px;
}
.testimonial-card {
    padding: 30px;
    border: solid 1px var(--primary-color);
    height: 100%;
}
.tc-header {
    gap: 20px;
    margin-bottom: 10px;
}

/* Events */
.celebrate-occsions {
    padding-block: 80px;
}
.pattern-light.op05:before,
.celebrate-occsions.pattern-light:before {
    opacity: 0.05;
}
.co-wrap {
    margin-top: 30px;
    border-top: solid 1px var(--secondary-color);
    border-bottom: solid 1px var(--secondary-color);
}
.swiper.co_swiper {
    padding-bottom: 0 !important;
    /* border-right: solid 1px var(--secondary-color); */
}
.swiper.co_swiper .swiper-slide,
.swiper.co_swiper .co-item {
    height: 100%;
}
.swiper.co_swiper .co-item {
    padding: 50px 30px;
    border-left: solid 1px var(--secondary-color);
}
.swiper.co_swiper .swiper-slide:last-child .co-item {
    border-right: solid 1px var(--secondary-color);
}
.co-item h3 {
    font-weight: 300;
    margin-bottom: 30px;
}
.co-item p {
    margin-bottom: 0;
}

.swiper.co_swiper .swiper-pagination-bullet {
    background: var(--secondary-color) !important;
}
.swiper.co_swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

.swiper.co_swiper .swiper-button-next, .swiper.co_swiper .swiper-button-prev {
    color: var(--secondary-color) !important;
    --swiper-navigation-size: 31px;
}
.swiper.co_swiper .swiper-button-disabled {
    opacity: 0;
}

.section-block {
    padding-block: 80px;
}
.vf-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}
.vf-image {
    position: relative;
    padding-top: 66.66%;
    overflow: hidden;
}
.vf-image-full {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.vf-image-full img,
.vf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.package-wrap {
    margin-inline: auto;
    max-width: 1400px;
}
.package_swiper .swiper-slide {
    padding: 15px;
    max-width: 80%;
    height: 100% !important;
}
.package-card {
    border: solid 1px var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: var(--primary-color);
}
.package-card:hover {
    box-shadow: 10px 8px 10px rgba(0, 0, 0, 0.25);
    background: var(--secondary-color);
    color: var(--primary-color);
}
.package-card:hover .btn {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.package-title {
    font-size: 40px;
    text-align: center;
    font-family: "Aboreto", system-ui;
}
.package-card .btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: auto;
}
.package-list {
    list-style: none;
    margin: 50px 0;
    padding: 0;
}
.package-list li {
    padding-left: 30px;
    background: url(../images/icons/right-arrow.svg) no-repeat left 5px;
    font-size: 18px;
    padding-bottom: 10px;
    background-size: 18px;
}

.venue-card {
    padding: 40px 30px;
    border: solid 2px var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    /* border-radius: 20px; */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.venue-card:hover {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    background: var(--light-color);
    border-color: var(--secondary-color);
}
.venue-title {
    font-family: var(--aboreto);
}
.venue-address {
    color: #333;
    margin-top: 15px;
    margin-top: auto;
}
.venue-capacity {
    margin: 0;
    display: inline-block;
    padding: 5px 15px;
    border: solid 1px var(--primary-color);
    position: relative;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.venue-card:hover .venue-capacity {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.spinner-border.text-light,
.spinner-border.text-primary {
    color: var(--secondary-color) !important;
}