:root {
  --first_color: #e7eaf6;
  --second_color: #a2a8d3;
  --third_color: #38598b;
  --fourth_color: #113f67;
}
@font-face {
  font-family: 'OpenSansVariable';
  src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
  font-weight: 300 800;
  font-stretch: 75% 100%;
}
@font-face {
  font-family: 'OswaldVariable';
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 700;
}
@font-face {
  font-family: 'RalewayVariable';
  src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
}
.Raleway-font {
  font-family: 'RalewayVariable';
}
.Oswald-font {
  font-family: 'OswaldVariable';
}
.OpenSans-font {
  font-family: 'OpenSansVariable';
}
.homepage-body {
  width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0;
  background-color: var(--first_color);
  color: var(--fourth_color);
  padding-top: 150px;
  padding-left: 10vw;
  padding-right: 10vw;
  background-image: url(../img/menu-bg.png);
  background-size: 100%;
}
.logo {
  position: fixed;
  display: inline-block;
  margin-left: 15.833%;
  width: 120px;
}
.dropdown:hover {
  cursor: pointer;
}
.navbar {
  font-weight: 500;
  box-shadow: 0px 0px 5px var(--third_color);
  height: 105px;
  transition: height 0.7s;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 0px solid var(--fourth_color);
  backdrop-filter: blur(0px);
}
.navbar-shrink {
  height: 95px;
  padding-top: 0px;
  padding-bottom: 0px;
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--fourth_color);
}
.nav-item {
  position: relative;
}
.nav-link {
  position: relative;
  width: fit-content;
  letter-spacing: 0;
  transition: all 0.8s;
  font-weight: bolder;
  color: var(--fourth_color);
  text-shadow: 0px 0px 3px var(--first_color), 0px 0px 2px var(--first_color),
    0px 0px 4px var(--first_color);
}
.nav-link:hover,
.nav-link:active,
.active-link {
  letter-spacing: 4px;
  color: var(--fourth_color);
  text-shadow: 0px 0px 3px var(--first_color), 0px 0px 2px var(--first_color),
    0px 0px 4px var(--first_color);
}

.nav-link:after,
.nav-link:before,
.active-link {
  border: 1px solid transparent;
  content: '';
  display: block;
  bottom: 0px;
  margin: 0 auto;
  width: 0;
  transition: 0.8s;
}

.nav-link:hover:after,
.nav-link:hover:before {
  border-color: var(--third_color);
  transition: width 0.5s;
  width: 70%;
}

.dropdown-item {
  font-weight: bolder;
  color: var(--fourth_color);
}
.toggle-nav-mob {
  display: none;
}
.shrink-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.nav-mobile {
  transition: 0s;
}
@media screen and (max-width: 767px) {
  .homepage-body {
    padding-top: 100px;
  }
  .main-section-header {
    padding: 0px !important;
  }
  .nav-item {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: x-large;
  }
  .navbar {
    padding: 0;
    height: 80px;
    box-shadow: 0px 0px 0px var(--third_color);
  }
  .logo {
    display: none;
  }
  .dropdown {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .dropdown > a {
    margin: auto;
  }
  .dropdown-menu {
    background-color: transparent !important;
    border: 0px solid black !important;
    width: 100%;
    text-align: center;
    font-size: large;
  }
  .dropdown-item {
    margin: 0.5vh auto;
  }
  .dropdown-item:hover {
    background-color: transparent;
  }
  .nav-mobile {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: -100vh;
    transition: top 0s;
    padding: 5vh 0px;
    align-items: normal !important;
    background-image: url(../../assets/img/menu-bg.png);
    background-size: 100% 100%;
    opacity: 1;
    background-color: var(--second_color);
  }
  .nav-item {
    margin: 3vh auto;
  }
  .bi-list {
    font-weight: 900;
    font-size: xx-large;
    color: var(--fourth_color);
    position: relative;
    top: -6px;
    left: 2.5px;
  }
  .bi-x-lg {
    font-weight: 900;
    font-size: xx-large;
    color: var(--fourth_color);
    position: relative;
    top: -6px;
    left: 2.5px;
  }
  .toggle-nav-mob:hover .bi-list,
  .toggle-nav-mob:hover .bi-x-lg {
    color: var(--first_color);
  }

  .toggle-nav-mob {
    border: 2px solid var(--fourth_color);
    border-radius: 7px;
    height: 40px;
    width: 40px;
    display: block;
    position: absolute;
    right: 20px;
    z-index: 2500;
    cursor: pointer;
  }
  .toggle-nav-mob:hover {
    border: 1px solid var(--fourth_color);
    background-color: var(--third_color);
  }
  .animateDown {
    animation: down 1s forwards;
  }
  .animateUp {
    animation: up 1s forwards;
  }
  @keyframes down {
    0% {
      top: -100vh;
    }
    100% {
      top: 0vh;
    }
  }
  @keyframes up {
    0% {
      top: 0vh;
    }
    100% {
      top: -100vh;
    }
  }
}

#scene {
  left: 0px;
  top: 0px;
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -100;
}
.parallax-img-1 > img {
  position: absolute;
  right: 20px;
  top: 110px;
  width: 30vw;
  max-width: 300px;
  filter: blur(1.5px);
}
.parallax-img-2 {
  position: relative;
  bottom: -1vh;
}
.parallax-img-2 > img {
  position: absolute;
  left: -1vw;
  bottom: 0;
  width: 35vw;
  max-width: 500px;
  filter: blur(1.5px);
}

.banner-img-wp {
  z-index: 5;
  padding: 45px 0px;
  padding-left: 3rem;
}

.banner-img {
  width: 100%;
  background-size: cover;
  background-position: center;
  animation: biani 4.5s linear infinite alternate;
  box-shadow: 0px 0px 15px var(--fourth_color);
}

@keyframes biani {
  0% {
    border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%;
  }
  25% {
    border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%;
  }
  50% {
    border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%;
  }
  100% {
    border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%;
  }
}
@media screen and (max-width: 991px) {
  .banner-img-wp {
    padding-left: 0rem;
  }
}
.main-section-header {
  padding: 6rem 5rem 1rem;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0px 0px 2px var(--third_color);
}
.main-section-desc {
  font-size: 1.5rem;
  text-shadow: 0px 0px 3px var(--first_color);
  font-weight: 500;
  text-align: center;
}
.dropdown-menu {
  background-color: var(--first_color);
  border: 1px solid var(--fourth_color);
}
.dropdown-item:hover {
  background-color: var(--fourth_color);
  color: var(--first_color);
}
#theme-toggle {
  position: absolute;
  width: 25px;
  height: 20px;
  border: 5px solid var(--third_color);
  border-radius: 10px;
  right: 1vw;
}
@media screen and (max-width: 767px) {
  #theme-toggle {
    position: absolute;
    left: 10vw;
    top: 10vw;
  }
}
.check-menu {
  padding: 5px 15px;
  background-color: var(--third_color);
  border-radius: 20px;
  border: 1px solid var(--fourth_color);
  box-shadow: 0px 0px 3px var(--second_color);
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.5s;
}
.check-menu:hover {
  background-color: var(--second_color);
  box-shadow: 0px 0px 10px var(--fourth_color);
}
.check-menu a {
  text-decoration: none;
  color: var(--first_color);
}
.check-menu:hover a {
  color: var(--fourth_color);
}
.home-row {
  position: relative;
  min-height: 100vh;
}
.home-row::after {
  content: '';
  display: block;
  position: absolute;
  box-shadow: 0px 0px 5px var(--first_color);
  border-radius: 50%;
  width: 50vw;
  height: 5px;
  background-color: var(--fourth_color);
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
/* Testimonials Styling */
.testimonial-container {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
.testimonial-card {
  position: relative;
  box-shadow: var(--second_color) 0px 5px 15px;
  width: 90%;
  height: 70%;
  background-image: linear-gradient(var(--first_color), var(--fourth_color) 200%);
  border-radius: 35px;
  transition: 0.4s;
}
.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px var(--fourth_color);
}
.testimonial-up {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 35%;
}
.testimonial-up div:first-child {
  width: 50%;
}
.testimonial-up div img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  left: 5%;
  top: -40%;
  border: 1px solid var(--fourth_color);
}
.testimonial-up div:nth-child(2) {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  width: 40%;
  justify-content: center;
}
.testimonial-paragraph {
  height: 65%;
  padding: 1rem 2rem;
}
.testimonial-paragraph h3 {
  margin: 0px 0px 15px;
  font-family: 'OswaldVariable';
  letter-spacing: 1px;
}
.testimonial-paragraph p {
  font-size: large;
  font-weight: 500;
  text-shadow: 0px 0px 2px var(--first_color);
}
@media screen and (max-width: 600px) {
  .testimonial-card {
    width: 100%;
    height: 80%;
  }
  .testimonial-paragraph {
    height: 65%;
    padding: 0.1rem 1rem;
  }
  .testimonial-paragraph h3 {
    margin: 0px 0px 10px;
  }
  .testimonial-container {
    min-height: 350px;
    height: 400px;
  }
  .homepage-body {
    padding-top: 50px;
  }
  .main-section-desc {
    font-size: 1.4rem;
  }
  .main-section-header {
    margin-bottom: 2rem;
  }
}

/* menu */

.dish-box {
  border-radius: 30px;
  background: var(--first_color);
  box-shadow: 0px 0px 15px var(--fourth_color);
  display: flow-root;
  padding: 0 30px 40px;
  padding-top: 0;
  margin: 130px 0 30px;
  transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

.type-title {
  margin-top: 60px;
  color: var(--fourth_color);
  font-family: 'RalewayVariable';
}

.dish-box:hover {
  transform: scale(1.03);
}

.dish-img {
  margin-top: -130px;
  margin-bottom: 30px;
  width: 100%;
  height: 300px;
}

.dish-rating {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.dish-title {
  padding: 0 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: var(--fourth_color);
  transition: 0.3s;
  min-height: 76px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 900;
  text-align: center;
}

.dish-info {
  border-bottom: 2px solid rgb(204 204 204 / 30%);
  padding-bottom: 20px;
}

.dish-info ul {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.dish-info ul li {
  display: inline-block;
  flex: 1;
}
.dish-info ul li:last-child {
  text-align: right;
  border-left: 2px solid rgb(204 204 204 / 30%);
}

.dish-info ul li p {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 2px;
  font-weight: 300;
}

.dish-info {
  border-bottom: 2px solid rgb(204 204 204 / 30%);
  margin: 30px 0 30px;
  padding-bottom: 30px;
}
.dist-bottom-row {
  padding: 0 30px;
  color: var(--fourth_color);
}

.dist-bottom-row {
  padding-top: 20px;
  color: var(--fourth_color);
  text-align: center;
}

.btn {
  width: auto;
  height: 40px;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  transition: 0.3s;
  background: var(--third_color);
  box-shadow: inset 4px 4px 8px var(--third_color), inset -4px -4px 8px var(--first_color);
}

.btn:hover {
  background: linear-gradient(145deg, #e3a92b, #ffc933);
}

/* about style    */

.script-font {
  font-family: 'Dancing Script', cursive;
}

.about-body {
  margin: 0;
  background-color: var(--first_color);
  color: var(--fourth_color);
  padding-top: 150px;
  padding-left: 10vw;
  padding-right: 10vw;
  background-image: url(../img/menu-bg.png);
  overflow-x: hidden !important;
}

.about-section {
  background-image: url('../../assets/img/about-restaurant1.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
}

.about-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-custom {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  content: '>';
}

.section-title {
  text-shadow: 0px 0px 2px var(--third_color);
}

.cocktail-section {
  height: 400px;
  overflow: hidden;
  text-shadow: 0px 0px 2px var(--third_color);
}

.cocktail-section img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/* our team section */

.our-team-section {
  padding: 70px 0;
}

.team-member {
  text-align: center;
  box-shadow: var(--second_color) 0px 5px 15px;
  padding: 20px;
  background-image: linear-gradient(var(--first_color), var(--fourth_color) 200%);
  border-radius: 35px;
  width: 90%;
  height: 70%;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid var(--first_color);
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: var(--third_color);
}

.swiper {
  padding: 20px 0;
}
.swiper-slide {
  display: flex !important;
  justify-content: center !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--third_color);
}

.swiper-pagination-bullet-active {
  background-color: var(--fourth_color);
}

.social-icon {
  margin: 15px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-icon ul li {
  display: inline-block;
  margin: 0 6px;
}

.social-icon ul li:last-child {
  margin-right: 0;
}

.social-icon ul li:first-child {
  margin-left: 0;
}

.social-icon ul li a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--first_color);
  color: var(--fourth_color);
  font-size: 19px;
}

.social-icon ul li a:hover {
  background: var(--third_color);
}

.social-icon ul li a:hover i {
  color: #ffffff !important;
}



/* Footer Styling */
footer {
  width: 100vw;
  left: -10vw;
  position: relative;
  background-color: #113f67;
  color: #e7eaf6;
  box-shadow: 0px 0px 10px var(--fourth_color);
}
footer h3 {
  font-weight: 600;
}
footer > div > .row:nth-child(2) > div:nth-child(1) > h3 {
  text-align: center;
}
.social-links {
  width: 450px;
  margin: 0px auto;
  height: fit-content;
  display: flex;
  position: relative;
  justify-content: space-evenly;
}
.social-links:after,
.social-links:before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #e7eaf6;
  width: 25vw;
  top: 50%;
}
.social-links:after {
  left: 100%;
}
.social-links:before {
  right: 100%;
}
.social-links i {
  font-size: 1.7rem;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .social-links:after,
  .social-links:before {
    width: 0px;
  }
}
.footer-form {
  margin-top: 2vw;
}
.footer-form input {
  background-color: #e7eaf6;
  border: 1px solid #113f67;
  border-radius: 15px;
  color: #113f67;
  font-weight: 500;
  box-shadow: 0px 0px 5px #a2a8d3;
}
.footer-form input:focus {
  background-color: #a2a8d3;
  box-shadow: 0px 0px 10px #a2a8d3;
  border: 2px solid #113f67;
}
.footer-form input:focus::placeholder {
  color: #38598b;
}
.footer-form input::placeholder {
  color: #113f67;
}
.footer_first,
.footer_last,
.footer_email {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_btn {
  border: 2px solid #e7eaf6;
  border-radius: 20px;
  color: #113f67;
  z-index: 1;
  background: #a2a8d3;
  position: relative;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 0.4rem 1rem;
  transition: all 250ms;
  overflow: hidden;
 }
 .news_btn:hover {
  color: #e7eaf6;
  box-shadow: 0px 0px 4px #e7eaf6 ;
 }
 .news_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 20px;
  background-color: #113f67;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
  transition: all 250ms
 }
 
 .news_btn:hover::before {
  width: 100%;
 }
 .footer-sec ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.3rem;
 }
 .footer-sec ul li {
  margin-top: 5px;
  margin-bottom: 5px;
 }
 .footer-sec ul li a {
  text-decoration: none;
  color: #e7eaf6 ;
 }
 
/* all products */

/* Additional Styles for Better Organization */
.product-details .row {
  padding: 20px;
  border-bottom: 1px solid var(--second_color); /* Updated border color */
}

.product-details .row:last-child {
  border-bottom: none;
}

.product-details .row .col-md-6 {
  padding: 10px;
}

.product-details .row .col-md-6 img {
  max-height: 200px;
}

.product-details .row .col-md-6 h3 {
  margin-top: 0;
}

.product-details .row .col-md-6 p {
  margin-bottom: 5px;
}

.product-details .row .col-md-6 .btn-primary {
  margin-top: 10px;
  color: var(--first_color); /* Ensure button text is readable */
}






/* Opening Animation */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/menu-bg.png);
  background-color: var(--first_color);
   color: var(--fourth_color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
 
}
#logo{
  
  width: 90%;  
  max-width: 600px;
  height: auto;


}
#logo path {
  fill: none;
   stroke: var(--fourth_color); 
 stroke-width: 1;  
   stroke-dasharray: 2000; 
  stroke-dashoffset: 1000;
 
 

}
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}