:root {
  --bg-dark: #0A0A0A;
  --bg-darker: #121212;
  --color-gold: #c49a45;
  --color-gold-hover: #e0b863;
  --text-gray: #a0a0a0;
  --text-light-gray: #cccccc;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease-in-out;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography & General */
.font-2 {
  font-family: var(--font-title);
}

.text-gold {
  color: var(--color-gold);
}

.text-light-gray {
  color: var(--text-light-gray);
}

.bg-darker {
  background-color: var(--bg-darker);
}

.tracking-widest {
  letter-spacing: 0.15em;
}

.tracking-wider {
  letter-spacing: 0.08em;
}

/* Header & Navigation */
.img-logo-restaurant {
  display: block;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link.active, .nav-link:hover {
  color: var(--color-gold) !important;
}

/* Custom Buttons */
.btn-restaurant {
  background: var(--color-gold);
  color: #000000;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
      white-space: nowrap;
}

.btn-restaurant:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #000000;
}

.btn-restaurant.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-restaurant.btn-outline:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  padding-top: 100px;
}

.hero-bg-overlay {
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 500px;
  color: var(--text-light-gray);
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image {
  max-height: 550px;
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Signature Selections */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #ffffff;
}

.selection-card {
  height: 400px;
  border: 1px solid rgba(196, 154, 69, 0.15);
  border-radius: 8px;
  transition: var(--transition);
}

.selection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.50, 1);
}

.selection-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(196, 154, 69, 0.25);
}

.selection-card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
  z-index: 2;
  transition: var(--transition);
}

.selection-card:hover .card-overlay {
  background: linear-gradient(transparent, rgba(196, 154, 69, 0.15) 50%, rgba(10, 10, 10, 0.95));
}

/* Menu Tabs */
.menu-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
}

.menu-highlight-image {
  height: 450px;
  border: 1px solid rgba(196, 154, 69, 0.3);
}

.menu-item-row {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  transition: var(--transition);
}

.menu-item-row:hover {
  border-bottom-color: var(--color-gold);
}

.menu-item-title {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.menu-item-price {
  font-weight: bold;
}

/* Review Box */
.review-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.review-box:hover {
  border-color: var(--color-gold);
  background: rgba(196, 154, 69, 0.04);
  box-shadow: 0 15px 35px rgba(196, 154, 69, 0.15);
  transform: translateY(-8px);
}

/* Reservation & Form Inputs */
.form-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  padding: 12px !important;
  transition: var(--transition) !important;
}

.form-input option {
  background: #141414 !important;
  color: #ffffff !important;
}

.form-input:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 5px rgba(196, 154, 69, 0.3) !important;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
}
.img-icon-about-us{
  bottom: 0;
  width: 365px;
  left: -130px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.img-about-us .img-1 {
    border: 2px solid #fbdc80;
    border-radius: 10px;
}
.img-about-us::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transform: translate(-2px,2px);
  border: 2px solid #ac8e3c;
  pointer-events: none;
  border-radius: 10px;
  z-index: -1;
}
.img-about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  transform: translate(-50%,-50%);
  background: var(--bg-main-2);
  border-radius: 10px;
  pointer-events: none;
  z-index: -2;
}

/* TODO Services */
#ourServices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg-services.png) no-repeat center center/cover;
  background-attachment: fixed;
}

.category-box .img-wrapper::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 230px);
    height: calc(100% + 230px);
    transform: translate(-50%, -50%) rotate(0deg);
    background: url(../images/i-services.png) no-repeat center center/contain;
    pointer-events: none;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.img-service .img-wrapper::before,
.service-item:hover .category-box .img-wrapper::before{
    transition: all 0.3s ease-in-out;
    filter: invert(1) sepia(1)
}
.service-item:hover img{
  filter: brightness(.6);
}
.img-service{
  max-width: 456px;
}
.service-price{
  color: transparent;
  background: var(--bg-gar-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-service {
  border: 2px solid #fbdc80;
  background: var(--bg-main-2);
  border-radius: 10px;
  padding: 20px;
}

/* TODO Review */
.bg-testimonials::before{
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-review.png) no-repeat center center/cover;
}
.icon-review {
  width: 200px;
  height: 200px;
  color: #fff;
  top: -100px;
  left: 0px;
  background: var(--bg-main-2);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #fbdc80;
}
.item-review{
  margin-top: 100px;
  height: 285px;
    border: 2px solid #fbdc80;
    background: var(--bg-main-2);
}

/* TODO Gallery */
#ourPhoto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/gallery.jpg) no-repeat center center/cover;
}
.gallery-image-box{
  border: 2px solid #fbdc80;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.gallery-image-box i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.gallery-image-box:hover i{
  opacity: 1;
}
.gallery-image-box:hover img{
  filter: brightness(.6);
}
.gallery-image-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main-2);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.gallery-image-box:hover::before {
  opacity: 0.5;
}
/* TODO Contact */
.box-contact{
    border: 2px solid #fbdc80;
  background: var(--bg-main-2);
  border-radius: 10px;
  padding: 15px 20px;
}
.icon-contact {
  width: 50px;
  height: 50px;
  background: var(--bg-main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 24px;
  border: 2px solid #fbdc80;
}
.icon-contact:hover {
  background: #fbdc80;
  color: var(--bg-main);
  transition: all 0.3s ease-in-out;
}
#contactUs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg-contact.png.jpg) no-repeat center center/cover;
}
.form-contact{
  background: url(../images/bg-contact-form.png) no-repeat center center/cover;
  padding: 50px 0;
}
.bg-contact-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bg-main-2);
  opacity: 0.6;
}
.bg-footer{
  background: url(../images/bg-footer.png) no-repeat center center/cover;
}
.page{
  background: var(--bg-main);
}
.bg-gallery-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg-gallery-page.png) no-repeat center center/cover;
}
@media (min-width: 1460px) {
.col-ax-5 {
  max-width: 36%;
  flex: 0 0 36%;
}
}
@media (max-width: 1680px) {
  /* .img-slider{
  filter: brightness(0.7);
} */
  .bg-header::before {
    background-position: 100%;
    background-size: 150%;
  }
}
@media (max-width: 1469px) {
  .item-text-slider {
    margin-left: 0px;
  }
  .text-slider {
    padding: 40px 30px;
  }
}

@media (max-width: 1199.99px) {
  .item-animation-svg{
    transform: scale(.8) translate(0,-70%);
  }
  
}
@media (max-width: 984px) {
  .slider {
    align-items: flex-end;
  }
}
@media (max-width: 767.99px) {
.text-slider {
    padding: 20px;
    padding: 50px;
  }
}
@media (max-width: 576px) {
  /* .img-slider-3 img {
    object-position: 227px;
  } */
   .text-about-us {
    padding: 20px;
    padding: 30px;
   }
  .img-logo {
    max-width: 160px;
  }
  .bg-header.shadow .img-logo {
    max-width: 140px;
  }
  .img-slider img {
    min-width: auto;
    height: auto !important;
  }
  .slider {
    min-height: 73vh;
  }
  .img-slider {
    height: auto !important;
  }
  .slider::before {
    background-position: right;
  }
  .img-icon-about-us {
    width: 187px;
    left: -21px;
  }
}
/* End */
.scroll-to-top {
  border: 2px solid #fbdc80;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-500px) translateX(-30px);
  background: #fff!important;
  color: #000 !important;
  z-index: 99;
  cursor: pointer;
  width: 50px;
  height: 50px;
  bottom: 35px !important;
}
/* .scroll-to-top.active {
} */
.scroll-to-top.active {
  transform: translateY(-50%) translateX(-30px);
  opacity: 1;
}
.scroll-to-top:hover {
  color: #ffff !important;
  background: #000 !important;
}
.ring-to-top:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: transparent;
  border-radius: 50%;
    border: 2px solid #fbdc80;
  opacity: 0.5;
  animation: ring-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.ring-to-top:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--bg-main), 0.5);
  border-radius: 50%;
  border: none;
  animation: ring-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.ring-to-top {
  box-sizing: border-box;
  animation: oscillate-rotation 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  bottom: 140px;
  right: 30px;
  border: 1px solid var(--bg-main);
  background: #fff !important;
  color: #000 !important;
  z-index: 99;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

@keyframes ring-circle-anim {
  0% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0;
  }

  30% {
    transform: rotate(0) scale(1.5) skew(0deg);
    opacity: 0.5;
  }

  100% {
    transform: rotate(0) scale(1.7) skew(0deg);
    opacity: 0.1;
  }
}
@keyframes ring-circle-fill-anim {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
    opacity: 0.2;
  }

  50% {
    transform: rotate(0) scale(1.4) skew(0deg);
    opacity: 0.5;
  }

  100% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0.2;
  }
}

@keyframes oscillate-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
.w-fit {
  width: fit-content;
}
.h-fit {
  height: fit-content;
}
.frame {
  padding-top: 85px;
}
.frame-2 {
  padding-bottom: 85px !important;
}
.bg-services {
  background: url(../images/bg-services.png) no-repeat center center/cover;
  background-attachment: fixed;
}
@media (max-width: 446px) {
  .text-slider {
    padding: 20px;
    padding: 30px;
    height: 316px;
  }

  .bg-services {
    background-attachment: scroll;
  }
  .frame {
    padding-top: 50px;
  }
  .frame-2 {
    padding-bottom: 50px !important;
  }
  .img-logo {
    max-width: 125px;
  }
  .bg-header.shadow .img-logo {
    max-width: 130px;
  }
  .btn-restaurant {
    padding: 5px 10px;
  }
}

.slick-slide .animate.active {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.slick-slide.slick-active .animate.active {
  opacity: 1;
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.icon-footer {
    width: 50px;
  height: 50px;
  background: var(--bg-main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 24px;
  border: 2px solid #fbdc80;
}
.icon-footer:hover {
  transform: scale(1.2);
  background-color: var(--bg-main-2);
}
.animation-text {
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
}
.animation-text .word {
  display: inline-block;
  white-space: nowrap;
}
.animation-text span {
  display: inline-block;
  opacity: 0;
}
.animation-text.active span {
  animation: textAnimate 1s linear forwards;
  animation-delay: calc(var(--i) * var(--animation-text-delay));
}

@keyframes textAnimate {
  0% {
    opacity: 0;
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(6px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.loadingv2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ==========================================================================
   Responsive Breakpoints (Tablet & Mobile Styles)
   ========================================================================== */

/* Tablet Portrait (max-width: 991px) */
@media (max-width: 991px) {
  header {
    padding: 10px 0 !important;
  }
  .fs-48px {
    font-size: 36px !important;
  }
  .fs-36px {
    font-size: 28px !important;
  }
  .menu-highlight-image {
    height: 350px !important;
  }
  .selection-card {
    height: 300px !important;
  }
}

/* Mobile Screens (max-width: 767px) */
@media (max-width: 767px) {
  .fs-48px {
    font-size: 28px !important;
  }
  .fs-36px {
    font-size: 24px !important;
  }
  .fs-38px, .fs-lg-64px {
    font-size: 28px !important;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .menu-highlight-image {
    height: 250px !important;
    margin-bottom: 20px;
  }
  .menu-list-wrapper {
    padding: 20px !important;
  }
  .reservation-form-box {
    padding: 20px !important;
  }
  .slick-slide {
    padding: 0 10px;
  }
  .customer-reviews {
    padding: 0 10px;
  }
  footer {
    text-align: center !important;
  }
  footer .text-md-start {
    text-align: center !important;
  }
  footer .text-md-end {
    text-align: center !important;
  }
}

/* Custom Premium Enhancements */
.about-image-frame {
  position: relative;
  z-index: 1;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
}

.about-image-frame:hover::before {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  box-shadow: 0 0 20px rgba(196, 154, 69, 0.3);
}

#catering {
  background: linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)), url('../images/restaurant/about.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  border-top: 1px solid rgba(196, 154, 69, 0.15);
  border-bottom: 1px solid rgba(196, 154, 69, 0.15);
}

@media (max-width: 991px) {
  #catering {
    background-attachment: scroll; /* Disable parallax on mobile/tablets for performance */
  }
}

/* Floating Decorative Elements */
.floating-deco {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  animation: floatDeco 8s ease-in-out infinite;
}

@keyframes floatDeco {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Custom positioning for each element */
.deco-chili-selections {
  top: 10%;
  right: 5%;
  width: 120px;
  transform: rotate(45deg);
}

.deco-mint-selections {
  bottom: 5%;
  left: 3%;
  width: 100px;
  animation-delay: -2s;
}

.deco-lemon-about {
  top: 15%;
  left: 2%;
  width: 110px;
  transform: rotate(-30deg);
  animation-delay: -4s;
}

.deco-chili-about {
  bottom: 10%;
  right: 4%;
  width: 130px;
  transform: rotate(80deg);
  animation-delay: -1s;
}

.deco-mint-menu {
  top: 8%;
  right: 3%;
  width: 90px;
  transform: rotate(20deg);
  animation-delay: -3s;
}

.deco-lemon-menu {
  bottom: 8%;
  left: 4%;
  width: 120px;
  transform: rotate(-15deg);
  animation-delay: -5s;
}

/* Hide on mobile screens to avoid layout clutter */
@media (max-width: 991px) {
  .floating-deco {
    display: none !important;
  }
}

/* Unique Section Backgrounds */

#selections {
  background: linear-gradient(rgba(18, 18, 18, 0.92), rgba(18, 18, 18, 0.92)), url('../images/restaurant/selections-bg.jpg') no-repeat center center;
  background-size: cover;
  border-bottom: 1px solid rgba(196, 154, 69, 0.1);
}

.section-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: url('../images/restaurant/whyus-bg.jpg') no-repeat left center;
  background-size: cover;
  opacity: 0.08;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
}

.section-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: url('../images/restaurant/menu-bg.jpg') no-repeat right center;
  background-size: cover;
  opacity: 0.07;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0));
}

.z-2 {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .section-bg-left, .section-bg-right {
    display: none !important;
  }
}

/* Selection Detail Card Hover Effects */
.selection-detail-card {
  transition: var(--transition);
  position: relative;
}

.selection-detail-card img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.50, 1);
}

.selection-detail-card:hover img {
  transform: scale(1.05);
}

.selection-row {
  position: relative;
  z-index: 2;
}

section{
  overflow: hidden;
}