/* ============================================
   Hero Banner Tour Layout
   ============================================
   Full-height hero section for booking tour pages
   with integrated header and form overlay
   ============================================ */
.hero-banner-tour {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background-color: #1a1a1a;
  z-index: 1;
}
@media (min-width: 1025px) {
  .hero-banner-tour {
    min-height: 100vh;
    overflow: hidden;
  }
}

/* ============================================
   Background Image & Overlays
   ============================================ */
.hero-banner-tour__background {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .hero-banner-tour__background {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}
.hero-banner-tour__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
@media (min-width: 1025px) {
  .hero-banner-tour__background img {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}

/* ============================================
   Content Wrapper with Ellipse
   ============================================ */
.hero-banner-tour__content-wrapper {
  position: relative;
  margin-top: -25px;
  z-index: 10;
}
@media (min-width: 1025px) {
  .hero-banner-tour__content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
  }
}

.hero-banner-tour__ellipse {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1025px) {
  .hero-banner-tour__ellipse {
    position: absolute;
    bottom: 0;
    width: 150vw;
    height: auto;
    min-height: auto;
  }
}
.hero-banner-tour__ellipse img,
.hero-banner-tour__ellipse svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
@media (min-width: 1025px) {
  .hero-banner-tour__ellipse img,
  .hero-banner-tour__ellipse svg {
    height: auto;
    max-height: 367px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

/* ============================================
   Container & Layout
   ============================================ */
.hero-banner-tour .container {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  margin-top: -50px;
}
@media (min-width: 1025px) {
  .hero-banner-tour .container {
    position: relative;
    justify-content: flex-end;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: clamp(80px, 10vh, 120px);
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .hero-banner-tour .container {
    padding: 24px 16px 40px;
  }
}

/* ============================================
   Simplified Header
   ============================================ */
.hero-banner-tour__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200 !important;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 1025px) {
  .hero-banner-tour__header {
    position: absolute;
  }
}
.hero-banner-tour__header.menu-open {
  position: fixed !important;
  z-index: 200 !important;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-banner-tour__header-inner {
  max-width: 1328px;
  margin: 0 auto;
  padding: 16px 30px;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 101;
}
@media (max-width: 768px) {
  .hero-banner-tour__header-inner {
    height: 80px;
    padding: 12px 24px;
  }
}
.hero-banner-tour__header-inner .mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger {
  display: block;
  width: 32px;
  height: 24px;
  position: relative;
}
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger::before, .hero-banner-tour__header-inner .mobile-menu-toggle .hamburger::after,
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger > span {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger > span {
  top: 10px;
}
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger::before {
  content: "";
  top: 0;
}
.hero-banner-tour__header-inner .mobile-menu-toggle .hamburger::after {
  content: "";
  bottom: 0;
}
.hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger::before, .hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger::after,
.hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger > span {
  background-color: #222222;
}
.hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger > span {
  opacity: 0;
}
.hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger::before {
  transform: translateY(10px) rotate(45deg);
}
.hero-banner-tour__header-inner .mobile-menu-toggle[aria-expanded=true] .hamburger::after {
  transform: translateY(-10px) rotate(-45deg);
}

.hero-banner-tour__logo {
  display: block;
  flex-shrink: 0;
}
.hero-banner-tour__logo img {
  display: block;
  width: 168px;
  height: 56px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-banner-tour__logo img {
    width: 120px;
    height: 40px;
  }
}

/* ============================================
   Content Wrapper (Bottom Aligned)
   ============================================ */
.hero-banner-tour__content {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .hero-banner-tour__content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}

/* ============================================
   Left Column: Text Content
   ============================================ */
.hero-banner-tour__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 626px;
}
@media (max-width: 1024px) {
  .hero-banner-tour__text {
    max-width: 100%;
    align-items: center;
  }
}
.hero-banner-tour__text .headline {
  text-align: left;
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .hero-banner-tour__text .headline {
    text-align: center;
    width: 100%;
  }
}
.hero-banner-tour__text .headline .gooey-text {
  display: inline;
  background-color: #372002;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  padding: 0.5rem 32px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 4px;
  filter: url("#goo-tour");
}
@media (max-width: 768px) {
  .hero-banner-tour__text .headline .gooey-text {
    font-size: 32px;
    padding: 8px 16px;
    border-radius: 4px;
  }
}
@media (max-width: 480px) {
  .hero-banner-tour__text .headline .gooey-text {
    font-size: 28px;
    padding: 8px 16px;
  }
}

.hero-banner-tour__description {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.54;
  max-width: 626px;
}
@media (max-width: 1024px) {
  .hero-banner-tour__description {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-banner-tour__description {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .hero-banner-tour__description {
    font-size: 18px;
  }
}

/* ============================================
   Right Column: Form Card
   ============================================ */
.hero-banner-tour__form {
  width: 517px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .hero-banner-tour__form {
    width: 100%;
    max-width: 517px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-banner-tour__form {
    max-width: 100%;
  }
}

.hero-banner-tour__form-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.32);
}
@media (max-width: 480px) {
  .hero-banner-tour__form-card {
    padding: 20px 24px;
  }
}

.hero-banner-tour__form-title {
  color: #222222;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 24px 0;
}
@media (max-width: 480px) {
  .hero-banner-tour__form-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.hero-banner-tour__form-fallback {
  color: #777777;
  text-align: center;
  padding: 20px;
  background: #f6f6f6;
  border-radius: 4px;
}

/* ============================================
   Gravity Forms Styling
   ============================================ */
.hero-banner-tour__form-card .gform_wrapper {
  margin: 0;
}
.hero-banner-tour__form-card .gform_wrapper .gform_heading {
  display: none;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .gfield {
  margin-bottom: 16px;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .gfield:last-of-type {
  margin-bottom: 24px;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .gfield_label {
  color: #222222;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .gfield_label .gfield_required {
  color: #ff9b3d;
  font-size: 12px;
  margin-left: 4px;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .name_first,
.hero-banner-tour__form-card .gform_wrapper .gform_body .name_last {
  display: inline-block;
  width: calc(50% - 8px);
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .name_first.name_first,
.hero-banner-tour__form-card .gform_wrapper .gform_body .name_last.name_first {
  margin-right: 16px;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=text],
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=email],
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=tel],
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=date],
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container select {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  background-color: #f6f6f6;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: #222222;
  transition: border-color 0.2s ease;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=text]::-moz-placeholder, .hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=email]::-moz-placeholder, .hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=tel]::-moz-placeholder, .hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=date]::-moz-placeholder, .hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container select::-moz-placeholder {
  color: #777777;
  font-weight: 400;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=text]::placeholder,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=email]::placeholder,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=tel]::placeholder,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=date]::placeholder,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container select::placeholder {
  color: #777777;
  font-weight: 400;
}
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=text]:focus,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=email]:focus,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=tel]:focus,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container input[type=date]:focus,
.hero-banner-tour__form-card .gform_wrapper .gform_body .ginput_container select:focus {
  outline: none;
  border-color: #ff9b3d;
}
.hero-banner-tour__form-card .gform_wrapper .gform_footer {
  margin: 0;
  padding: 0;
}
.hero-banner-tour__form-card .gform_wrapper .gform_footer .gform_button {
  width: 100%;
  height: 60px;
  background-color: #ff9b3d;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 10px 16px;
}
.hero-banner-tour__form-card .gform_wrapper .gform_footer .gform_button:hover {
  background-color: #f08a1f;
}
.hero-banner-tour__form-card .gform_wrapper .gform_footer .gform_button:active {
  background-color: #e67d0f;
}
.hero-banner-tour__form-card .gform_wrapper .gfield_error .gfield_label {
  color: #d32f2f;
}
.hero-banner-tour__form-card .gform_wrapper .gfield_error input,
.hero-banner-tour__form-card .gform_wrapper .gfield_error select {
  border-color: #d32f2f;
}
.hero-banner-tour__form-card .gform_wrapper .validation_message {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   Mobile Menu Panel - Full Width for Hero Tour
   ============================================ */
.hero-banner-tour ~ .mobile-menu-panel {
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - 96px);
  background-color: #ffffff;
  z-index: 150;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 32px 30px 40px 30px;
}
.hero-banner-tour ~ .mobile-menu-panel.is-active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .hero-banner-tour ~ .mobile-menu-panel {
    top: 80px;
    height: calc(100vh - 80px);
    padding: 24px 24px 40px 24px;
  }
}
.hero-banner-tour ~ .mobile-menu-panel .menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-banner-tour ~ .mobile-menu-panel .menu-items > li {
  border-bottom: 1px solid #e0e0e0;
}
.hero-banner-tour ~ .mobile-menu-panel .menu-items > li > a {
  display: block;
  padding: 20px 0;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-banner-tour ~ .mobile-menu-panel .menu-items > li > a:hover {
  color: #ff9b3d;
}
.hero-banner-tour ~ .mobile-menu-panel .menu-items > li.current-menu-item > a, .hero-banner-tour ~ .mobile-menu-panel .menu-items > li.current-menu-parent > a {
  color: #ff9b3d;
}

/* ============================================
   Body Class Modifications
   ============================================ */
body.has-hero-tour {
  padding-top: 0 !important;
}
body.has-hero-tour .site-header {
  display: none;
}