body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* Overlay Menu */
.nav-overlay {
  position: fixed;
  top: -120vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0); /* Start fully transparent */
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: top 0.5s ease-in-out, background-color 0.5s ease-in-out;
  pointer-events: none; /* Prevent interaction when hidden */
}

.nav-overlay.active {
  top: 0;
  background-color:#1E1E1E; /* Fade in */
  pointer-events: auto;
}

.nav-overlay.active {
  top: 0; /* Slide in */
}
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  margin: 10px 0;
  font-family: Barlow Condensed, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links a:hover{
  color: #f5c16c;
}

/* navbar */
.navbar {
  position: absolute;
  /* or 'fixed' if you want it to stay while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  /* higher than the background overlay */
}

.logo {
  width: auto;
  height: 50px;
}

.logo-name {
  width: auto;
  height: 40px;

  opacity: 0; /* Start hidden */
  transform: translateY(-0px); /* Slight upward offset */
  animation: fadeInLogo 1s ease-out forwards;
  animation-delay: 0.2s; /* Optional delay */
}

/* Keyframes for fade in + slight slide down */
@keyframes fadeInLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-logo {
  display: flex;
  gap: 20px;
}

.icon {
  width: 20px;
  height: 20px;
}
.hamburger {
  width: 20px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002; /* Above overlay */
  color: #f5c16c;
}

.hamburger span {
  height: 1.5px;
  background-color: #f5c16c;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animation: Transform to X when .active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* top-scroll */
/* Common styles for both arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 80px;

  transition: padding 0.3s ease;
}

/* Icon base */
.arrow-icon {
  width: 50px;
  height: 20px;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
/* Hover effect: padding grows */
.slide-arrow.left-arrow:hover .arrow-button,
.slide-arrow.right-arrow:hover .arrow-button {
  padding: 100px;
}


/* Left arrow yaw rotation: left to right */
.arrow-icon.rotate-on-leave-left {
  animation: yawRotateLeft 1s ease;
}

/* Right arrow yaw rotation: right to left */
.arrow-icon.rotate-on-leave-right {
  animation: yawRotateRight 1s ease;
}

/* Keyframes: left-to-right yaw (normal) */
@keyframes yawRotateLeft {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Keyframes: right-to-left yaw (reverse) */
@keyframes yawRotateRight {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}
/* Position left arrow to left side */
.left-arrow {
  left: -20px;
  /* distance from left edge */
}

/* Position right arrow to right side */
.right-arrow {
  right: -20px;
  /* distance from right edge */
}
.top-scroll-container {
  position: relative;
  width: 100%;
  height: 100vh; /* same height as sections */
  background-color: rgb(0, 0, 0); /* or whatever your main bg color is */
  overflow: hidden;
  
}

.top-scroll-section,
.top-scroll-section-b,
.top-scroll-section-c {
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.5s ease, filter 0.5s ease;
  display: none; /* keep as is for hiding */
}

.top-scroll-section.active,
.top-scroll-section-b.active,
.top-scroll-section-c.active {
  display: block;
  opacity: 1;
  filter: blur(0);
}

.top-scroll-section.transitioning,
.top-scroll-section-b.transitioning,
.top-scroll-section-c.transitioning {
  opacity: 0;
  filter: blur(0px);
}

.top-scroll-section {
  position: relative;
  background-image: url(./images/resturent);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.top-scroll-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here */
  z-index: 2;
}

.top-scroll-section-b {
  position: relative;
  background-image: url(./images/hotel);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.top-scroll-section-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here */
  z-index: 2;
}

.top-scroll-section-c {
  position: relative;
  background-image: url(./images/tomato);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.top-scroll-section-c::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here */
  z-index: 2;
}

.top-scroll-section>*,
.top-scroll-section-b>*,
.top-scroll-section-c>* {
  position: relative;
  z-index: 3;
}

.top-scroll-grid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center */
  align-items: center;
  /* Horizontally center */
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0px 0;
}

.section-title h2 {
  color: #f5c16c;
  /* light golden color similar to your image */
  letter-spacing: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;

}

.section-title .line {
  display: inline-block;
  /* <--- add this */
  width: 50px;
  /* <--- define width */
  height: 1px;
  /* <--- define height */
  background-color: #f5c16c;
}

.title {
  margin: 0;
  font-size: 56px;
  font-family: Gilda Display, sans-serif;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
}

.title-para {
  font-family: Gilda Display, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5em;
  color: white;
  width: 30%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  color: #ffffff;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  width: 170px;
  height: 50px;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid rgba(245, 193, 108, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Pseudo-element for animated background fill */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #252525;
  z-index: -1;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Hover: expand left to right */
.btn:hover::before {
  transform: scaleX(1);
}
.shape-wrapper {
  position: relative;
  display: inline-block;
}

/* base shape */
.shape {
  height: 30px;
  display: block;
}

/* arrow starts centered */
.inside-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  width: auto;
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
  transition: transform 5s ease, opacity 5s ease;
}


/* On button hover, start the arrow animation */
.btn:hover .inside-arrow {
  animation: arrowSlideDisappear 1s ease infinite;
}

@keyframes arrowSlideDisappear {
  0% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) translateX(10px); /* smaller move inside the shape */
    opacity: 0;
  }
  51% {
    transform: translate(-150%, -50%) translateX(0);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
}
/* grid-section */
.grid-section {
  background-color: #111111;
  height: auto;
  padding: 80px 150px;
  display: flex;
  justify-content: space-between;
}

.grid-option {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  gap: 20px;
  align-items: center;
}

.grid-img-section {
  width: 30%;
}

.grid-img {
  background-color: #212121;
  height: 55px;
  width: 65px;
  padding: 5px;
}

.grid-img-section-head {
  width: 70%;
}

.grid-img-section-about {
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-family: Barlow Condensed, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #d7d7d8;
  text-transform: uppercase;
  margin: 0;
}

/* story-section */
.story-section {
  background-color: #111111;
  padding: 40px 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.global-vertical-line {
  position: absolute;
  top: 60%;
  left: 40px; /* adjust if needed */
  width: 0.5px;
  height: 0;
  background-color: #FFCF82;
  z-index: 0; /* Lower than the image */
  transition: height 0.5s ease-out;
  border-radius: 1px;
}


.story-section {
  position: relative;
  z-index: 1;
}

.section-head {
  font-family: Gilda Display, sans-serif;
  font-size: 45px;
  font-weight: 400;
  margin: 0;
  color: #F5F5F5;
  padding-bottom: 10px;
}

.img-line {
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: #f5c16c;
}

.since {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  color: #fff;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 40px;
}

.story-box {
  display: flex;
  flex-direction: column;
  align-items: center; /* Changed from flex-end to center for better consistency */
  width: 100%;
  margin-bottom: 60px; /* Add spacing between boxes */
}


.our-story-grid {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  gap: 20px;
}

.our-story-grid-left {
  flex: 0 0 80px; /* Fixed width instead of 10% */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.our-story-grid-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 300px;
}

.bottom-shape {
  position: relative;
  z-index: 1; /* Below the number */
  width: 100%;
  height: auto;
  display: block;
  background-color: #111;
}

.number {
  position: absolute;
  z-index: 2; /* Ensure it sits above .bottom-shape */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: white;
  pointer-events: none;
}

.our-story-grid-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.5s ease-out;
  display: block;
  border-radius: 5px;
}


.location-card {
  display: flex;
  align-items: center;
  padding: 60px;
  padding-right: 80px;
  font-family: 'Segoe UI', sans-serif;
  color: #f5f5f5;
  width: 75%;
  background-color: #111;
  /* Optional: ensure contrast with divider */
}

.location-title {
  font-size: 32px;
  font-weight: 500;
  margin-right: 16px;
  color: #fff;
  font-family: Gilda Display, sans-serif;
  margin: 0;
}

.divider {
  width: 2px;
  height: 60px;
  /* Set a visible height */
  background-color: #FFCF82;
  margin-right: 16px;
  margin: 0px 10px;
}

.location-description {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ccc;
  margin: 0;
  font-family: Barlow Condensed, sans-serif;
}

.bottom-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0px 0;
  padding: 40px 0px;
}

.bottom-line {
  display: inline-block;
  width: 150px;
  height: 1px;
  background-color: #f5c16c;
}

.bottom-line-logo {
  width: 40px;
  height: auto;
}

/* food-section */
.food-section {
  padding: 60px 140px;
  background-color: #111111;
  display: flex;
  gap: 70px;
}

.food-section-grid-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical center */
  align-items: flex-start;
  /* align to the left */
  height: 90vh;
  /* must have a height to center within */
}

.food-section-grid-right {
  position: relative;
  width: 55%;
  height: 90vh;
  background-image: url('./images/noodles'); /* Add proper extension */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden; /* To clip overlay */
}

.yellow-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #FFCF82;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.5s ease-out; /* 1 second transition */
  will-change: clip-path;
}

.yellow-overlay.hide-overlay {
  clip-path: inset(0 0 100% 0); /* fully clipped from bottom to top */
}



.food-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px 0;
}

.food-title p {
  color: #f5c16c;
  /* light golden color similar to your image */
  letter-spacing: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;

}

.food-section-title {
  font-size: 32px;
  font-weight: 500;
  margin-right: 16px;
  color: #fff;
  font-family: Gilda Display, sans-serif;

}

.food-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #f5c16c;
}

.grid-title {
  font-size: 32px;
  font-weight: 500;
  margin-right: 16px;
  color: #fff;
  font-family: Gilda Display, sans-serif;
  margin: 0;
  padding: 20px 0px;
}

/* chef-section */
.chefs-grid {
  display: flex;
  gap: 80px;
}

.chefs-grid-left {
  position: relative;
  display: inline-block; /* shrink-wrap to image */
  overflow: hidden;
  border-radius: 5px;
  width: 50%;
}
.chef-wrapper {
  position: relative;
  display: inline-block; /* shrink-wrap to image */
  overflow: hidden;
  border-radius: 5px;
}


.yellow-overlay-chef {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: #FFCF82;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.5s ease-out;
  will-change: clip-path;
  border-radius: 5px;
  z-index: 2;
  width: 90%;
}



.yellow-overlay-chef.hide-overlay {
  clip-path: inset(0 0 100% 0); /* disappear bottom to top */
}

/* Chef image starts zoomed in */
.chef {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  transform: scale(1.1);
  transition: transform 1.5s ease-out;
  will-change: transform;
}

/* Zoom out effect when overlay disappears */
.chefs-grid-left.zoomed-out .chef {
  transform: scale(1);
}

.chefs-grid-right {
  width: 50%;
  text-align: left;
}

.chef {
  width: 90%;
}

.chef-para {
  font-size: 19px;
  width: 70%;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ccc;
  margin: 0;
  padding: 10px 0px;
  font-family: Barlow Condensed, sans-serif;
}

.special {
  display: flex;
  gap: 20px;
  padding: 30px 0px;
}

.fork {
  background-color: #212121;
  padding: 25px;
  border-radius: 50%;
}

.passion {
  color: #f5c16c;
  /* light golden color similar to your image */
  letter-spacing: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  margin: 0;
  padding-top: 5px;

}

.flavour {
  font-size: 19px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ccc;
  margin: 0;
  padding: 0px 0px;
  font-family: Barlow Condensed, sans-serif;
}

.signature {
  height: 30px;
  width: auto;
  margin: 10px 0px;
}

/* ingredients-section */
.ingredients-section {
  padding: 60px 140px;
  background-color: #111111;
}

.scroll-section {
  padding: 50px 40px;
  display: flex;
  overflow-x: auto;    /* enable horizontal scroll */
  scroll-behavior: smooth; /* smooth scroll on scrollLeft changes */
  gap: 20px;           /* space between scroll-by blocks */
  scroll-snap-type: x mandatory; /* snap to children */
}
.scroll-section::-webkit-scrollbar {
  display: none;
}
.scroll-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scroll-by {
  flex: 0 0 100%;      /* take full width of container */
  scroll-snap-align: start; /* snap at start */
  display: flex;
  gap: 50px;
}

.scroll-grid {
  width: 50%;
  display: flex;
  gap: 20px;
}

.scroll-grid-box-left {
  width: 45%;
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
}

.scroll-grid-box-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical center */
  align-items: flex-start;
}

.scroll-grid-box-img {
  max-width: 100%;
  height: 35vh;
  object-fit: cover;
  border-radius: 5px;
}

.scroll-grid-title {
  font-size: 32px;
  font-weight: 500;
  margin-right: 16px;
  color: #fff;
  font-family: Gilda Display, sans-serif;
  margin: 0;
  padding: 0px 0px;
}

.title-underline {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #f5c16c;
  margin: 10px 0px;
}

.scroll-title-para {
  font-size: 19px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ccc;
  margin: 0;
  padding: 0px 0px;
  font-family: Barlow Condensed, sans-serif;
}

.scroll-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.white-grid {
  background-color: #707070;
  height: 15px;
  width: 15px;
  cursor: pointer;
}

/* menu-section */
.menu-section {
  background-color: #111111;
  padding: 40px 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-grid {
  display: flex;
  gap: 50px;
  padding: 20px 0px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* ensures left alignment */
  font-family: 'Barlow Condensed', sans-serif;
  width: 50%;
}

.menu-img {
  width: 30%;
  /* adjust as needed */
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
  /* space between image and content */
}

.menu-content {
  width: 100%;
  text-align: left;
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.menu-title {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Gilda Display', serif;
  margin: 0;
  color: white;
}


.menu-dots {
  flex: 1;
  border-bottom: 1px dotted #ffffff;
  margin: 0 8px;
}

.menu-price {
  font-size: 24px;
  font-family: 'Gilda Display', serif;
  white-space: nowrap;
  color: white;
}

.menu-description {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* bottle-section */
.bottle-section {
  background-color: #111111;
  padding: 40px 180px;
  gap: 0px;
}
.bottle-grid{
  display: flex;
}

.bottle-section-grid-left {
  width: 50%;
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
}

.bottle-section-grid-right {
  width: 50%;
}

.bottle {
  width: auto;
  height: 100vh;
}

.bottle-menu-list {
  padding: 30px 0px;
}

.bottle-menu {
  width: 100%;
  text-align: left;
  padding: 15px 0px;
}

/* testimonial-section */
.testimonial-section {
  display: flex;
  background-color: #111111;
  padding: 80px 210px;
  gap: 20px;
}

.testimonial-section-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-section-right {
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease;
  padding: 50px;
  box-sizing: border-box;
  background-color: #1E1E1E;
  width: 70%;
}



.testimonial-grid {
  background-color: #1E1E1E;
  padding: 25px;
  display: flex;
  width: 100%;
  gap: 15px;
}

.testimonial-grid:hover {
  border-bottom: 1px solid #FCD05A;
}

.testimonial-grid-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
}

.person {
  width: 50px;
  height: 60px;
  border-radius: 50%;
}

.person-name {
  color: #f5c16c;
  /* light golden color similar to your image */
  letter-spacing: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
}

.tag {
  width: 100px;
  display: block;
}

.star-section {
  display: flex;
  gap: 5px;
}

.star {
  width: 15px;
  height: 15px;
}

/* resourse-section */
.resourse-section {
  background-color: #111111;
  padding: 40px 210px;
}
.resourse-grid{
   display: flex;
 flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}

.resourse-para {
  letter-spacing: 2px;
  font-family: Barlow Condensed, sans-serif;
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  padding-top: 0px;
  width: 60%;
}

.article-grid {
  width: 100%;
  background-color: #1E1E1E;
  display: flex;
  margin: 30px 0px;
  height: 90vh;
}

.article-grid-left {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.article-wrapper {
  position: relative;
  display: inline-block; /* shrink-wrap */
  overflow: hidden;
  border-radius: 5px;
  height: 100%;
}

.yellow-overlay-article {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: #FFCF82;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.5s ease-out;
  will-change: clip-path;
  border-radius: 5px;
  z-index: 2;
}

.yellow-overlay-article.hide-overlay {
  clip-path: inset(0 0 100% 0);
}


.article-grid-right {
  width: 50%;
  padding: 0px 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #FCD05A;
  border-radius: 5px;
  transform: scale(1.1);
  transition: transform 1.5s ease-out;
  will-change: transform;
}

/* Zoom out effect when overlay disappears */
.article-grid-left.zoomed-out .article-img {
  transform: scale(1);
}

.feature-btn {
  color: #f5c16c;
  letter-spacing: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  background-color: #111;
  padding: 10px 20px;
  width: 40%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.article-para {
  letter-spacing: 2px;
  font-family: Barlow Condensed, sans-serif;
  color: #fff;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  padding: 10px 0px;
}

.button-readmore {
  text-transform: uppercase;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #111111;
  letter-spacing: 2px;
  font-family: Barlow Condensed, sans-serif;
  border-radius: 5px;
  border: 1px solid #FCD05A;
}

/* booking-section */
.booking-section {
  background-color: #111111;
  padding: 80px 0px;
  display: flex;
}

.booking-section-left {
  width: 50%;
  padding: 0px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertical centering */
  text-align: center;
  height: 120vh; /* Match the height of .booking-section-right */
}

.booking-section-right {
  width: 50%;
  height: 120vh;
}

.booking-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.booking-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay on top, left, and bottom */
.booking-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #111111 5%, transparent 50%),
    linear-gradient(to right, #111111 5%, transparent 50%),
    linear-gradient(to top, #111111 5%, transparent 50%);
  pointer-events: none;
}

.reservation-form {
  background-color: #212121;
  border-radius: 5px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.form-row input {
  background-color: #1A1A1A;
  font-size: 14px;
  border: none;
  padding: 8px 10px;
  border-radius: 5px;
}

.form-group {
  flex: 1;
  position: relative;
}

.form-group.full-width {
  width: 100%;
}

.form-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #555;
  padding: 12px 0;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-bottom-color: #f4a261;
}

.form-input::placeholder {
  color: #888;
  opacity: 1;
}

.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #888;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.booking-btn {
  text-transform: uppercase;
  background-color: #FCD05A;
  border: none;
  color: rgb(0, 0, 0);
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  letter-spacing: 2px;
  font-family: Barlow Condensed, sans-serif;
}

.booking-btn:hover {
  background-color: #D7D7D8;
}
/* .hover-section */
.hover-grid{
  display: flex;
}
.hover-grid-img {
  width: 25%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

.hover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.hover-grid-img:hover .hover-img {
  transform: scale(1.1);
}

/* Black gradient overlay */
.hover-grid-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.hover-grid-img:hover::after {
  opacity: 0.8;
}

/* Instagram icon */
.hover-insta {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* On top of gradient */
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none; /* Optional: makes the icon unclickable */
}

/* Show icon only on hover */
.hover-grid-img:hover .hover-insta {
  opacity: 1;
}


/* footer */
.footer-top {
  font-family: Barlow Condensed, sans-serif;
  /* <--- NEW: Vertically center children */
  background-color: #212121;
  
  padding: 50px 140px;
}
.footer-grid{
   display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
gap: 40px;
}

.footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
  font-family: Barlow Condensed, sans-serif;
}

.footer-logo{
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: 18px;
  line-height: 1.6;
  font-family: Barlow Condensed, sans-serif;
  color: white;
}

.social-icons {
 display: flex;
 gap: 15px;
 align-items: center;
 justify-content: center;
}


.footer-columns {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
  margin-top: 10px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 18px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column.contact p {
  font-size: 18px;
  margin: 8px 0;
  color: white;
}

.footer-column.contact i {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 140px;
  display: flex;
  font-family: Barlow Condensed, sans-serif;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  background-color: #1E1E1E;
  color: #aaa;
}

.footer-bottom a {
  text-decoration: none;
   color: #aaa;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-icon{
  width: 20px;
  height: 20px;
}





/* Fade Up */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade Right */
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade Left */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom In */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-right {
  opacity: 0;
  animation: fadeRight 0.8s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  animation: fadeLeft 0.8s ease forwards;
}

.animate-fade-zoom-in {
  opacity: 0;
  animation: zoomIn 0.8s ease forwards;
}
.animate-duration-800 {
  animation-duration: 0.8s !important;
}

.animate-duration-900 {
  animation-duration: 0.9s !important;
}

.animate-duration-1000 {
  animation-duration: 1s !important;
}

.animate-duration-1100 {
  animation-duration: 1.1s !important;
}

.animate-duration-1500 {
  animation-duration: 1.5s !important;
}

.animate-duration-2000 {
  animation-duration: 2s !important;
}
/* Initially invisible */
.animate-fade-up,
.animate-fade-right,
.animate-fade-left,
.animate-fade-zoom-in {
  opacity: 0;
}

/* When in view, play animation */
.in-view.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.in-view.animate-fade-right {
  animation: fadeRight 0.8s ease forwards;
}

.in-view.animate-fade-left {
  animation: fadeLeft 0.8s ease forwards;
}

.in-view.animate-fade-zoom-in {
  animation: zoomIn 0.8s ease forwards;
}
