* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: black;
}

.Menu-body {
  background-color: #ffffff;
}

/* Header with background image and zoom effect */
header {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  animation: zoomInOut 3s 6 alternate;
  z-index: 1;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Logo styling - fixed position */
.logo {
  position: fixed;
  top: 1.5%;
  left: 20px;
  z-index: 100;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* Navigation bar - fixed position */
.navbar {
  position: fixed;
  flex-direction: row-reverse;
  top: 30px;
  right: 30px;
  z-index: 100;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.navbar.hidden {
  opacity: 0;
  transform: translateY(-100px);
  pointer-events: none;
}

.navbar nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.navbar nav a {
  text-decoration: none;
  color: white;
  font-size: 29px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #ffcc00;
}

/* Book Now button styling */
#book-now-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 29px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

#book-now-btn:hover {
  background: white;
  color: black;
}

/* Side navigation - hidden by default */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 200;
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.side-nav.active {
  right: 0;
}

.side-nav ul {
  list-style: none;
  text-align: center;
  width: 100%;
}

.side-nav ul li {
  margin: 25px 0;
  width: 100%;
}

.side-nav a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
  width: 100%;
}

.side-nav a:hover {
  color: #ffcc00;
  background-color: rgba(255, 255, 255, 0.1);
}

.side-nav .book-now {
  font-weight: bold;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 20px;
}

/* Hamburger menu - hidden by default on desktop */
.hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 25px;
  z-index: 300;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Show hamburger when navbar is hidden */
.hamburger.show {
  display: flex;
}

/* Content sections */
section {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 40px 20px;
}

#about {
  background-color: #f5f5f5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/wooden-table-looking-out-restaurant.jpg);
  margin-bottom: 0px !important;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
#contact {
  background-color: #e9e9e9;
}

#menu {
  background-color: #f5f5f5;
}

section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ffffff;
}

section p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
}

/* Buttons at bottom of page */
.submit-btn {
  padding: 1rem;
  margin: 10px;
  background-color: #b69b4d;
  color: white;
  border: none;
  /* padding: 3rem; */
  border-radius: 80px;
  cursor: pointer;
  font-size: 2rem;
  width: 70%;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}
/* Overlay for mobile navigation */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Update side-nav z-index to be above overlay */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 250; /* Increased z-index to be above overlay */
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Update hamburger z-index to be above everything */
.hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 25px;
  z-index: 300; /* Highest z-index */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
/* Animated Section Styles */
.animated-section {
  /* min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0px !important;
  padding: 0px !important;
  overflow: hidden !important;
}

.container {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  height: auto;
}

.content-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth easing */
  will-change: transform, opacity; /* Performance optimization */
}

/* Initial hidden states */
.content-box {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.left-content {
  transform: translateX(-150px) translateY(60px) scale(0.95);
  background-image: url(./images/saxfpne.jpg);
  background-position: center;
  background-size: cover;
  height: 50vh;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.right-content {
  transform: translateX(150px) translateY(60px) scale(0.95);
  background-color: #2f5f6e;
  color: white;
  height: 50vh;
  font-size: 3rem;
  font-weight: 700;
}

/* Active states when in view */
.content-box.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Different transition delays for staggered effect */
.left-content.active {
  transition-delay: 0.1s;
}

.right-content.active {
  transition-delay: 0.3s;
}

/* Fading out states */
.content-box.fading-out {
  opacity: 0;
  transform: translateY(-60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53); /* Different easing for fade out */
}

.left-content.fading-out {
  transform: translateX(-100px) translateY(-60px) scale(0.95);
}

.right-content.fading-out {
  transform: translateX(100px) translateY(-60px) scale(0.95);
}

.content-box h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.content-box:hover h2 {
  transform: translateY(-2px);
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  text-align: justify;
  margin-bottom: 30px;
}

.learn-more-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Fade Section Styles */
.fade-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  background-image: url("./images/Screenshot\ 2026-02-04\ 212236.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0px !important;
}

.fade-section.bg-visible {
  opacity: 1;
}

.fade-content {
  text-align: center;
  max-width: 800px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.fade-section.content-visible .fade-content {
  opacity: 1;
  transform: translateY(0);
}

.fade-content h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.fade-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  transform: translateY(0);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(241 241 241 / 81%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
}
.review-slider {
  padding: 0px !important;
  margin: 0px !important;
  min-height: auto !important;
}
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 15px;
  color: black;
}

.name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: black;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

#prev {
  left: 10px;
}
#next {
  right: 10px;
}
#book-now {
  background: #010d48;
  color: white;
  padding: 80px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin: 0 auto 0rem;
  gap: 3rem;
}

#book-now.visible {
  opacity: 1;
  transform: translateY(0);
}

#book-now p {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 40px;
  line-height: 1.8;
  max-width: 100%;
  color: #ffffff;
}

/* Button Styles */
#book-now button {
  display: inline-block;
  background: linear-gradient(to right, #d4af37, #f5d76e);
  color: #1a2f3b;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#book-now button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
  background: linear-gradient(to right, #f5d76e, #d4af37);
}

#book-now button:active {
  transform: translateY(1px);
}

#book-now button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

#book-now button:hover::after {
  left: 100%;
}

/* Additional Animation Ideas */
.pulse {
  animation: pulse 2s infinite;
}
.footer {
  background: #010d48;
  color: white;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #d4af37;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #d4af37;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-list i {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #d4af37;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-list a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.contact-list a:hover {
  color: #d4af37;
}

.contact-list li:hover i {
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #d4af37;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Map Styles */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #2c5364;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #d4af37;
}

.map-placeholder p {
  max-width: 80%;
  margin: 0 auto;
}

#menu-head {
  display: flex !important;
  justify-content: center !important;
  height: auto !important;
  min-height: fit-content;
  align-items: stretch !important;
  background-color: #002856;
  margin: 0px !important;
}
.box-1 {
  width: 10%;
  flex: 1;
  background-color: transparent;
  border-top: 0px solid black;
  border-right: 2px solid #b69b4d;
  border-bottom: 2px solid #b69b4d;
  border-left: 0px solid black;
}
.box-3 {
  width: 10%;
  flex: 1;
  background-color: transparent;
  border-top: 0px solid black;
  border-right: 0px solid black;
  border-bottom: 2px solid #b69b4d;
  border-left: 2px solid #b69b4d;
}
.box-2 {
  width: 80%;
  flex: 33;
}
.box-2-child {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60%;
  height: 2rem;
  background-color: #002856;
  padding: 1.75rem 0rem;
  border-bottom: 2px solid #b69b4d;
}
.box-2-left span,
.box-2-child span {
  font-size: 1.5rem;
  color: #ffffff;
}
.box-2-child2 {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0rem;
  align-items: center;
  border-bottom: 2px solid #b69b4d;
}
.box-2-child2 a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}
.box-2-child2 a:hover {
  color: #b69b4d;
}
.head-imgs,
.menu {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px !important;
  margin: 0px !important;
}
.head-imgs1,
.head-imgs3 {
  flex: 1;
  border-bottom: 2px solid #b69b4d;
  background-color: #002856;
}
.head-imgs1 {
  border-right: 2px solid #b69b4d;
}
.head-imgs3 {
  border-left: 2px solid #b69b4d;
}
.head-imgs2 {
  flex: 33;
  background-image: url(./images/menu-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80%;
  border-bottom: 2px solid #b69b4d;
}
.menu-col1,
.menu-col3 {
  flex: 1;
  border-bottom: 2px solid #b69b4d;
}
.menu-col2 {
  flex: 33;
  width: 80%;
  border-bottom: 2px solid #b69b4d;
}
.menu-col1 {
  border-right: 2px solid #b69b4d;
}
.menu-col3 {
  border-left: 2px solid #b69b4d;
}
.food-cat {
  font-size: 3rem;
  font-weight: 700;
  color: #b69b4d;
  padding: 1rem 0rem 0.5rem 1rem;
  display: flex;
  width: 100%;
}
.food-ar{
  flex-direction: row-reverse;
  padding: 0px 20px 10px 0px;
}
.food-cat div {
  font-size: 1rem;
  display: flex;
  gap: 6rem;
  padding-left: 2rem;
}
.img-speration {
  display: none;
}
.gold-border {
  width: 100%;
  height: 2px;
  background-color: #b69b4d;
}
.item-container {
  font-size: 2rem;
  font-weight: 500;
  color: #002856;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 1.5rem 1rem;
  margin-top: 1rem;
  /* border-bottom: 2px solid #b69b4d; */
}
.ar-item{
    flex-direction: row-reverse;
}
.ar-food{
    align-items: end !important;
}
.ar-food span{
  text-align: end !important;
}
.food-wrap {
  display: flex;
  flex-direction: column;
}
.sides-wrapper {
  width: 100%;
  text-align: center;
  margin: 1rem 0rem;
}
.food-desc {
  font-size: 1rem;
  color: #b69b4d;
  margin-top: 10px;
}
.date-wrapper {
  position: relative;
  width: 70%;
}
.date-wrapper input{
  position: relative;
  width: 100%;
}
.date-status {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #ff4d4d;
  min-height: 20px;
  pointer-events: none;
}

.desc-ar{
  text-align: end;
}
.item-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-price svg {
  margin-top: 5px;
}
.reservation-body {
  background-color: #010d48 !important;
  color: #b69b4d;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Button text/icon */
.dropbtn {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
}

/* Dropdown content box */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #1e1e1e;
  min-width: 120px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-radius: 6px;
}

/* Links inside dropdown */
.dropdown-content a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease;
}

/* Hover states */
.dropdown-content a:hover {
  background-color: #2a2a2a;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Globe icon spacing */
.fa-globe {
  margin-right: 6px;
}
.menu-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #0028562b;
}
.reservation-logo {
  width: 20rem;
  display: inline-block;
  margin: 2.5rem 0rem 0rem 2rem;
}
.reservation-logo img {
  width: 100%;
}
.reservation-head {
  display: flex;
  justify-content: center;
  font-size: 5rem;
  margin: 6rem 0rem 8rem;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100% !important;
}
label {
  font-size: 2rem;
  color: #b69b4d;
}
input {
  border: 2px solid gold;
  width: 70%;
  border-radius: 80px;
  padding: 1rem;
  font-size: 2rem;
}
.comment-sec {
  border: 2px solid gold;
  font-size: 2rem;
  width: 70%;
  border-radius: 124px;
  padding: 1rem;
  line-height: 15px;
  text-align: center;
}
#area {
  text-align: center;
  width: 70%;
  border: 2px solid #ffd700;
  border-radius: 80px;
  padding: 1rem;
  font-size: 2rem;
}
#menu-head,
.box-2,
.box-2-child2 {
  overflow: visible !important;
}

#menu-head {
  position: relative;
  z-index: 50;
}

.dropdown {
  position: relative;
  z-index: 9999;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10000;
}
.scrollmenu .dropdown {
  display: inline-block;
  position: relative;
}

.scrollmenu .dropbtn {
  display: inline-block;
  padding: 14px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.scrollmenu {
  position: relative;
  overflow-x: auto;
  overflow-y: visible !important; 
  white-space: nowrap;
}


.lang-dropdown.open .dropdown-content {
  display: block;
}
div.scrollmenu {
  overflow-x: auto;
  overflow-y: visible; 
  position: relative;   
}
.scrollmenu .dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10000;
}
.dropdown-portal {
  display: block !important;
  background-color: #1e1e1e;
  min-width: 140px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 999999 !important;
  border-radius: 6px;
}
.res-hide{
  display: none !important;
}
#force-input{
  width: 70% !important;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}
@media (min-width: 1911px) and (max-width: 4000px) {
  .scrollmenu {
    display: none;
  }
}

@media (min-width: 1440px) and (max-width: 1910px) {
  .box-2-child {
    gap: 40%;
  }
  .food-wrap {
    width: 85%;
  }
  .scrollmenu {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .box-2-child {
    gap: 25%;
  }
  .food-wrap {
    width: 80%;
  }
  .box-2-child2 a {
    font-size: 1.25rem;
  }
  .scrollmenu {
    display: none;
  }
}
@media (max-width: 769px) {
  .fade-content {
    padding: 40px 25px;
    margin: 0 20px;
  }
  .box-2-child2 > .dropdown { display: none; }
  
  .fade-content h2 {
    font-size: 2.2rem;
  }

  .fade-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  #book-now {
    padding: 60px 20px;
  }

  #book-now p {
    font-size: 1.1rem;
  }

  #book-now button {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
  .footer-content {
    padding: 30px 20px;
    flex-direction: column;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .box-2-child2 > .dropdown {
    display: none;
  }
  .footer h3 {
    font-size: 1.5rem;
  }
  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-box {
    padding: 30px 25px;
    transform: translateY(80px) scale(0.95) !important;
  }

  .left-content,
  .right-content {
    transform: translateY(80px) scale(0.95) !important;
  }

  .content-box.active {
    transform: translateY(0) scale(1) !important;
  }

  .content-box.fading-out {
    transform: translateY(-80px) scale(0.95) !important;
  }

  .content-box h2 {
    font-size: 2rem;
  }

  .content-box p {
    font-size: 1rem;
  }
  .input-style {
    border: 2px solid gold;
    width: 70% !important;
    border-radius: 80px;
    padding: 3rem;
    font-size: 3rem;
  }
  #area {
    text-align: center;
    width: 70% !important;
    border: 2px solid #ffd700;
    border-radius: 80px;
    padding: 3rem;
    font-size: 3rem;
  }
  .comment-sec {
    border: 2px solid gold;
    font-size: 2rem;
    width: 70% !important;
    border-radius: 124px;
    padding: 3rem;
    line-height: 22px;
    text-align: center;
  }
  .submit-btn {
    padding: 3rem;
    margin: 10px;
    background-color: #b69b4d;
    color: white;
    border: none;
    /* padding: 3rem; */
    border-radius: 80px;
    cursor: pointer;
    font-size: 3rem;
    width: 70% !important;
    transition: background-color 0.3s ease;
  }
  .footer-content{
    display: flex !important;
    flex-direction: column-reverse !important;
    flex-wrap: wrap;
    padding: 50px 40px;
    gap: 2rem;
}
  .img-speration {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0rem 1.5rem;
    display: block;
  }
  .pasta-img {
    background-image: url(./images/download\ \(3\).jfif);
  }
  .pizza-img {
    background-image: url(./images/download\ \(2\).jfif);
  }
  .main-img {
    background-image: url(./images/4.png);
  }
  .sandwich-img {
    background-image: url(./images/download\ \(1\).jfif);
  }
  .soups-img {
    background-image: url(./images/download.jfif);
  }
  .salads-img {
    background-image: url(./images/1.png);
  }
  .appetizers-img {
    background-image: url(./images/4.png);
  }
  .dessert-img {
    background-image: url(./images/5.png);
  }
  .date-wrapper {
    width: 80% !important;
}
.comment-sec{
  font-size: 1.2rem;
}
}
@media (min-width: 320px) and (max-width: 480px) {
  .box-2-child {
    gap: 16%;
  }
  .box-2-left {
    width: 23%;
    display: none;
    align-items: center;
  }
  .box-2-child span {
    font-size: 0.85rem;
  }
  .box-2-child2 a {
    display: none;
  }
  div.scrollmenu {
    overflow-x: auto;     
    overflow-y: visible;  
    white-space: nowrap;
    position: relative;   
  }
  

  div.scrollmenu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 16px;
  }

  div.scrollmenu a:hover {
    background-color: #777;
  }
  .item-container {
    font-size: 1rem;
    font-weight: 600;
    align-items: flex-start;
  }
  .food-desc {
    font-size: 12px;
  }
  .food-cat {
    font-size: 1.5rem;
  }
  .item-price {
    font-size: 14px;
    width: 27%;
  }
  .food-wrap {
    width: 70%;
  }
  .sides-wrapper {
    width: 100%;
    text-align: center;
  }
  .food-cat div {
    flex-direction: column;
    font-size: 12px;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    width: 98%;
  }
  .input-style {
    border: 2px solid gold;
    width: 80% !important;
    border-radius: 80px;
    padding: 3rem;
    font-size: 3rem;
  }
  #area {
    text-align: center;
    width: 70% !important;
    border: 2px solid #ffd700;
    border-radius: 80px;
    padding: 3rem;
    font-size: 3rem;
  }
  .comment-sec {
    border: 2px solid gold;
    font-size: 3rem;
    width: 70%;
    border-radius: 124px;
    padding: 3rem;
    line-height: 22px;
    text-align: center;
  }
  .submit-btn {
    padding: 3rem;
    margin: 10px;
    background-color: #b69b4d;
    color: white;
    border: none;
    /* padding: 3rem; */
    border-radius: 80px;
    cursor: pointer;
    font-size: 3rem;
    width: 70% !important;
    transition: background-color 0.3s ease;
  }
}
@media (max-width: 480px) {
  .animated-section {
    padding: 60px 15px;
  }

  .content-box {
    padding: 25px 20px;
  }

  .content-box h2 {
    font-size: 1.8rem;
  }
  .fade-section {
    padding: 60px 15px;
  }

  .fade-content {
    padding: 30px 20px;
  }

  .fade-content h2 {
    font-size: 1.8rem;
  }
  
}
@media (min-width: 320px) and (max-width: 375px) {
  .img-speration {
    height: 40vh;
  }
}
@media (min-width: 375px) and (max-width: 425px) {
  .img-speration {
    height: 53vh;
  }
}
@media (min-width: 320px) and (max-width: 769px) {
  .pasta-img {
    background-image: url(./images/download\ \(3\).jfif);
  }
  .pizza-img {
    background-image: url(./images/download\ \(2\).jfif);
  }
  .breakfast-img {
    background-image: url(./images/download\ \(2\).jfif);
  }
  .main-img {
    background-image: url(./images/4.png);
  }
  .sandwiches-img {
    background-image: url(./images/download\ \(1\).jfif);
  }
  .soups-img {
    background-image: url(./images/download.jfif);
  }
  .salads-img {
    background-image: url(./images/1.png);
  }
  .appetizers-img {
    background-image: url(./images/4.png);
  }
  .dessert-img {
    background-image: url(./images/5.png);
  }
}
