*{
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    overflow-x: hidden;
    color: #34344d;
}
h1,h2,h3,h4,h5{
  font-family: 'PlayFair Display', serif;
  font-weight: 900;
}
.green{
  color: #2ECC40;
}
/* Navbar Styles */
#collapsed{
  display: none;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    background-color: transparent;
    position: absolute;
    z-index: 1;
}
.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(29,29,46,1);
    animation: navSticky 1s linear;
}
@keyframes navSticky {
    0%{
        top:-80px;
    }
    50%{
        top:-40px;
    }
    100%{
        top:0px;
    }
}
nav ul{
    list-style: none;
}
.navitem{
    display: inline;
    margin-left: 20px;
    font-size: 0.9rem;
}
a{
    text-decoration: none;
}
.navitem a{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: #fff;
}
.navitem a:hover{
    transition: 0.5s ease;
    color: #2ECC40;
}
.logo{
    font-family: 'PlayFair Display', serif;
    font-weight: 900;
    font-size: 2rem;
    color: #2ECC40;
}
.header{
    position: relative;
}
.header-color{
    background-color: rgba(29,29,46,.85);
    height: 100vh;
    width: 100%;
    position: absolute;
    mix-blend-mode: darken;
}
.header-wrap{
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.header-wrap img{
    position: relative;
    width: 100%;
    background-size: cover;
    object-fit: cover;
    z-index: -1;
}
.heading-text-wrap{
    position: absolute;
    top: 35%;
    left: 25%;
    color: #fff;
    text-align: center;
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.heading{
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
}
.btn{
    padding: 15px;
    width: 150px;
    font-size: 0.9rem;
    border-radius: 2px;
    cursor: pointer;
    background-color: #2ECC40;
    border: 2px solid #2ECC40;
    color: #fff;
}
.btn:hover{
    border: 2px solid #2ECC40;
    background-color: transparent;
    color: #2ECC40;
    transition: 0.3s ease-in;
}
.btn-dark{
  padding: 15px;
  width: 150px;
  font-size: 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  background-color: #34344d;
  border: 2px solid #34344d;
  color: #fff;
}
.btn-dark:hover{
  border: 2px solid #34344d;
  background-color: transparent;
  color: #34344d;
  transition: 0.3s ease-in;
}
.main{
    width: 100%;
}
.container{
  width: max(1200px);
  margin: 0 auto;
  padding: 0 20px;
}

/* About and Feature Section */

.about-sec{
  background-color: #f9f9f9;
  width: 100%;
}
.about{
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sub-title{
  width: 60%;
  line-height: 1.5;
}
.features-wrap{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  gap: 25px;
}
.f-box{
  width: 350px;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  padding: 30px 30px;
  border: 0.2px solid #ededed;
}
.f-box:hover{
  transform: translateY(-20px);
  transition: 1s ease;
  box-shadow:
  0.9px 0.9px 4.7px rgba(0, 0, 0, 0.001),
  3.1px 3.1px 11.2px rgba(0, 0, 0, 0),
  7.6px 7.6px 21.2px rgba(0, 0, 0, 0.001),
  16.3px 16.3px 37.7px rgba(0, 0, 0, 0.003),
  35.7px 35.7px 70.6px rgba(0, 0, 0, 0.01),
  100px 100px 169px rgba(0, 0, 0, 0.04);
}
.f-box-icon{
  aspect-ratio: 4/4;
  width: 65px;
  margin-bottom: 5px;
}
.f-box-heading{
  font-size: 1.25rem;
  font-weight: 800;
}
.f-box-sub{
  margin-top: 10px;
  line-height: 1.5;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* History Section */

.history-sec{
  background-color: #34344d;
  height: min(550px);
  overflow: hidden;
  color: #fff;
}
.history-wrap{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 50px;
}
.history-text{
  padding: 100px 30px;
  width: max(500px);
}
.h-heading{
  color: #2ECC40;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.h-heading-title{
  font-size: 2rem;
  letter-spacing: 0.5px;
}
hr{
  width: 100px;
  margin: 1.4rem 0;
  border-color: #78788c;
}
.h-text-body{
  line-height: 1.8;
}

/* Menu Section */

.menu-sec{
  background-color: #f9f9f9;
}
.menu-wrap{
  padding: 80px 0;
  text-align: center;
}
.menu-wrap h1{
  margin-bottom: 2rem;
}
.menu-item-list{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 1.5rem;
}
.menu-item{
  width: 280px;
  padding: 20px 30px;
  border: 0.2px solid #ededed;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
.menu-img{
  width: 120px;
  aspect-ratio: 4/4;
}
.f-box-sub{
  font-weight: 200;
}
.price{
  margin-top: 0.8rem;
  font-weight: 800;
}
.price span{
  color: #fc5a58;
}
.menu-item:hover{
  box-shadow:
  0.9px 0.9px 4.7px rgba(0, 0, 0, 0.001),
  3.1px 3.1px 11.2px rgba(0, 0, 0, 0),
  7.6px 7.6px 21.2px rgba(0, 0, 0, 0.001),
  16.3px 16.3px 37.7px rgba(0, 0, 0, 0.003),
  35.7px 35.7px 70.6px rgba(0, 0, 0, 0.01),
  100px 100px 169px rgba(0, 0, 0, 0.04);
}
.menu-item:hover>.menu-img{
  transform: scale(1.2);
  transition: 1s ease;
}

/* Booking Section */

.booking-sec{
  position: relative;
  overflow: hidden;
  object-fit: cover;
}
.booking-bg-img{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -10;
  opacity: 0.2;
  filter: blur(4px);
}
.colorover{
  mix-blend-mode: hard-light;
  background-color: #34344d;
  height: inherit;
  width: inherit;
}
.booking-wrap{
  padding: 100px 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
}
.contact-sec h1{
  letter-spacing: 1px;
}
.contacts{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.icon{
  font-size: 1.5rem;
}
.c-info{
  font-size: 1.2rem;
}
.booking-form{
  padding: 2rem;
  width: min(400px);
  background-color: #2ECC40;
  color: #34344d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.main-form{
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}
input{
  width: 100%;
  padding: 15px;
}

/* Footer Section */

footer{
  width: 100%;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: rgba(29,29,46,1);
  padding: 20px 0;
}

/* Responsive Media Query */

@media(max-width:980px){
  .container{
    width: 100%;
  }
  .history-sec{
    height: auto;
  }
  .history-wrap{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
  }
  .history-text{
    padding: 40px 30px;
  }
  .img-sec{
    display: none;
  }
  #h-img{
    height: 100%;
  }
}
@media(max-width:680px){
  .history-text{
    padding: 40px 30px;
  }
  .img-sec{
    display: none;
  }
  .booking-wrap{
    gap: 3rem;
    padding-bottom: 0;
    padding-top: 80px;
  }
  .booking-bg-img{
    height: 100%;
  }
  .heading-text-wrap{
    text-align: start;
    align-items: flex-start;
    top: 20%;
  }
  .heading{
    font-size: 3.2rem;
  }
  /* Nav bar */
  nav{
    justify-content: space-between;
  }
  #collapsed{
    display: block;
    font-size: 1.5rem;
    color: #fff;
  }
  .navbar{
    position: absolute;
    width: 100%;
    height: 300px;
    top: -300px;
    left: 0;
    background-color: rgba(29,29,46,0.95);
    z-index: -5;
  }
  .navbar ul{
    height: 300px;
    padding: 60px 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
}
@media(max-width:300px){
  .heading{
    font-size: 2.5rem;
  }
  .logo{
    font-size: 1.5rem;
  }
}
/* custome reuseable animation */

.tracking-in-expand {
	-webkit-animation: tracking-in-expand 2.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 2.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  .fade-in-bottom {
	-webkit-animation: fade-in-bottom 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-bottom 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    }
  @-webkit-keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
