:root {
  --second-color: #ffb03b;
  --main-color: #ffc56e;
  --hover-color: #ffa012;
  --background-color: #dacdbc;
  --third-color: #948c81;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}

.main-btn {
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 13px;
  margin: 0 10px;
  border: none;
  background-color: var(--second-color);
  transition: 0.3s;
  animation-delay: 0.8s;
}
.main-btn:hover,
.main-btn:focus {
  color: white;
  background-color: var(--hover-color);
}
.main-title h2 {
  padding: 20px 0;
  font-size: 32px;
  font-weight: bold;
}
.main-title h2 span {
  color: var(--hover-color);
}
/* Start Navbar */
.navbar {
  background: transparent;
}
.navbar .container .navbar-brand h1 {
  color: white;
}
.navbar .navbar-nav .nav-link {
  color: white;
  transition: 0.3s;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: var(--main-color) !important;
}
.navbar .navbar-toggler {
  background-color: white;
  font-size: 25px;
  border: none;
  margin-right: 10px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-toggler-icon {
  color: white;
}
/* .navbar .container .navbar-toggler[aria-expanded = "true"] > .one {
    margin: 0;
} */
@media (max-width: 991px) {
  .navbar .container .one {
    margin: 0px;
  }
  .one {
    padding: 7px 18px;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-collapse,
  .navbar-brand h1 {
    margin-left: 10px;
  }
}
.headroom--unpinned,
.headroom--pinned {
  position: fixed !important;
  background-color: #4b4545;
  margin-top: 10px;
  padding: 0;
  height: 100px;
}
/* End Navbar */
/* Start Landing */
.landing {
  background-color: var(--background-color);
}
.landing .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.landing .carousel-inner .carousel-item {
  height: 100vh;
}
.landing .carousel-inner .carousel-item .carousel-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.landing .carousel-container .buttons {
  width: 700px;
}
.landing .carousel-item .carousel-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}
.landing .carousel-item .carousel-content h2 span {
  color: var(--second-color);
}
.landing .carousel-item .carousel-content p {
  padding-bottom: 30px;
  width: 50%;
  margin: 0 auto;
  line-height: 1.7;
}
.landing .carousel-item .carousel-content .btn-menu,
.landing .carousel-item .carousel-content .btn-book {
  border: 2px solid var(--hover-color);
  text-transform: uppercase;
  padding: 10px 35px;
  background-color: transparent;
  font-weight: 700;
  transition: 0.3s;
}
.landing .carousel-item .carousel-content .btn-menu:hover,
.landing .carousel-item .carousel-content .btn-book:hover {
  background-color: var(--hover-color);
}
.landing .carousel-item .carousel-content .p-slide-2 {
  width: 80%;
}
@media (max-width: 991px) {
  .landing .carousel-item .carousel-content h2 {
    font-size: 25px;
  }
}
@media (min-width: 329px) {
  .landing .carousel-item .carousel-content .p-slide-2 {
    width: 40%;
  }
}
.nav-coll {
  padding: 15px;
  background-color: #fff;
  border-radius: 6px;
}
/* End Landing */
/* Start About */
.about {
  background: linear-gradient(to bottom, #dacdbc, #fff);
}
.about .container .video-box video {
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}
.about .video-box video {
  object-fit: cover;
}
.about .container .hist {
  padding: 0 80px;
}
@media (max-width: 991px) {
  .about .container h3 {
    text-align: center;
  }
}
.about .container .hist ul li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  margin-bottom: 15px;
}
.about .container .hist ul li i {
  color: var(--hover-color);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media (max-width: 991px) {
  .about .container .hist {
    padding: 0;
    margin-left: -35px;
  }
}
@media (max-width: 767px) {
  .about .container .hist {
    padding: 0 20px;
    margin-left: 0;
  }
}
/* End About */
/* Start Menu */
.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu ul .active {
  color: white;
  background-color: var(--hover-color);
}
.menu ul li {
  margin: 0 3px;
}
.menu ul li button {
  padding: 8px 12px 10px 12px;
  color: var(--third-color);
  border-radius: 50px;
  line-height: 1;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  background-color: white;
}
.menu ul li button:hover,
.menu ul li button:focus {
  color: white;
  background-color: var(--hover-color);
}
.menu .boxes .box {
  display: flex;
  align-items: center;
}
.menu .boxes .box .text-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.menu .boxes .box .text-content a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--hover-color);
  position: relative;
  z-index: 3;
}
.menu .boxes .box .text-content a::after {
  content: "......................................................................................................................................................";
  position: absolute;
  top: -2px;
  margin-left: 10px;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  z-index: 1;
}
.menu .boxes .box .text-content span {
  font-size: 17px;
  font-weight: 600;
  padding: 0 10px;
  z-index: 3;
  background-color: white;
  overflow: hidden;
}
.menu .boxes .box img {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(196, 35, 35, 0.1);
  border-radius: 50%;
  margin-right: 15px;
}
.menu .boxes .box .menu-item-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.menu .boxes .box p {
  font-size: 14px;
}
/* End Menu */
/* Start Events */
.events {
  background: url(img/events/events-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}
.events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(12, 11, 10, 0.8);
  z-index: 1;
}
.swiper-container {
  box-shadow: #7c7975 0px 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  width: 90%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.events .main-title h2 {
  color: white;
}
.events .row {
  color: white;
  width: 95%;
  margin: 0 auto;
}
.events .col-lg-6 img {
  width: 480px !important;
  height: 280px;
  border-radius: 5%;
  box-shadow: #ffb03b 0px 3px 8px;
  margin: auto 0;
}
@media (max-width: 991px) {
  .events .col-lg-6 img {
    width: 70% !important;
    margin: 10px auto;
  }
}
.events .col-lg-6 h3 {
  color: var(--hover-color);
  font-weight: bold;
}
.events .col-lg-6 .sal {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid var(--hover-color);
  width: fit-content;
}
.events ul li {
  position: relative;
  padding-left: 30px;
}
.events ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hover-color);
  font-size: 22px;
}
.events .carousel-indicators button,
.team-work .carousel-indicators button {
  height: 12px;
  width: 12px;
  border-radius: 50%;
}
.events .carousel-indicators,
.team-work .carousel-indicators {
  margin-bottom: 0.5rem;
}
.events .carousel-indicators .active,
.team-work .carousel-indicators .active {
  background-color: var(--hover-color);
}
.events .carousel-item {
  height: 460px;
}
.form-control:focus {
  box-shadow: 0 0 0 0.18rem #ffb03b5e;
  border-color: var(--second-color);
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  .events .carousel-item {
    height: 700px;
  }
  .events .col-lg-6 h3 {
    padding-top: 15px;
  }
}
@media (max-width: 604px) {
  .events .carousel-item {
    height: 830px;
  }
  .events .col-lg-6 img {
    width: 330px !important;
  }
  .main-title h2 {
    font-size: 22px;
  }
}
/* End Events */
/* Start Book Table */
/* .max-width-container {
  max-width: 1440px;
  margin: 0 auto;
} */
.form-table form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
form.row {
  margin-left: 0;
}
/* End Book Table */
/* Start Photos */
.photos .box .gallery-item {
  width: 300px;
  height: 200px;
  border-radius: 5rem;
  border: 8px groove rgb(238, 177, 8);
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.photos .box .gallery-item img {
  transition: 0.4s;
}
.photos .box .gallery-item:hover img {
  transform: scale(1.2);
}
/* End Photos */
/* Start Team Work */
.team-work {
  padding: 80px 0;
  background: url(img/testimonials/testimonials-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.team-work::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}
.team-work .team-s {
  /* overflow: hidden; */
}
.team-work .carousel-indicators {
  bottom: -30px;
}
.team-work .carousel-item .info-box {
  color: white;
}
.team-work .carousel-item .info-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
}
.team-work .carousel-item .info-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #fff;
}
.team-work .carousel-item .info-box h4 {
  font-family: "Comic Neue", sans-serif;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 15px;
}
.team-work .carousel-item .info-box .stars {
  color: var(--hover-color);
  margin-bottom: 10px;
}
.team-work .carousel-item .info-box .stars i {
  margin-right: -4px;
}
.team-work .carousel-item .info-box .stars i::before {
  content: "\f586";
}
.team-work .carousel-item .info-box p {
  color: #eee;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}
.team-work .carousel-item .info-box p i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.team-work .carousel-item .info-box p .left {
  display: inline-block;
  position: relative;
  left: -5px;
}
.team-work .carousel-item .info-box p .right {
  display: inline-block;
  position: relative;
  top: 10px;
}

.team-work .carousel-item .info-box p i::before {
  content: "\ee82";
}
.team-work .carousel-indicators {
}
.team-work .carousel-inner {
  height: 320px;
}

/* End Team Work */
/* Start Info Resturant */
.info-resturant {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
@media (max-width: 767px) {
  .info-resturant .col-md-6:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
}
.info-resturant .box {
  display: flex;
}
.info-resturant .box i {
  font-size: 24px;
  padding: 13px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff6e8;
  color: var(--hover-color);
  transition: 0.4s;
}
.info-resturant .box:hover i {
  color: white;
  background-color: var(--hover-color);
}
.info-resturant .box .text-content {
  padding-left: 15px;
}
.info-resturant .box .text-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.info-resturant .box .text-content p {
  font-size: 14px;
  color: #7a7368;
}
/* End Info Resturant */
/* Start Footer */
.footer {
  background-color: #35322d;
}
.footer .box-footer h2 {
  color: var(--second-color);
  font-size: 36px;
  padding-bottom: 10px;
}
.footer .box-footer .fst-italic {
  font-size: 13px;
  color: #fff;
}
.footer .box-footer .social a i {
  font-size: 22px;
  color: #fff;
  background: #46423b;
  padding: 6px;
  border-radius: 50%;
  margin: 0 4px;
  transition: 0.3s;
}
.footer .box-footer .social a:hover i {
  background-color: var(--hover-color);
}
.footer .box-footer .copy {
  font-size: 14px;
  margin: 0 5px 0 0;
}
.footer .box-footer .by {
  font-size: 13px;
  margin-top: 5px;
}
.footer .box-footer .by a {
  text-decoration: none;
  color: var(--second-color);
}
/* End Footer */
