@font-face {
  font-family: "playwrite-regular";
  src: url("../fonts/PlaywriteAUVIC-Regular.ttf");
}
@font-face {
  font-family: "lato-regular";
  src: url("../fonts/Lato-Regular.ttf");
}
@font-face {
  font-family: "lato-bold";
  src: url("../fonts/Lato-Bold.ttf");
}
@font-face {
  font-family: "lato-black";
  src: url("../fonts/Lato-Black.ttf");
}

@font-face {
  font-family: "roboto-mono-regular";
  src: url("../fonts/RobotoMono-Regular.ttf");
}
@font-face {
  font-family: "roboto-mono-medium";
  src: url("../fonts/RobotoMono-Medium.ttf");
}
@font-face {
  font-family: "roboto-mono-bold";
  src: url("../fonts/RobotoMono-Bold.ttf");
}
@font-face {
  font-family: "roboto-semi-bold";
  src: url("../fonts/Roboto_Condensed-SemiBold.ttf");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  overflow-x: hidden;
}

html {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #fff #f0f0f0;
}

html::-webkit-scrollbar-track {
  background: #f0f0f0;
}

html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.header {
  position: fixed;
  width: 100%;
  height: 102px;
  background-color: transparent;
  top: 0;
  transition: top 0.5s ease-in-out, background-color 0.7s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1001;
}
.header .inner_header {
  height: 55px;
  display: flex;
  justify-content: center;
  transition: height 0.5s ease-out;
  position: relative;
}
.inner_header .reserve {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 33px;
  background: rgba(58, 184, 160, 1);
  outline: 4px solid rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-family: "lato-bold";
  color: rgba(21, 21, 21, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: pointer;
}

.inner_header .reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.inner_header .reserve:hover {
  background: rgba(58, 184, 160, 0.95);
  outline: 4px solid rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(58, 184, 160, 0.4);
  color: #ffffff;
}

.inner_header .reserve:hover::before {
  left: 100%;
}
.header.scrolled .inner_header .reserve {
  margin-bottom: 20px;
}

.header.scrolled {
  background-color: #201e1d;
  height: 90px;
}
.header.scrolled .inner_header {
  margin-top: 0px;
  height: 100%;
}

.header.scrolled .navbar a {
  color: #fff;
  font-family: "roboto-semi-bold";
}

.header.scrolled .navbar a::after {
  background: #000;
}
/* .header.scrolled .bar {
  background: #000;
} */
.navbar .extra {
  color: rgba(202, 81, 16, 0);
}

.header .logo_container {
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}
.logo_container img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: fill;
  -moz-object-fit: fill;
  -o-object-fit: fill;
  object-fit: fill;
}
.header.scrolled .logo_container {
  transform: scale(0.81);
}

.navbar {
  display: flex;
  gap: 20px;
}

.navbar a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  font-family: "roboto-semi-bold";
  position: relative;
  transition: font-family 0.5s ease;
}
.navbar a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: -webkit-translateX(-50%);
  transform: -ms-translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

/* Remove underline effect for logo */
.navbar .logo_container a::after {
  display: none;
}

.navbar a:hover::after {
  width: 18px;
  height: 3px;
}

/* Remove hover underline effect for logo */
.navbar .logo_container a:hover::after {
  display: none;
}
/* latest */

.navbar a.scrolled {
  color: #2a2f53;
  font-family: "roboto-semi-bold";
}

.navbar a.scrolled::after {
  background: #2a2f53;
}

/* Remove scrolled underline effect for logo */
.navbar .logo_container a.scrolled::after {
  display: none;
}

.header.scrolled,
.inner_header.scrolled {
  color: #2a2f53;
}

.link.active {
  /* font-family: "montserrat_bold"; */
  
}

/* hamburger */

.hamburger {
  display: none;

  padding: 10px;
}

.bar {
  height: 3px;
  width: 35px;
  background-color: #fff;
  margin: 5px 0;
}

/* Modern Drawer Styles */
.modern-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 10000;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-content {
  position: relative;
  width: 320px;
  height: 100%;
  background: #b8533a;
  background-image: url(../images/hamburger_section_texture_bg.png),
    radial-gradient(
      circle at 20% 80%,
      rgba(184, 83, 58, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(184, 83, 58, 0.6) 0%,
      transparent 50%
    );
  background-size: cover, auto, auto;
  background-position: center, 20% 80%, 80% 20%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Add a subtle overlay to ensure text readability */
.drawer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 83, 58, 0.1);
  pointer-events: none;
  z-index: 0;
}

/* Ensure all content is above the overlay */
.drawer-header,
.drawer-nav,
.drawer-footer {
  position: relative;
  z-index: 1;
}

.modern-drawer.open {
  left: 0%;
}

.modern-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
  width: 120px;
  height: 40px;
}

.drawer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer-close {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "lato-regular", sans-serif;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.drawer-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.close-icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.drawer-nav {
  flex: 1;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.drawer-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.drawer-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  margin: 0 16px;
  transition: all 0.2s ease;
}

.drawer-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.drawer-menu-item span {
  font-size: 32px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.drawer-footer {
  padding: 24px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.drawer-reservation-btn {
  width: 100%;
  padding: 16px 24px;
  background: #3ab8a0;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: "lato-bold", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(58, 184, 160, 0.3);
}

.drawer-reservation-btn:hover {
  background: rgba(58, 184, 160, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 184, 160, 0.4);
}

.drawer-reservation-btn:active {
  transform: translateY(0);
}

/* Drawer Social Media Icons */
.drawer-social-icons {
  margin-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.drawer-social-icons h5 {
  color: #ffffff;
  font-size: 16px;
  font-family: "roboto-mono-medium", sans-serif;
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.drawer-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.drawer-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.drawer-social-links .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.drawer-social-links .social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.drawer-social-links .social-link:hover img {
  transform: scale(1.1);
}

/* Drawer Animation Enhancements */
@keyframes drawerSlideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes drawerSlideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modern-drawer {
  animation: drawerSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-drawer.open {
  animation: drawerSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-overlay {
  animation: fadeOut 0.3s ease;
}

.modern-drawer.open .drawer-overlay {
  animation: fadeIn 0.3s ease;
}

/* Enhanced hover effects */
.drawer-menu-item {
  position: relative;
  overflow: hidden;
}

.drawer-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.drawer-menu-item:hover::before {
  left: 100%;
}

/* Ensure smooth transitions */
.modern-drawer * {
  transition: all 0.2s ease;
}

/* Focus states for accessibility */
.drawer-close:focus,
.drawer-reservation-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.drawer-link:focus .drawer-menu-item {
  background-color: rgba(255, 255, 255, 0.15);
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.banner_container {
  width: 100%;
  height: 746px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

/* Full-height overlay over banner video */
.banner_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 10, 3, 0.6);
  z-index: 1;
  pointer-events: none;
}

.banner_video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.banner_content {
  position: relative;
  color: #fff;
  text-align: center;
}
h1 {
  font-family: Playfair Display, serif;
  font-size: clamp(45px, 7vw, 130px);
  line-height: 1.1;
}

.banner_video p {
  font-size: clamp(25px, 4vw, 40px);
  margin-top: 10px;
}
.banner_container .banner_content {
  position: absolute;
  width: 100%;
  height: fit-content;
  top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
/* Common styles for banner text elements */
.banner_container .banner_content .banner_text_one,
.banner_container .banner_content .banner_text_two {
  width: auto;
  font-family: "lato-bold", sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;

}

/* Individual margin adjustments */
.banner_container .banner_content .banner_text_one {
  margin-bottom: 21px;
}

.banner_container .banner_content .banner_text_two {
  margin-bottom: 20px;
}

.banner_container .banner_content .banner_text_design {
  width: 96px;
  height: 18px;
  margin-bottom: 21px;
  animation: flipY 1s infinite linear;
  transform-origin: center;
}
@keyframes flipY {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

/* .banner_container .banner_content .banner_text_three {
  font-family: "lato-regular", sans-serif;
  font-size: 20px;
  color: rgba(226, 226, 226, 0.93);
  text-align: center;
  margin: 0 0 30px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
} */
.banner_container .banner_content .banner_text_three {
  font-size: 20px;
  font-family: "lato-bold", sans-serif;
  font-weight: 900;
}
.banner_container .banner_content .since_rotate {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 123px;
  height: 123px;
}

.banner_container .banner_content .header_arrow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
  animation: bounceArrow 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.header_arrow:hover {
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.since_rotate {
  animation: rotateClockwise 15s linear infinite;
  transform-origin: center center;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about_section {
  width: 100%;
  /* height: 100vh; */
  background: url(../images/About\ us\ -\ Bg\ Texture.png);
  background-color: #b8533a;
  background-size: cover;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -15px;
  padding-bottom: 150px;
  /* overflow-x: hidden; */
}
.about_section .about_content {
  width: 100%;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_section .about_content .about_left {
  width: 50%;
  text-align: center;
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.7);
}
.about_section .about_content .about_left .section_header h3 {
  color: rgba(255, 255, 255, 0.8);
}
.about_section .about_content {
  position: relative;
}

.about_section .about_content .about_right {
  width: 57%;
  height: 666px;
  position: absolute;
  top: 70px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: url(../images/About\ us\ -\ image\ bg\ texture.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_section .about_content .about_right img,
.about_section .about_content .about_right .about_slide {
  height: 550px;
  /* width: 400px; */
  width: 464px;
  border-radius: 18px;
  margin-top: 35px;
}
.section_header {
  text-align: center;
}
.section_header h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "playwrite-regular";
  font-size: 55px;
}
.section_header img {
  max-width: 280px;
  max-height: 10px;
  margin-top: -10px;
}
.about_section .about_content .about_left .about_text_intro {
  text-align: center;
  padding: 32px 0px 22px 0px;
  margin: 0;

  font-family: "roboto-mono-bold";
  font-size: 20px;
  line-height: 28px;
}
.about_section .about_content .about_left .about_text {
  text-align: center;
  margin: 0;

  font-family: "roboto-mono-medium";
  font-size: 18px;
  line-height: 29px;
  padding-bottom: 17px;
}
.about_section .about_content .about_left .about_text_more {
  margin: 0;
  font-family: "roboto-mono-bold";
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 6px;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.about_section .about_content .about_left .about_text_more:hover {
  transform: scale(1.2);
}
.more_text {
  display: none;
}
.about_section .about_content .about_left .about_section_buttons {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about_section .about_content .about_left .about_section_buttons button {
  background: transparent;
  outline: none;
  padding: 14px 30px;
  font-size: 16px;
  font-family: "roboto-mono-medium";
  border-radius: 7px;
  border: 1px solid #ffffff;
  color: #fff;
  transition: background 0.4s ease;
}
.about_section
  .about_content
  .about_left
  .about_section_buttons
  .about_btn:hover {
  background: rgba(58, 184, 160, 1);
  color: #fff;
}
.about_section .about_content .about_left .about_section_buttons .book_btn {
  background: #fff;
  color: rgba(202, 81, 16, 1);
}
.about_section
  .about_content
  .about_left
  .about_section_buttons
  .book_btn:hover {
  background-color: rgba(58, 184, 160, 1);
  color: #fff;
  border: 1px solid rgba(58, 184, 160, 1);
}

/* Hide mobile buttons by default (show only on mobile) */
.about_section_buttons.mobile-buttons {
  display: none;
}

/* Hide mobile download button by default (show only on mobile) */
.mobile-download-btn {
  display: none;
}

/* Hide desktop download button on mobile screens */
@media screen and (max-width: 1080px) {
  /* Hide desktop header on mobile */
  .event_function_section
    .event_function_content
    .event_function_left
    .section_header {
    display: none !important;
  }

  /* Show mobile header above image */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 30px;
  }
}

/* about section end  */
.address_section {
  width: 100%;
  height: 128px;
  position: relative;
  /* background: #3ab8a0; */

  display: flex;
  align-items: center;
  justify-content: center;
}
.address_section_1 {
  background: #b8533a;
}
.address_section_2 {
  background: #3ab8a0;
}
.address_section .address_border {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.address_timing_text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.address_timing_text img {
  width: 28px;
  height: 28px;
  margin-top: -15px;
}
/*  */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
}

.marquee_content {
  display: inline-block;
  padding-left: 0%;
  animation: marquee 20s linear infinite;
  color: #0d0d0d;
  font-size: 23px;
  font-family: "roboto-mono-bold";
}

.marquee_content span,
.marquee_content img {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* marque end */
.menu_slider_section {
  width: 100%;
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -5px;
}

/* Add linear gradient overlay */
.menu_slider_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(22, 10, 3, 0.6),
    rgba(22, 10, 3, 0.6)
  );
  z-index: 2;
  pointer-events: none;
}
.menu_slider_section .menu_slider_content {
  text-align: center;
  position: absolute;
  z-index: 10;
}

.menu_slider_section .menu_slider_images {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.menu_slider_section .menu_slider_images img {
  width: 105%;
  height: 105%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  filter: blur(2px);
}

@keyframes slideImageIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(2px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px) scale(0.98);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* Add floating animation after image appears */
.menu_slider_section .menu_slider_images img {
  animation: slideImageIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
    floatImage 6s ease-in-out infinite 1.2s;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-15px) scale(1.01);
  }
  75% {
    transform: translateY(-8px) scale(1.02);
  }
}

/*  */
.menu_slider_section .menu_slider_content .middle_text_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin: 20px 0px;
  color: #fff;
}
.menu_slider_section .menu_slider_content h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 110px;
  font-family: "roboto-mono-bold";
  letter-spacing: 9px;
}
.menu_slider_section .menu_slider_content .slider_star_icon {
  width: 63px;
  height: 63px;
  animation: rotateStar 8s linear infinite;
  transform-origin: center center;
}

@keyframes rotateStar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.menu_slider_section .menu_slider_content .mini_img {
  width: 255px;
  height: 101px;
  /* border: 8px solid rgba(255, 255, 255, 0.3); */
}
.menu_slider_section .menu_slider_content .mini_img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.menu_slider_section .brew_slider_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(32, 17, 5, 0.4);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* brew slider end */

/* Typing Animation Styles */
.typing-text {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.typing-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  filter: blur(2px);
  /* Remove automatic animation - let JavaScript control it */
  /* animation: typingEffect 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; */
}

@keyframes typingEffect {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    filter: blur(2px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px) scale(0.9);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* Remove all the automatic delay classes since JavaScript will control timing */
/* .typing-letter[data-delay="0"] { animation-delay: 0ms; }
.typing-letter[data-delay="50"] { animation-delay: 80ms; }
.typing-letter[data-delay="100"] { animation-delay: 160ms; }
.typing-letter[data-delay="150"] { animation-delay: 240ms; }
.typing-letter[data-delay="200"] { animation-delay: 320ms; }
.typing-letter[data-delay="250"] { animation-delay: 400ms; }
.typing-letter[data-delay="300"] { animation-delay: 480ms; }
.typing-letter[data-delay="350"] { animation-delay: 560ms; }
.typing-letter[data-delay="450"] { animation-delay: 800ms; }
.typing-letter[data-delay="500"] { animation-delay: 880ms; }
.typing-letter[data-delay="600"] { animation-delay: 1200ms; }
.typing-letter[data-delay="650"] { animation-delay: 1280ms; }
.typing-letter[data-delay="700"] { animation-delay: 1360ms; }
.typing-letter[data-delay="750"] { animation-delay: 1440ms; } */

/* Word grouping for smoother transitions */
.typing-text:nth-child(1) .typing-letter {
  /* animation-duration: 1.2s; */
}

.typing-text:nth-child(2) .typing-letter {
  /* animation-duration: 1.2s; */
}

.typing-text:nth-child(3) .typing-letter {
  /* animation-duration: 1.2s; */
}

.our_menu_section {
  width: 100%;
  background: #b8533a;
  padding-top: 75px;
  position: relative;
  padding-bottom: 105px;
}
.our_menu_section .our_menu_content {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.our_menu_section .our_menu_content .our_menu_left {
  width: 50%;
  color: rgba(255, 255, 255, 0.65);
}
.our_menu_section .our_menu_content .our_menu_left .section_header {
  text-align: left;
}
.our_menu_section .our_menu_content .our_menu_left .section_header h3 {
  color: rgba(255, 255, 255, 0.65);
}

.our_menu_section .our_menu_content .our_menu_right {
  width: 50%;
  color: rgba(255, 255, 255, 0.65);
}
.our_menu_section .our_menu_content .our_menu_right h6 {
  font-size: 20px;
  font-family: "roboto-mono-bold";
  margin: 0;
  padding-bottom: 22px;
}

.our_menu_section .our_menu_content .our_menu_right p {
  font-size: 17px;
  font-family: "roboto-mono-medium";
  line-height: 25px;
}
.our_menu_section .our_menu_top_icon {
  position: absolute;
  top: 0;
  left: 0;
}

.our_menu_section .our_menu_coffee_icon {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* our menu end */
.our_menu_tabs_section {
  width: 100%;
  background: #b8533a;
  padding-bottom: 85px;
}
.our_menu_tabs_section .our_menu_tabs_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 65px;
}

.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns img {
  width: 11px;
  height: 11px;
}
.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns button {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-family: "roboto-mono-bold";
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns button:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.our_menu_tabs_section
  .our_menu_tabs_content
  .our_menu_tabs_btns
  button.active {
  color: #fff;
  position: relative;
}

.our_menu_tabs_section
  .our_menu_tabs_content
  .our_menu_tabs_btns
  button.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 5px;
  background-color: #3ab8a0;
  border-radius: 10px;
  animation: activeTabIndicator 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
}

@keyframes activeTabIndicator {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 90%;
    opacity: 1;
  }
}

.our_menu_tabs_section .our_menu_tabs_content .download_menu {
  background: transparent;
  outline: none;
  border: 1px solid #fff;
  border-radius: 7px;
  font-size: 16px;
  font-family: "roboto-mono-medium";
  padding: 14px 30px;
  color: #fff;
  margin-top: 38px;
  transition: background 0.5s ease;
}
.our_menu_tabs_section .our_menu_tabs_content .download_menu:hover {
  background: rgba(58, 184, 160, 1);
  color: #fff;
}

.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_wrapper {
  width: 95%;
  height: 685px;
  position: relative;
}
.our_menu_tabs_section
  .our_menu_tabs_content
  .our_menu_tabs_wrapper
  .tabs_frame {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_wrapper .tabs_img {
  width: 97%;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 1.5%;
  z-index: 0;
}
.our_menu_tabs_section
  .our_menu_tabs_content
  .our_menu_tabs_wrapper
  .tabs_img
  img {
  width: 100%;
  height: 100%;
}

.tabs_img img {
  display: none;
  max-width: 100%;
}
.tabs_img img.active {
  display: block;
}

/* Elegant menu tab image animations */
.menu-tab-image {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-tab-image.active {
  opacity: 1;
  transform: scale(1);
  animation: menuImageSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes menuImageSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.98) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Smooth fade transition for tab switching */
.tabs_img img {
  display: none;
  max-width: 100%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.tabs_img img.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

.tabs_img img.fade-in {
  opacity: 1;
  transform: scale(1);
}
/* tabs end */

.event_function_section {
  width: 100%;
  background: url(../images/event_function_texture.png);
  background-color: #3ab8a0;
  background-size: cover;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 95px;
}
.event_function_section .event_function_content {
  width: 100%;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event_function_section .event_function_content .event_function_left {
  width: 50%;
  text-align: center;
}
.event_function_section .event_function_content .follow_slider {
  text-align: left !important;
}
.event_function_section
  .event_function_content
  .follow_slider
  .section_header
  h3 {
  text-align: center;
}
.event_function_section .event_function_content .follow_slider .section_header {
  text-align: center;
  padding-bottom: 32px;
}
.event_function_section
  .event_function_content
  .event_function_left
  .section_header
  h3 {
  color: #b8533a;
  font-size: 38px !important;
  text-align: center;
}
.event_function_section
  .event_function_content
  .event_function_left
  .section_header {
  text-align: center;
}
.event_function_section .event_function_content .follow_slider .ef_text_bold {
  text-align: center;
}
.event_function_section
  .event_function_content
  .follow_slider
  .ef_text_bold::after {
  content: "";
  display: block;
  width: 70%; /* border width */
  border-bottom: 0px dashed #b8533a !important;
  margin: 8px auto 0; /* centers the border */
}

.event_function_section .event_function_content .event_function_right {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event_function_section .event_function_content .event_function_right img {
  width: 526px;
  height: 740px;
  border-radius: 18px;
}
.event_function_section .event_function_content .follow_slider_images img {
  width: 444px;
  height: 550px;
  border-radius: 18px;
}
/* follow slider  */

.follow_us_contents_txt_and_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.follow_slider_images {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}

.follow_slider_container {
  position: relative;
}

.follow_slide {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.follow_slide.active {
  display: block;
  opacity: 1;
}

/* follow slider code end  */

/* about us slider code start */
.about_slider_container {
  position: relative;
}

.about_slide {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about_slide.active {
  display: block;
  opacity: 1;
}
/* about us slider code end  */

/* Mobile section header - hidden by default on desktop */
.event_function_section
  .event_function_content
  .event_function_right
  .mobile-section-header {
  display: none;
}

/* Force mobile header visibility on all mobile devices */
@media screen and (max-width: 1080px) {
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
  }
}

.event_function_section
  .event_function_content
  .event_function_right
  .mobile-section-header
  h3 {
  color: #b8533a;
  font-size: 38px !important;
  margin-bottom: 10px;
}

.event_function_section
  .event_function_content
  .event_function_right
  .mobile-section-header
  img {
  max-width: 280px;
  max-height: 10px;
  margin-top: -10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section_header {
  text-align: center;
}

.section_header img {
  max-width: 280px;
  max-height: 10px;
  margin-top: -10px;
}

.event_function_section
  .event_function_content
  .event_function_left
  .ef_text_bold {
  font-size: 28px;
  font-family: "roboto-mono-bold";
  color: #ffffff;
  opacity: 76%;
  text-align: center;
  /* border-bottom: 1px dashed black; */
  position: relative;
}
.event_function_section
  .event_function_content
  .event_function_left
  .ef_text_bold::after {
  content: "";
  display: block;
  width: 70%; /* border width */
  border-bottom: 2px dashed #b8533a;
  margin: 8px auto 0; /* centers the border */
}

.event_function_section
  .event_function_content
  .event_function_left
  .ef_text_regular {
  color: #052d26;
  font-family: "roboto-mono-regular";
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}
.event_function_section
  .event_function_content
  .event_function_left
  .ef_text_medium {
  color: #052d26;
  font-family: "roboto-mono-medium";
  font-size: 22px;
  text-align: center;
}

.event_function_section
  .event_function_content
  .event_function_left
  .ef_text_semi_bold {
  color: #052d26;
  font-family: "roboto-mono-bold";
  font-size: 22px;
  text-align: center;
}
.event_function_section
  .event_function_content
  .event_function_left
  .follow_btns {
  display: flex;
  gap: 30px;
}
.event_function_section .event_function_content .event_function_left button {
  margin-top: 63px;
  padding: 18px 40px;
  background: #b8533a;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 7px;
  transition: all 0.3s ease;
  font-family: "roboto-mono-medium";
  font-size: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  overflow: hidden;
}
.event_function_section .event_function_content .follow_slider a {
  text-decoration: none;
}
.event_function_section .event_function_content .follow_slider button {
  display: inline;
  align-items: center;
}
.event_function_section
  .event_function_content
  .event_function_left
  button:hover {
  background: rgba(226, 226, 226, 0.93);
  color: #b8533a;
  border: 1px solid rgba(226, 226, 226, 0.93);
  /* transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 226, 226, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
}
/* contact us section start */
.contact_us_section {
  position: relative;
  display: flex;
  align-items: center;
  /* height: 100vh; */
  height: 784px;
}
.contact_us_section .contact_left,
.contact_us_section .contact_right {
  width: 50%;
  height: 100%;
}
.contact_us_section .contact_left {
  background-color: #b8533a;
  position: relative;
}
.contact_us_section .contact_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_us_section .contact_right {
  background: linear-gradient(rgba(48, 1, 1, 0.6), rgba(48, 1, 1, 0.6)),
    url("../images/need_a_table.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.contact_us_section .contact_right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/need_a_table.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: infiniteZoom 20s ease-in-out infinite;
  z-index: -2;
}

.contact_us_section .contact_right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(48, 1, 1, 0.6), rgba(48, 1, 1, 0.6));
  z-index: -1;
}

@keyframes infiniteZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Texture Image Animations */
.floating-texture {
  animation: float 6s ease-in-out infinite;
}

.zoom-in-out-texture {
  animation: infiniteZoom 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}
.contact_us_section .contact_form_contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_us_section .contact_form_contents .contact_us_form_container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 88px 0px 72px 0px;
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_form_wrapper {
  width: 45%;
  height: 100%;
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_form_wrapper
  h3 {
  color: rgba(255, 255, 255, 0.65);
  font-family: "playwrite-regular";
  font-size: 38px;
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_form_wrapper
  .contect_form_text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "roboto-mono-regular";
  padding: 25px 0px 16px 0px;
}

.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_text {
  width: 45%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_text
  h2 {
  font-size: 38px;
  font-family: "playwrite-regular";
  margin-bottom: 53px;
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_text
  p {
  font-size: 30px;
  font-family: "lato-regular";
  margin: 0;
  padding: 0;
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_text
  button {
  border: none;
  padding: 14px 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  color: rgba(202, 81, 16, 1);
  margin-top: 61px;
  border: 1px solid rgba(202, 81, 16, 0);
  font-family: "roboto-mono-medium";
}
.contact_us_section
  .contact_form_contents
  .contact_us_form_container
  .contact_text
  button:hover {
  border: 1px solid rgba(58, 184, 160, 1);
  background: rgba(58, 184, 160, 1);
  color: #fff;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
  width: calc(100% - 30px);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  padding-right: 20px;
  /* padding-top: 25px; */
  height: 40px;
}

.form-group input {
  height: 40px;
}

.form-group textarea {
  min-height: 40px;
  max-height: 40px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #fff;
}

.form-group label {
  position: absolute;
  top: 7px;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: "lato-regular";
  font-size: 20px;
}

.form-group :is(input, textarea):focus + label,
.form-group :is(input, textarea):not(:placeholder-shown) + label {
  top: -15px;
  font-size: 10px;
  color: #fff;
}
.form-group :is(textarea):not(:placeholder-shown) + label {
  top: -15px;
}

.clear-button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid #fff;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 20px;
  height: 20px;
  text-align: center;
}
.clear-button p {
  margin-top: -5px;
  font-weight: bolder;
}

.form-group :is(input, textarea):focus ~ .clear-button,
.form-group :is(input, textarea):not(:placeholder-shown) ~ .clear-button {
  display: block;
  opacity: 1;
}
.contact_form_wrapper .submit-button {
  margin-top: 28px;
  padding: 14px 30px;
  border: none;
  outline: none;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 1);
  background: transparent;
  font-size: 16px;
  font-family: "roboto-mono-medium";
  color: #fff;
  transition: all 0.5s ease;
}
.contact_form_wrapper .submit-button:hover {
  background: rgba(58, 184, 160, 1);
  color: #fff;
}

/*  */
/* visit us section start */
.visit_us_section {
  width: 100%;
  background: linear-gradient(rgba(61, 51, 49, 0.6), rgba(61, 51, 49, 0.6)),
    url("../images/contact_us_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-repeat: no-repeat;
  padding: 62px 0px;
}
.visit_us_section .visit_us_content {
  width: 100%;
  display: flex;
  align-items: center;
}
.map-container {
  width: 50%;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map {
  width: 100%;
  height: 513px;
  border-radius: 13px;
}
.contact_card_wrapper {
  width: 50%;
  background: rgba(58, 184, 160, 0.38);
  border-bottom: 12px solid rgba(58, 184, 160, 0.2);
  border-top: 12px solid rgba(58, 184, 160, 0.2);
  border-right: 12px solid rgba(58, 184, 160, 0.2);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 47px 47px 58px 47px;
}
.contact_card_wrapper .contact_card_title h3 {
  margin: 0;
  color: rgba(228, 225, 225, 1);
  font-family: "playwrite-regular";
  font-size: 38px;
}
.contact_card_wrapper .contact_card_title {
  padding-bottom: 14px;
}

.contact_card_wrapper .contact_info {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 18px;
  font-size: 22px;
  color: rgba(226, 226, 226, 1);
  font-size: 22px;
  line-height: 36px;
}

.contact_card_wrapper .contact_info img {
  max-width: 18px;
  max-height: 18px;
  margin-top: 10px;
}
.contact_card_wrapper .contact_info .phone_green_icon {
  display: none;
}
.contact_card_wrapper .phone_number:hover .phone_green_icon {
  display: inline-block;
  transform: scale(1.1);
}
.contact_card_wrapper .phone_number:hover .phone_icon {
  display: none;
}
.contact_card_wrapper .phone_number p a {
  transition: all 0.5s ease;
}
.contact_card_wrapper .phone_number p a:hover {
  color: #3ab8a0 !important;
  /* font-size: 24px; */
  text-decoration: underline !important;
}

/* footer start */
/* .footer_container{
  width: 100%;
  height: 500px;
  background: url(../images/footer_texture.png);
  background-color: #b8533a;
  background-size: cover;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

} */

/* .footer_container {
  width: 100%;
  background: url(../images/footer_texture.png);
  background: rgba(150, 80, 66);
  padding-top: 93px;
} */
/* .footer_container {
  width: 100%;
  background: url(../images/footer_texture.png);
  background-color: rgba(150, 80, 66);
  padding-top: 93px;
} */
.footer_container {
  position: relative;
  width: 100%;
  background-color: rgba(150, 80, 66);
  padding-top: 50px;
  overflow: hidden;
}

.footer_container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/footer_texture.png) center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.footer_container > * {
  position: relative;
  z-index: 1;
}

.footer_container .footer_contents .footer_text {
  text-align: center;
}

.footer_container .footer_contents .footer_text p {
  padding: 21px 0px 48px 0px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-family: "roboto-mono-bold";
}

.footer_container .footer_contents .restaurent_info_wrapper {
  width: 100%;
  /* border-top: 1px solid rgba(255, 255, 255, 0.5); */
  padding-top: 39px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: rgba(226, 226, 226, 0.93);
  padding-bottom: 62px;
}
.footer_container .footer_contents .restaurent_info_wrapper h3 {
  font-family: "roboto-mono-bold";
  font-size: 24px;
  margin: 0;
  margin-bottom: 8px;
}

.footer_container .footer_contents .restaurent_info_wrapper h6 {
  font-size: 16px;
  font-family: "roboto-mono-bold";
}

.footer_container .footer_contents .restaurent_info_wrapper .contact_info {
  font-family: "roboto-mono-medium";
  font-size: 16px;
  line-height: 24px;
  width: 33%;
}
.footer_container
  .footer_contents
  .restaurent_info_wrapper
  .contact_info
  .footer_hover {
  transition: all 0.5s ease;
}
.footer_container
  .footer_contents
  .restaurent_info_wrapper
  .contact_info
  .footer_hover:hover {
  color: #3ab8a0 !important;
  text-decoration: underline;
  font-family: "roboto-mono-bold";
  /* font-size: 18px; */
}

.footer_container
  .footer_contents
  .restaurent_info_wrapper
  .opening_hours_info
  p {
  font-family: "roboto-mono-regular";
  font-size: 16px;
}
.footer_container .footer_contents .restaurent_info_wrapper .book_table_info p {
  font-size: 16px;
  line-height: 26px;
  font-family: "roboto-mono-regular";
}
.footer_container
  .footer_contents
  .restaurent_info_wrapper
  .book_table_info
  button {
  border: none;
  padding: 14px 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  color: rgba(202, 81, 16, 1);
  margin-top: 35px;
  border: 1px solid rgba(202, 81, 16, 0);
  font-family: "roboto-mono-medium";
}
.footer_container
  .footer_contents
  .restaurent_info_wrapper
  .book_table_info
  button:hover {
  border: 1px solid rgba(58, 184, 160, 1);
  background: rgba(58, 184, 160, 1);
  color: #fff;
}
.follow_on_social {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  gap: 34px;
  /* text-align: center; */
  color: #fff;
  padding-bottom: 21px;
}
.follow_on_social h4 {
  font-size: 20px;
  font-family: "roboto-mono-bold";
  color: rgba(226, 226, 226, 0.93);
}

.footer_social_icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer_social_icons img {
  width: 23px;
  height: 23px;
  transition: transform 0.5s ease;
}
.footer_social_icons img:hover {
  transform: scale(1.2);
}

/* footer end  */

.bottom_footer {
  width: 100%;
  height: 80px;
  text-align: center;
  background: #3ab8a0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 13, 13, 1);
  font-size: 18px;
  font-family: "roboto-mono-bold";
}
.bottom_footer p {
  margin: 0;
  padding: 0;
}

.bottom_footer .insync-link {
  color: rgba(13, 13, 13, 1);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  border-bottom: 1px solid rgba(13, 13, 13, 1);
}

.bottom_footer .insync-link:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Mobile line break for bottom footer */
.mobile-break {
  display: none;
}

@media screen and (max-width: 575px) {
  .mobile-break {
    display: inline;
  }

  .bottom_footer p {
    line-height: 1.8;
  }

  /* Hide the separator on mobile when line break is active */
  .separator {
    display: none;
  }

  .menu_slider_section .menu_slider_content .middle_text_icon {
    gap: 0px;
  }

}

/* bottom footer end */

/* .map_wrapper {
  position: relative;
}
.map_wrapper .contact_icon {
  position: absolute;
  right: 40px;
  top: 160px;
  animation: bounce 8s linear infinite;
} */
/* .map {
  margin-top: 85px !important;
  margin-bottom: 117px !important;
} */
/* .map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}
.map {
  height: 450px;
  border-radius: 20px;
} */
@media screen and (max-width: 1920px) {
  .about_section .about_content .about_right {
    width: 50%;
  }
}
@media screen and (max-width: 1440px) {
  .about_section .about_content .about_right {
    width: 50%;
  }
}
@media screen and (max-width: 1366px) {
  .about_section .about_content .about_right {
    width: 54%;
  }
  .about_section .about_content .about_left {
    width: 48%;
  }
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1080px) {
  /* .banner_container .banner_content .banner_text_one {
    width: 465px;
    height: 180px;
  }
  .banner_container .banner_content .banner_text_two {
    width: 465px;
    height: 110px;
    margin-bottom: 60px;
  } */

  .banner_container .banner_content .header_arrow {
    width: 40px;
    height: auto;
    bottom: -60px;
  }
  .about_section .about_content {
    flex-direction: column;
  }
  .about_section .about_content .about_left {
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-top: 0px;
  }

  .about_section .about_content .about_right {
    width: 67%;
    position: relative;
    right: auto;
    top: auto;
  }
  .about_section .about_content .about_left .about_section_buttons {
    display: none; /* Hide desktop buttons on mobile */
  }

  /* Show mobile buttons inside about_right */
  .about_section .about_content .about_right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about_section .about_content .about_right img,
  .about_section .about_content .about_right .about_slide {
    margin-top: 100px;
  }

  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }

  /* First row: View Menu and Function buttons side by side */
  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    .button-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  /* Second row: Book a Table button centered */
  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    .book_btn {
    align-self: center;
  }

  /* Mobile button styles */
  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    button {
    background: transparent;
    outline: none;
    padding: 14px 30px;
    font-size: 16px;
    font-family: "roboto-mono-medium";
    border-radius: 7px;
    border: 1px solid #ffffff;
    color: #fff;
    transition: background 0.4s ease;
  }

  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    .about_btn:hover {
    background: rgba(58, 184, 160, 1);
    color: #fff;
  }

  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    .book_btn {
    background: #fff;
    color: rgba(202, 81, 16, 1);
  }

  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    .book_btn:hover {
    background-color: rgba(58, 184, 160, 1);
    color: #fff;
    border: 1px solid rgba(58, 184, 160, 1);
  }
  .event_function_section .event_function_content {
    width: 100%;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 50px;
  }
  .event_function_section .event_function_content .event_function_left {
    width: 75%;
    text-align: center;
  }
  .event_function_section .event_function_content .event_function_right {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }

  /* Ensure mobile header is visible on 1080px breakpoint */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 30px;
  }

  .event_function_section .event_function_content .event_function_left img {
    width: 500px;
    height: 540px;
    border-radius: 18px;
  }

  .event_function_section .event_function_content .event_function_left button {
    padding: 14px 30px;
  }

    .event_function_section
    .event_function_content
    .event_function_left
    .follow_btns {
    display: flex;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_wrapper {
    width: 100%;
    height: 515px;
    position: relative;
  }
  .inner_header .reserve {
    display: none;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_text
    h2 {
    font-size: 32px;
    font-family: "playwrite-regular";
    margin-bottom: 40px;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_text
    p {
    font-size: 24px;
    font-family: "lato-regular";
  }
  .contact_card_wrapper .contact_card_title h3 {
    font-size: 32px;
  }
  .contact_card_wrapper .contact_info {
    gap: 14px;
    font-size: 16px;
    line-height: 30px;
  }
  .contact_card_wrapper {
    padding: 30px 30px 30px 30px;
  }
  .map-container {
    width: 60%;
  }
  .contact_card_wrapper {
    width: 40%;
  }
  /* footer code  */
  .footer_container .footer_contents .restaurent_info_wrapper {
    flex-direction: column;
  }
  .footer_container .footer_contents .restaurent_info_wrapper .contact_info {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
  .footer_container
    .footer_contents
    .restaurent_info_wrapper
    .opening_hours_info {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
  .footer_container .footer_contents .restaurent_info_wrapper .book_table_info {
    width: 100%;
    text-align: center;
  }
  .about_section .about_content .about_right {
    width: 90%;
    position: relative;
    right: auto;
    top: auto;
  }

 

  .footer_social_icons {
    justify-content: center;
  }

  /*  */
}

@media screen and (max-width: 820px) {
  
  .about_section .about_content .about_right {
    width: 90%;
    position: relative;
    right: auto;
    top: auto;
  }
  .our_menu_section .our_menu_content {
    flex-direction: column;
  }
  .our_menu_section .our_menu_content .our_menu_left {
    width: 100%;
    text-align: center;
  }
  .our_menu_section .our_menu_content .our_menu_left .section_header {
    text-align: center;
  }
  .our_menu_section .our_menu_content .our_menu_right {
    width: 100%;
    text-align: center;
  }

  .contact_us_section {
    position: relative;
    display: flex;
    align-items: center;
    /* height: 100vh; */
    height: 1400px;
    flex-direction: column;
  }
  .contact_us_section .contact_left,
  .contact_us_section .contact_right {
    width: 100%;
    height: 100%;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_form_wrapper {
    width: 100%;
    height: 100%;
  }
  .contact_us_section .contact_form_contents .contact_us_form_container {
    display: grid;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_text {
    width: 100%;
    height: 100%;

    flex-direction: column;

    padding-bottom: 40px;
  }

  /* Ensure mobile header is visible on 820px breakpoint */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 25px;
  }

  /*  */
}
@media screen and (max-width: 768px) {
  .visit_us_section .visit_us_content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
  }
  .map-container {
    width: 100%;
  }

  .contact_card_wrapper {
    width: 100%;
    background: none;
    border: none;
  }
  .menu_slider_section .menu_slider_content h3 {
    font-size: 60px;
  }

  /* Ensure mobile header is visible on 768px breakpoint */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .about_section .about_content .about_right img,
  .about_section .about_content .about_right .about_slide {
    margin-top: 35px;
  }
  /* Add margin-bottom to SEE MORE text on mobile */
  .about_section .about_content .about_left .about_text_more {
    margin-bottom: 50px;
  }
  .about_section .about_content {
    gap: 35px;
  }

  .contact_us_section {
    height: 1050px;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_text
    h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .about_section .about_content .about_right {
    background-size: contain;
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_text
    button {
    margin-top: 30px;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_form_wrapper {
    width: 90%;
    height: 100%;
    margin-left: 5%;
  }
  .footer_container .footer_contents .restaurent_info_wrapper .contact_info,
  .footer_container
    .footer_contents
    .restaurent_info_wrapper
    .opening_hours_info,
  .footer_container .footer_contents .restaurent_info_wrapper .book_table_info {
    text-align: left;
  }
  .footer_social_icons {
    justify-content: left;
  }
  .banner_container .banner_content .banner_text_one {
    width: 90%;
    height: auto;
  }
  .banner_container .banner_content .banner_text_two {
    width: 90%;
    height: auto;
  }

  .banner_container .banner_content .since_rotate {
    bottom: -100px;
    width: 100px;
    height: 100px;
  }

  .banner_container .banner_content .header_arrow {
    width: 35px;
    height: auto;
    bottom: -80px;
  }

  .our_menu_section .our_menu_content .our_menu_right h6 {
    font-size: 18px;
  }
  .our_menu_section .our_menu_content .our_menu_right p {
    font-size: 16px;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 50px;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns button {
    font-size: 16px;
  }
  .our_menu_tabs_section {
    padding: 50px 0px;
  }

  .event_function_section .event_function_content .event_function_right {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 30px;
  }

  .event_function_section .event_function_content .event_function_right img {
    width: 100%;
    height: auto;
    margin-top: 35px;
  }

  .section_header h3 {
    font-size: 35px;
  }

  .event_function_section
    .event_function_content
    .event_function_left
    .ef_text_bold {
    font-size: 19px;
  }
  .event_function_section
    .event_function_content
    .event_function_left
    .ef_text_regular {
    font-size: 15px;
  }
  .event_function_section .event_function_content .event_function_left {
    width: 100%;
  }
  .event_function_section .event_function_content .event_function_left button {
    margin-top: 50px;
  }

  /* Ensure mobile header is visible on smaller screens */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header
    h3 {
    font-size: 32px !important;
  }
  .contact_us_section
    .contact_form_contents
    .contact_us_form_container
    .contact_form_wrapper
    h3 {
    font-size: 35px;
  }
  .contact_form_wrapper .submit-button {
    display: block;
    margin: 28px auto 0 auto;
    width: fit-content;
  }
  .footer_container
    .footer_contents
    .restaurent_info_wrapper
    .book_table_info
    button {
    display: block;
    margin: 35px auto 0 auto;
    width: fit-content;
  }
  .form-group {
    margin-bottom: 24px;
  }
  .bottom_footer {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .banner_container .banner_content {
    top: 250px;
  }
  .contact_us_section {
    height: 1420px;
  }

  .about_section .about_content .about_right {
    background-size: contain;
    width: 90%;
    position: relative;
    right: auto;
    top: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about_section .about_content .about_right img,
  .about_section .about_content .about_right .about_slide {
    height: auto;
    width: 100%;
  }
  .section_header h3 {
    font-size: 35px;
  }
  .our_menu_section .our_menu_content .our_menu_left .section_header {
    font-size: 35px;
  }
  .about_section {
    padding: 20px 0px 70px 0px;
  }
  .about_section .about_content .about_left .about_text_intro {
    font-size: 17px;
  }
  .about_section .about_content .about_left .about_text {
    font-size: 15px;
  }
  .about_section .about_content .about_left .about_section_buttons button {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Mobile button responsive styles */
  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    button {
    padding: 12px 20px;
    font-size: 15px;
  }
  .about_section .about_content .about_left {
    margin-top: 0;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_wrapper {
    height: 400px;
  }
  .menu_slider_section .menu_slider_content h3 {
    font-size: 40px;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_btns button {
    font-size: 14px;
  }
  .event_function_section
    .event_function_content
    .event_function_right
    .section_header
    h3 {
    font-size: 32px !important;
  }
  .event_function_section
    .event_function_content
    .event_function_right
    .ef_text_bold {
    font-size: 18px;
  }
  .event_function_section
    .event_function_content
    .event_function_right
    .ef_text_medium {
    font-size: 19px;
  }
  .event_function_section
    .event_function_content
    .event_function_right
    .ef_text_semi_bold {
    font-size: 19px;
  }

  /* Ensure mobile header is visible on 480px breakpoint */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 15px;
  }

  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header
    h3 {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 414px) {
  .about_section {
    padding: 0px 0px 60px 0px;
  }
  .about_section .about_content .about_left {
    margin-top: 0;
  }
  .about_section .about_content .about_left .about_section_buttons button {
    margin: 5px;
  }

  /* Mobile button responsive styles for 414px */
  .about_section
    .about_content
    .about_right
    .about_section_buttons.mobile-buttons
    button {
    margin: 5px;
  }
  .about_section .about_content .about_right img,
  .about_section .about_content .about_right .about_slide {
    margin-top: 0px;
  }
  .bottom_footer {
    font-size: 14px;
  }
  .our_menu_tabs_section
    .our_menu_tabs_content
    .our_menu_tabs_wrapper
    .tabs_frame {
    width: 100%;
    height: auto;
  }
  .our_menu_tabs_section
    .our_menu_tabs_content
    .our_menu_tabs_wrapper
    .tabs_img
    img {
    width: 100%;
    height: auto;
  }

  /* Ensure mobile header is visible on 414px breakpoint */
  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 15px;
  }

  .event_function_section
    .event_function_content
    .event_function_right
    .mobile-section-header
    h3 {
    font-size: 35px !important;
  }
}
@media screen and (max-width: 390px) {
  .about_section .about_content .about_left {
    margin-top: 0;
  }
  .our_menu_tabs_section .our_menu_tabs_content .our_menu_tabs_wrapper {
    height: 270px;
  }
}
@media screen and (max-width: 320px) {
  .menu_slider_section,
  .about_section,
  .address_section_1,
  .menu_slider_section,
  .our_menu_section,
  .our_menu_tabs_section,
  .event_function_section {
    overflow-x: hidden;
  }

  .about_section .about_content .about_left {
    margin-top: 0;
  }
  .about_section .about_content .about_right img,
  .about_section .about_content .about_right .about_slide {
    margin-bottom: 120px;
  }
}

/* Typing Animation Styles */
.typing-text {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.typing-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  filter: blur(2px);
  /* Remove automatic animation - let JavaScript control it */
  /* animation: typingEffect 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; */
}

@keyframes typingEffect {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    filter: blur(2px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px) scale(0.9);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* Remove all the automatic delay classes since JavaScript will control timing */
/* .typing-letter[data-delay="0"] { animation-delay: 0ms; }
.typing-letter[data-delay="50"] { animation-delay: 80ms; }
.typing-letter[data-delay="100"] { animation-delay: 160ms; }
.typing-letter[data-delay="150"] { animation-delay: 240ms; }
.typing-letter[data-delay="200"] { animation-delay: 320ms; }
.typing-letter[data-delay="250"] { animation-delay: 400ms; }
.typing-letter[data-delay="300"] { animation-delay: 480ms; }
.typing-letter[data-delay="350"] { animation-delay: 560ms; }
.typing-letter[data-delay="450"] { animation-delay: 800ms; }
.typing-letter[data-delay="500"] { animation-delay: 880ms; }
.typing-letter[data-delay="600"] { animation-delay: 1200ms; }
.typing-letter[data-delay="650"] { animation-delay: 1280ms; }
.typing-letter[data-delay="700"] { animation-delay: 1360ms; }
.typing-letter[data-delay="750"] { animation-delay: 1440ms; } */

/* Word grouping for smoother transitions */
.typing-text:nth-child(1) .typing-letter {
  /* animation-duration: 1.2s; */
}

.typing-text:nth-child(2) .typing-letter {
  /* animation-duration: 1.2s; */
}

.typing-text:nth-child(3) .typing-letter {
  /* animation-duration: 1.2s; */
}

/* Footer Contact Links Styling */
.phone-link,
.email-link {
  color: rgba(226, 226, 226, 0.93) !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.phone-link:visited,
.email-link:visited {
  color: rgba(226, 226, 226, 0.93) !important;
  text-decoration: none !important;
}

.phone-link:visited,
.email-link:visited {
  color: rgba(226, 226, 226, 0.93) !important;
  text-decoration: none !important;
}
