@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --primary-color: #8C5E35;
  --secondary-color: #ffffff;
  --theme-color: #749562;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
  margin: 2px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.form-control:focus {
  box-shadow: none;
}

body {
  font-family: "Jost", sans-serif;
  transition: 0.3s all;
}

.heading5 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.textWhite {
  color: #ffffff;
}

p {
  font-weight: 300;
}

h1 {
  line-height: unset;
}




/* Header Starts Here */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px;
  z-index: 1000;
}

/* 
.nav-links {
  list-style: none;
  display: flex;
  margin-bottom: 0px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
} */

.nav-links {
  list-style: none;
  display: flex;
  padding: 0;
  margin-bottom: 0px;
}

.nav-links li {
  margin: 0 0px;
}

.nav-links a {
  position: relative;
  display: block;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: .5s;
  z-index: 1;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #8C5E35;
  border-bottom: 2px solid #8C5E35;
  transform: scaleY(2);
  opacity: 0;
  transition: .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8C5E35;
  transform: scale(0);
  opacity: 0;
  transition: .3s;
  z-index: -1;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 150px;
}

.book-btn1 {
  /* border: 1px solid #8C5E35; */
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  text-transform: uppercase;
}

.book-btn1:hover {
  background: #8C5E35;
  color: #ffffff;
}


.book-btn {
  /* border: 1px solid #8C5E35; */
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  text-transform: uppercase;
}

.book-btn:hover {
  background: #8C5E35;
  color: #ffffff;
}

.book-btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
  background-color: #8C5E35;
}

.book-btn:hover {
  background: transparent;
  color: #ffffff;
}


.book-btn::before,
.book-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #8C5E35;
  box-shadow:
    -1px -1px 5px 0px #000,
    7px 7px 20px 0px #0003,
    4px 4px 5px 0px #0002;
  transition: 400ms ease all;
}

.book-btn::after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.book-btn:hover::before,
.book-btn:hover::after {
  width: 100%;
  transition: 800ms ease all;
}




.book-btn1 {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
  background-color: #8C5E35;
}

.book-btn1:hover {
  background: transparent;
  color: #ffffff;
}

/* Adding the border animation from .btn-5 */
.book-btn1::before,
.book-btn1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #8C5E35;
  box-shadow:
    -1px -1px 5px 0px #000,
    7px 7px 20px 0px #0003,
    4px 4px 5px 0px #0002;
  transition: 400ms ease all;
}

.book-btn1::after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.book-btn1:hover::before,
.book-btn1:hover::after {
  width: 100%;
  transition: 800ms ease all;
}





.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 992px) {
  .header {
    padding: 25px 25px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: left;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 2px 15px;
  }

  .book-btn {
    display: none;
  }

  .logo img {
    width: 120px;
  }
}

@media only screen and (max-width: 600px) {
  .header {
    padding: 20px 20px;
  }

  .nav-links {
    top: 76px;
  }

  .logo img {
    width: 100px;
  }
}

/* Header Ends Here */


/* Footer Starts Here */

footer {
  background: #042726;
  padding: 150px 10px 20px 10px;
}

.socialLinks p {
  font-size: 12px;
}

.copyright p {
  font-size: 12px;
  text-align: end;
}

@media (max-width: 992px) {}

@media only screen and (max-width: 600px) {
  .socialLinks {
    justify-content: center;
  }

  .copyright p {
    font-size: 12px;
    text-align: center;
  }
}

/* Footer Ends Here */



/* Hero Banner Starts Here */

.heroBanner {
  background-image: url("../images/heroBanner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.heroBanner .container-fluid {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  height: 100vh;
  padding: 200px 30px 50px 30px;
}

@media (max-width: 992px) {
  .heroBanner .container-fluid {
    height: 80vh;
    padding: 130px 30px 100px 30px;
  }

  .display-4 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .heroBanner .container-fluid {
    height: 80vh;
    padding: 120px 30px 100px 30px;
  }

  .display-4 {
    font-size: 30px;
  }
}

@media (max-width: 320px) {
  .heroBanner .container-fluid {
    height: 80vh;
    padding: 120px 30px 100px 30px;
  }

  .display-4 {
    font-size: 30px;
  }
}




/* Hero Banner Ends Here */
/* 
.section {
  padding: 50px 0;
  background-color: #2c5f2e;
}
.chef-section, .cuisine-section {
  background-color: #2c5f2e;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
}
.chef-section img, .cuisine-section img {
  max-width: 100%;
  border-radius: 15px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c5f2e;
}
h2 {
  font-size: 1.5rem;
  color: #2c5f2e;
  margin-bottom: 20px;
}
p {
  color: #555;
}
.btn {
  background-color: #2c5f2e;
  color: white;
} */

/* .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;

} */
/* .about1 {
  padding: 100px 10px 100px 10px;
  background-color: #749562;
  color: white;

} */

.about1-logo {
  width: 110px;
  text-align: center;
}

.about1-heading {
  text-align: center;
}

.about1-subheading {
  text-align: center;
  color: #8C5E35;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.display-4 {
  /* font-size: 100px; */
  padding-left: 10px;
  opacity: 60%;
  font-size: 100px;
}

.chief-content {
  /* font-size: 36px; */
  letter-spacing: 5.4px;
  line-height: 41px;
  margin-bottom: 20px;

  font-size: 36px;
}

.chef-image {
  border-radius: 10px;
  margin: 20px 0;
  width: 85%;
}

.read-more-btn {
  background-color: #A3C8A7;
  border: solid;
  /* padding: 10px 20px; */
  border-radius: 5px;
  color: white;
  font-weight: bold;
}

.text-section {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.text-section2 {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.chief-style {
  padding: 0 35% 0 53px;
}



.btn-outline-primary {
  border-color: #4a6b9d;
  /* Match button border with heading color */
  color: #4a6b9d;
}

.btn-outline-primary:hover {
  background-color: #4a6b9d;
  /* Change background on hover */
  color: #fff;
}

.text-muted {
  font-size: 14px;
  text-align: center;
}

.Restaurant {
  width: 85%;
}

.reserve {
  padding: 10px 0;
}




/* .header {
  text-align: center;
  padding: 40px 0;
} */
.images-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.image-item {
  max-width: 20%;
  margin: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: auto;
}

/* .footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
} */



































.textTheme {
  color: #ACBFA1;
}

.textWhite {
  color: #C7D5C0;
}

.textGold {
  color: #8C5E35;
}

.aboutSec {
  padding: 100px 10px 100px 10px;
  background-color: #749562;
  color: white;
}

.squirrel {
  width: 140px;
}

.headingMain {
  font-size: 140px;
  font-weight: 300;
  font-family: 'Cormorant Garamond';
}

.headingSub {
  font-size: 40px;
  font-weight: 300;
  font-family: "Jost", sans-serif;
}

.headingSubTwo {
  font-size: 25px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

.headingJoining {
  font-size: 50px;
  font-weight: 200;
  font-family: 'Mrs Saint Delafield';
}

.para {
  font-size: 18px;
  font-weight: 300;
  font-family: "Jost", sans-serif;
}

.contentBox {
  width: 100%;
  padding: 5px 150px 5px 40px;
}



@media (max-width: 992px) {
  .aboutSec {
    padding: 50px 10px 50px 10px;
  }

  .headingMain {
    font-size: 80px;
  }

  .headingSub {
    font-size: 30px;
  }

  .headingSubTwo {
    font-size: 22px;
  }

  .para {
    font-size: 16px;
  }

  .image-section {
    margin-top: 50px;
  }

  .contentBox {
    padding: 5px 40px 5px 20px;
  }

  .banner h1 {
    font-size: 40px !important;
  }
}

@media only screen and (max-width: 600px) {
  .headingMain {
    font-size: 60px;
  }

  .headingSub {
    font-size: 26px;
  }

  .contentBox {
    padding: 5px 5px 5px 5px;
  }

  .banner h1 {
    font-size: 35px !important;
  }

  .circle-text {
    bottom: 80px !important;
    display: none !important;
  }
}

.reserveSec {
  padding: 100px 10px 100px 10px;
  /* background-color: #749562; */
  color: #000000;
}

.form-group {
  border: none;
  border-bottom: 1px solid #8B8B8B;
}

.form-control:focus {
  border: none;
}

.owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav {
  display: none;
}

.owl-dots {
  display: none;
}

.video-background {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}




/* silder banner */


.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('../images/SlideBg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
}

.slider {
  display: flex;
  cursor: grab;
  user-select: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
}

.slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.slider div {
  font-size: 5vw;
  font-weight: 300;
  font-family: 'Cormorant Garamond';
  padding: 0 5vw;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  min-width: max-content;
}

/* hero banner */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/heroBanner.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner h1 {
  font-size: 60px;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.circle-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: rotateText 5s linear infinite;
}

.circle-text img {
  width: 80px;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.typingTest {
  /* font-size: 2.5rem; */
}

.text-container {
  /* display: inline-block; */
  /* white-space: nowrap; */
  overflow: hidden;
  border-right: 4px solid #ffffff;
  /* font-weight: bold; */
}

.cursor {
  display: inline-block;
  /* width: 10px; */
  /* height: 1.2em; */
  background: #fff;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.image-container {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.animateImg {
  width: 95%;
  /* Adjust as needed */
  z-index: 9;
  transition: transform 0.1s ease-out;
}


/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulseImage {
  /* width: 300px; */
  /* display: block; */
  /* margin: 20px auto; */
  /* transition: transform 0.3s ease-in-out; */
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

/* Apply pulse animation only on hover */
.pulseImage:hover {
  /* animation: pulse 1.5s infinite ease-in-out; */
  transform: scale(1.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}



/* .blogCard {
  transition: 0.6s;
}

.blogCard:hover {
  scale: 1.05;
} */



.exp-container {
  display: flex;
  /* width: 90%; */
  /* max-width: 1200px; */
  gap: 10px;
  background-color: #749562;
}

.exp-card {
  flex: 1;
  height: 70vh;
  /* padding: 20px; */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
  transition: flex 0.5s ease-in-out;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-color: #00000080;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exp-card:hover,
.exp-card.active {
  flex: 4;
}

.exp-card:nth-child(1) {
  background-image: url('../images/Italian.webp') !important;
}

.exp-card:nth-child(2) {
  background-image: url('../images/Chinese.webp') !important;
}

.exp-card:nth-child(3) {
  background-image: url('../images/Asian.webp') !important;
}

.exp-card:nth-child(4) {
  background-image: url('../images/French.webp') !important;
}

.exp-card:nth-child(5) {
  background-image: url('../images/Mexican.webp') !important;
}

/* .exp-card h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0;
} */



.menuTitle {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  rotate: 270deg;
  font-family: "Cormorant Garamond";
}

@media (max-width: 992px) {
  .exp-card {
    height: 50vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menuTitle {
    font-size: 20px !important;
    rotate: 270deg;
  }
}

@media only screen and (max-width: 600px) {
  .exp-card {
    height: 40vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menuTitle {
    font-size: 20px;
    rotate: 270deg;
  }
}