/* ==========================================================================
*
* Custom CSS Stylesheet. This is where you should add your own styles!
*
** ========================================================================== */

/* Simple style overrides or custom adds */

@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;700&family=Lora:wght@400;500;700&family=Montserrat:wght@500;600;700&display=swap");

.home-hero {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.home-hero .hero-content {
  max-width: 60%;
  text-align: center;
}

.home-hero h1 {
  font-size: 40px;
}

.home-hero h2 {
  font-size: 30px;
  font-style: italic;
}

.home-hero p {
  font-size: 20px;
}

.hero-video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* Applied only while we’re intercepting wheel for the slider */
body.splide-wheel-lock {
  overscroll-behavior: contain; /* stop scroll chaining to the page */
}
/* optional: makes the slider focusable for keyboard */
#v-slider {
  outline: none;
  height: 100vh;
  width: 100vw;
}

/* ==========================================================================
** Responsive styles custom rules
* These rules are ready to be used for either overrides
* or just your own custom rules.
========================================================================== */

/** Higher screens+ **/
@media only screen and (min-width: 1921px) {
}

/** Desktop+ **/
@media (min-width: 1200px) {
}

/** Laptop **/
@media (max-width: 1200px) {
}

/** Laptop+ **/
@media (min-width: 991px) {
}

/** Laptop **/
@media (min-width: 992px) and (max-width: 1199px) {
}

/** Large Tablets **/
@media (max-width: 992px) {
}

/** Tablets (landscape mode)  **/
@media (min-width: 768px) and (max-width: 991px) {
}

/** Tablets+  **/
@media (min-width: 768px) {
}

/** Tablets (portrait mode)  **/
@media (min-width: 481px) and (max-width: 768px) {
}

/** Smartphone landscape mode / Mini Tablet **/
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .static-content__inner .mobile-overlay {
    display: block;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }

  .static-content__inner .mobile-overlay {
    display: none;
  }
}

/** Smartphone landscape mode / Mini Tablet **/
@media (max-width: 600px) {
}

/** Smartphone portrait mode **/
@media (max-width: 480px) {
}

/** Normal phone portrait mode+ **/
@media (min-width: 320px) {
}

.wizard {
  max-width: 880px;
  margin: 30px auto;
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Step header */
.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wizard-step-title {
  font-weight: 600;
  font-size: 1rem;
}

.wizard-step-count {
  font-size: 0.9rem;
  color: #777;
}

/* Progress bar smaller */
.progress {
  height: 8px;
  background: #eee;
  border-radius: 4px;
}

.progress-bar {
  background: #7f9e31;
}

/* Step panels */
.step {
  display: none;
}

.step.active {
  display: block;
}

/* Nice radio/checkbox groups like Asilia */
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  flex: 0 0 calc(50% - 10px);
}

@media (min-width: 768px) {
  .option {
    flex: 0 0 calc(33.333% - 10px);
  }
}

/* Custom checkbox / radio look (label-styled) */
.input-hidden {
  position: absolute;
  left: -9999px;
}

.fake-input-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.12s ease-in-out;
  background: #fafafa;
}

.fake-input-label:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

/* checked state */
.input-hidden:checked + .fake-input-label {
  border-color: #7f9e31;
  background: #7f9e31;
  color: #fff;
}

.input-hidden:checked + .fake-input-label .box {
  background: #7f9e31;
  border-color: #7f9e31;
}

.fake-input-label .box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: 0;
  border-left: 0;
  opacity: 0;
  transform: rotate(40deg) scale(0.6);
}

/* Smaller caption text under options */
.option-sub {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
}

/* Buttons */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

/* Errors */
.invalid-feedback {
  display: block;
}

.itenerary-pricing input {
  display: none;
}

.itenerary-pricing label {
  border: solid 1px #ddd;
  background: #eee;
  display: block;
  text-align: center;
  border-radius: 20px;
  padding: 10px 0;
  cursor: pointer;
}

.itenerary-pricing input:checked + label {
  border: solid 1px #7f9e31;
  background: #7f9e31;
  color: #fff;
}

.btn-primary {
  background: #7f9e31 !important;
  border-color: #7f9e31 !important;
  color: #fff !important;
}

#open-desktop-hamburger {
  color: #fff;
}

#desktop-hamburger-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgb(0 0 0 / 60%);
  z-index: 99999;
}

#close-desktop-hamburger {
  float: right;
  margin-top: 40px;
  font-size: 30px;
  margin-right: 20px;
}

#desktop-hamburger-overlay {
  display: none;
}

#desktop-hamburger-overlay.active {
  display: block;
}

#desktop-hamburger-overlay .overlay-menu {
  background: #fff;
  width: 450px;
  height: 100%;
}

#desktop-hamburger-overlay .overlay-menu .logo img {
  height: 100px;
  margin-top: 50px;
}

#desktop-hamburger-overlay .overlay-menu ul {
  margin-top: 30px;
}

#desktop-hamburger-overlay .overlay-menu ul li a {
  display: block;
  padding: 10px 20px;
}

.enkaji-page-title::after {
  content: "";
  height: 3px;
  background: #7f9e31;
  display: block;
  width: 35%;
  margin-bottom: 20px;
}

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

.whatsapp-button .wa__button {
  width: auto !important;
}

.whatsapp-button .wa__button .wa__btn_txt {
  padding: 16px 0 15px 71px;
}

.contactForm p {
  border: solid 1px #ddd;
}

.contactForm p label {
  width: 100%;
  font-size: 12px;
  padding: 0 10px;
  margin-bottom: 0;
  font-weight: bolder;
}

.contactForm p label span .form-control {
  border: none;
  padding: 5px 0;
}

.page-subheader[class*="maskcontainer--"] {
  min-height: 100vh;
  text-align: center;
}

.subheader-titles.text-left {
  text-align: center !important;
}

.subheader-titles.text-left h2 {
  font-size: 70px;
  font-family: "Cinzel Decorative", "Cinzel", serif !important;
  letter-spacing: 2px !important;
}

.subheader-titles.text-left h4 {
  font-size: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 2px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.tbk__title,
.kl-title-block h3 {
  font-family: "Montserrat", serif !important;
  letter-spacing: 2px !important;
}

.card {
  border: none;
}

.enkaji-page-header {
  height: 100vh;
  background-size: cover;
}

.enkaji-page-header h1 {
  color: #fff;
  font-size: 100px;
  font-family: "Cinzel Decorative", "Cinzel", serif !important;
  letter-spacing: 2px !important;
}

@media (max-width: 768px) {
  .enkaji-page-header h1 {
    font-size: 35px;
  }
}

.enkaji-page-header h2 {
  color: #fff;
}

@media (max-width: 768px) {
  .enkaji-page-header h2 {
    font-size: 20px;
  }
}

/* Perfectly centered hero text */
.hero-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.hero-center-text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-center-text h1 {
    font-size: 2.5rem;
  }

  #desktop-hamburger-overlay .overlay-menu {
    width: 100%;
  }
}

.hero-center-text .lead {
  font-size: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.enkaji-header-content {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fab {
  font-family: "Font Awesome 5 Brands" !important;
}
