*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
p{
  font-size: 15px !important;
}
#myBtn:hover {
  background-color: #436ac6;
}
.nav-link {
  color: white !important;
  font-size: 15px;
  font-weight: 600;
}
.active{
  color: #c59d5f !important;
}
.nav-link:hover{
  color: #c59d5f !important;
}
.navbar{
  padding-left: 103px;
  padding-right: 103px;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-brand{
  width: 40%;
}
.carousel-inner {
  height: 100vh;
}
.slide{
    height: 100vh;
}
.slider1 {
  background-image: url("images/slide.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.slider1::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.26); /* Black with 80% opacity */
  z-index: 1; /* Ensure it's above the image */
}
.slider2 {
  background-image: url("images/slider-img2.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.slider2::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.185); /* Black with 80% opacity */
  z-index: 1; /* Ensure it's above the image */
}
.slider3 {
  background-image: url("images/slider-img3.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.slider3::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.356); /* Black with 80% opacity */
  z-index: 1; /* Ensure it's above the image */
}
.box{
  border: 1px solid #c59d5f;
  margin-top: -30px;
  margin-bottom: -30px;
}
.box ul{
  list-style: none;
}
.about-img1{
  background-image: url("images/about-img1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 80vh;
}
.title{
    font-family: "Neuton", cursive;
    color: #c59d5f;;
}
.svg {
  margin-top: -70px;
  animation: moveUpDown 3s linear infinite alternate;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0); /* Start position */
      }
      50% {
        transform: translateY(-20px); /* Mid position, move up */
      }
      100% {
        transform: translateY(0); /* End position, back to start */
      }
}
.svg1 {
  margin-top: -93px;
  animation: moveUpDown 3s linear infinite alternate;
}
.heading {
  font-size: 60px !important;
  position: relative;
  font-family: "Neuton", cursive;
  top: 270px;
  width: 80%;
  left: 30%;
  z-index: 2;
}
.heading2 {
  position: relative;
  font-family: "Neuton", cursive;
  z-index: 2;
  top: 290px;
  font-size: 60px;
}
.heading3 {
  position: relative;
  font-family: "Neuton", cursive;
  z-index: 2;
  top: 250px;
  font-size: 60px;

}
.about{
    background-color: #171819;
}
.menu-bg{
  background-image: url("images/menus-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
.menu-section{
  position: relative;
  bottom: 80px;
  border-radius: 50px;
}
.menu-section-bg{
  background-image: url("images/menu-section1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  display: block;
}
.menu-section-bg2{
  background-image: url("images/menu-section2.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 20px;
}
.contact{
  background: #171819;
}
.form-control{
  background-color: rgb(48 44 44 / 86%) !important;
  color: white !important;
  border: none;
}
.form-control:focus{
  box-shadow: none;
}
.contact-bg {
  position: relative; /* Ensure relative positioning for the pseudo-element */
  background-image: url("images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Black with 80% opacity */
  z-index: 1; /* Ensure it's above the image */
}

.contact-form {
  position: relative; /* Ensure form content is above the overlay */
  z-index: 2;
}
.contact-texts{
  position: relative; /* Ensure form content is above the overlay */
  z-index: 2;
}

.contact-form{
  background-image: url("images/contact-form.png");
  background-size: cover;
  border-radius: 10px;
}
.price{
  margin-right: -62px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 2rem;
}
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.border-right{
  border-right: 1px solid #c59d5f;
}
button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.me-auto{
  position: relative;
  right: 60px;
}
/* .order{
  width: 165%;
} */
 #button {
  display: inline-block;
  background-color: #c59d5f !important;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.menu-text{
  font-size: 18px !important;
}
.separator{
  width: 10%;
}
.icon{
  display: flex;
    justify-content: left;
    gap: 10px;
    margin-left: 100px;
}



@media (max-width: 768px) {
  .container-fluid{
    display: block;
  } 
  .svg {
    display: none !important;
  }
  .navbar.fixed-top.scrolled {
    background-color: black !important; /* Change the color as per your preference */
    transition: background-color 0.3s ease;
  }
  .navbar{
    padding-left: 0px;
    padding-right: 0px;
    background: black !important;
  }
  .svg1 {
    display: none !important;
  }
  .heading {
    font-size: 31px !important;
    position: relative;
    top: 120px;
    width: 80%;
    left: 10%;
  }
  .heading2 {
    position: relative;
    top: 121px;
    font-size: 31px;
  }
  .heading3 {
    position: relative;
    top: 121px;
    font-size: 31px;
  }
  .slide{
    height: 54vh;
  }
  .carousel-inner{
    height: 90vh;
    margin-top: 50px;
  }
  .menu-bg{
    background-image: url("images/menus-bg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: local;
    height: 54vh;
    position: relative;
    top: 57px;
  }
  .image-hide{
    display: none;
  }
  .menu-section {
    position: relative;
    bottom: 40px;
    border-radius: 50px;
}
  .menu-section-bg{
    height: 35vh;
  }
  .menu-section-bg2{
    height: 33vh;
  }
  .price{
    margin-right: 0px;
  }
  .border-right{
    border-right: none;
  }
  .logo{
    width: 126%;
  }
  .me-auto {
    position: relative;
    right: 0px;
}
#button{
  width: 40px;
  height: 40px;
}
#button::after{
  font-size: 1rem;
  line-height: 43px;
}
.separator{
  width: 30%;
}
}

@media (min-width: 390px) and (max-width: 768px) {
  .heading {
    font-size:42px !important;
    position: relative;
    top: 177px;
    width: 80%;
    left: 10%;
  }
  .heading2 {
    position: relative ;
    top: 121px;
    font-size:42px !important;
  }
  .heading3 {
    position: relative !important;
    top: 121px;
    font-size:42px;
  }
  .separator{
    width: 20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1020px) {
  .slide {
    height: 71vh;
  }
  .logo{
    width: 66%;
  }
}









