@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Quicksand&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
}

:root {
  --prime: #f42b03;
  --sec: #ff6600;
  --bgk: #fffdf6;
}

a:hover {
  color: var(--sec);
}

.text-prime {
  color: #f42b03 !important;
}

.text-sec {
  color: var(--sec);
}

.text-sub {
  color: #f42b03 !important;
}

.bg-bgk {
  background: var(--bgk);
}

.bg-prime {
  background: #fda403;
}

.bg-sec {
  background: var(--sec);
}

a {
  text-decoration: none;
}

/* navbar */
.navbar {
  background-color: black !important;
}

.navbar .nav-link {
  color: white;
  font-weight: 400;
  font-size: 16px;
}

.navbar .nav-link:hover {
  color: #fda403;
}

.navbar .nav-item {
  padding-top: 15px !important;
}

.navbar .call {
  padding-left: 30px;
}
.navbar .call a {
  font-size: 14px;
  font-weight: 500;
}
/* end navbar */

/* dropdown */
.dropdown:hover .dropdown-list {
  display: block;
}

.dropdown-list {
  display: none;
  position: absolute;
  z-index: 9;
  background: black;
  padding: 10px;
  border-radius: 5px;
}

.dropdown-item {
  margin-bottom: 15px;
}

.dropdown-link {
  color: #fda403;
  font-weight: 400;
}

.dropdown-link:hover {
  color: white;
}

.dropdown-item:hover {
  background-color: black;
}
/* end dropdown */

/* banner */

#slider {
  margin-top: 100px;
  width: 100%;
  height: 50vw;
  overflow: hidden;
}

#slider .splide__slide img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
  object-fit: cover;
}

.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header {
  display: none;
  font-weight: bolder;
  font-size: 42px !important;
  color: var(--bgk) !important;
  text-shadow: black;
  background-color: black;
  width: max-content;
  text-align: center;
}

#bottom-header {
  font-weight: bold;
  font-size: 32px;
  color: var(--prime);
  text-shadow: black;
  /* background-color: white; */
}

#subheader {
  font-weight: bold;
  font-size: 18px;
  color: var(--prime) !important;
  text-shadow: black;
  /* background-color: white; */
}

/* whatsapp connect */
.whatsapp-connect {
  padding: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.whatsapp-connect img {
  width: 70px;
}
/* end whatsapp connect */

@media only screen and (max-width: 768px) {
  .navbar {
    background: black !important;
  }

  .dropdown-list {
    display: none;
    position: relative;
  }

  .banner-text {
    padding-top: 200px;
  }

  #header {
    font-size: 32px !important;
  }

  #bottom-header {
    font-size: 24px;
  }

  #subheader {
    font-size: 16px;
  }

  .package-card {
    height: max-content !important;
  }

  .whatsapp-connect img {
    width: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner-text {
    padding-top: 200px;
  }

  #header {
    font-size: 37px !important;
  }

  #bottom-header {
    font-size: 28px;
  }

  #subheader {
    font-size: 18px;
  }

  .package-card {
    height: max-content !important;
  }
}

@media only screen and (min-width: 1800px) {
  /* #slider {
    height: 900px;
  } */
}

/* end banner */

/* section */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--sec);
  font-family: "Great Vibes" !important;
}

.subheading {
  font-size: 20px;
  font-weight: 500;
  color: #f42b03;
}

.section-img {
  margin-top: 25px;
  border-radius: 20px;
}

/* end section */

/* about */
.about-card {
  border-radius: 20px;
}
/* endabout */

/* package */
.package-card {
  border-radius: 20px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  text-align: center;
  background: var(--bgk);
  height: 500px;
}

.package-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.package-card .card-title {
  font-weight: bold;
  color: #f42b03;
}

.package-card .more {
  color: white;
  background-color: var(--sec);
  padding: 10px;
  border-radius: 20px;
}

.package-card .more:hover {
  color: #fda403;
  background-color: white;
  border: 2px solid #fda403;
}
/* end package */

/* contact */
#contact .contact-btn {
  background-color: var(--bgk);
  width: 80%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border-radius: 20px;
  font-weight: bold;
}

#contact .contact-btn:hover {
  background-color: #fda403;
  color: white;
  border: 2px solid white;
}
/* enc contact */

/* gallery */
.gallery-card {
  border-radius: 20px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  text-align: center;
}

.gallery-card .card-image {
  background: var(--bgk);
  border-radius: 20px;
  text-align: center;
  width: 100%;
  height: 230px;
  object-fit: cover;
  padding: 5px;
}
/* end gallery */

/* footer */
#footer {
  background: black;
}
/* end footer */
