/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

@font-face {
  font-family: "Mokoko";
  src: url("fonts/Mokoko.otf");
}

@font-face {
  font-family: "Hero New";
  src: url("fonts/HeroNewRegular.otf");
}

:root {
  --color-orange: #d96330;
  --background: 45 30% 97%;
  --foreground: 210 12% 13%;
  --primary: 25 85% 45%;
  --radius: 0.75rem;
  --muted-foreground: 150 8% 50%;

  --shadow-soft:
    0 0 0 1px hsla(150, 20%, 12%, 0.05), 0 2px 4px hsla(150, 20%, 12%, 0.05);
  --shadow-hover:
    0 0 0 1px hsla(150, 20%, 12%, 0.08), 0 8px 24px hsla(150, 20%, 12%, 0.1);
}

/* Base */
* {
  border-color: hsl(150 10% 88%);
}

body {
  overflow-x: hidden;
}

body,
.elementor-element a.hfe-menu-item,
.elementor-element a.hfe-sub-menu-item,
.elementor-element a.hfe-menu-item,
.elementor-element a.hfe-sub-menu-item {
  font-family: "Hero New" !important;
  -webkit-font-smoothing: antialiased;
}

.hidden-logo {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.show-logo {
  opacity: 1;
}

.relative {
  position: relative;
}

#more {
  display: none;
}

#btn-read-more {
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: #d96330;
  text-decoration: underline;
}

.print-btn svg {
  width: 24px;
}

.print-btn .elementor-button-content-wrapper {
  align-items: center;
}

.circle-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d96330;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Center text */
.center-text {
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  z-index: 2;
  line-height: 1.1;
}

/* SVG */
.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

/* Circular text */
.circle-text text {
  fill: white;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-anchor: middle;
}

/* Video Button */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.video-popup.active {
  display: block;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 10% auto;
  z-index: 2;
}

.video-container iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Rotation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Default (closed) */
.e-n-accordion-item-title {
  border-radius: 12px;
  transition: border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When OPEN */
.e-n-accordion-item-title[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-logo {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  will-change: transform, opacity;
}

.card-trail {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  animation-duration: 200ms;
  box-shadow: var(--shadow-soft);
}

.card-trail-img-wrapper {
  overflow: hidden;
}

.card-trail img {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-trail:hover img {
  transform: scale(1.1);
}

.card-trail .elementor-icon {
  border: none;
}

.card-trail h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 8px;
}

/* Headings */
h1,
h2,
.mokoko-title * {
  font-family: "Mokoko", serif !important;
  text-wrap: balance;
}

h3,
h4,
h5,
h6 {
  font-family: "Hero New", sans-serif !important;
  text-wrap: balance;
}

h1 {
  letter-spacing: -0.025em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (width>=768px) {
  h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (width>=1024px) {
  h1 {
    font-size: 6rem;
    line-height: 1;
  }
}

h2 {
  letter-spacing: -0.025em;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (width>=768px) {
  h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

h3 {
  letter-spacing: -0.025em;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
}

@media (width>=768px) {
  h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.label-caps p {
  font-size: 0.75rem;
  /* margin-bottom: 1rem; */
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leading-relaxed {
  line-height: 1.625;
}

/* END Headings */

.btn-text-left .elementor-button-text {
  text-align: left;
}

/* Components */

.section-padding {
  padding: 5rem 0;
}

.container-wide {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.card-trail {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgb(245, 244, 239);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.card-trail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Unsere Reise */

.travel-card {
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.travel-card:hover {
  box-shadow: var(--shadow-hover);
}

.travel-card-badge {
  box-shadow: var(--shadow-soft);
  background: #faf8f580;
  border-radius: 9999px;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  display: inline-flex;
  width: auto;
}

.travel-card-badge .badge-text p {
  margin-bottom: 0;
  font-weight: 600;
}

.travel-card-badge .elementor-icon {
  border: none;
}

/* Buttons */
.btn-compass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.btn-compass:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.color-orange {
  color: var(--color-orange);
}

/* KONTAKT */

/* Upcoming Travel Subscription Form in Popup */
#wpcf7-f2844-p115-o2 .wpcf7-list-item-label,
#wpcf7-f2804-p115-o3 .wpcf7-list-item-label {
  line-height: 19px;
}

#wpcf7-f2844-p115-o2 .wpcf7-list-item,
#wpcf7-f2804-p115-o3 .wpcf7-list-item {
  margin-left: 0;
}
#wpcf7-f2844-p115-o2 .wpcf7-form-control.wpcf7-submit,
#wpcf7-f2804-p115-o3 .wpcf7-form-control.wpcf7-submit {
  float: right;
}

.ue-simple-popup-trigger-wrapper {
  /* display: none; */
}

.acceptance-field {
  border-radius: 12px;
  border-color: #dde3e0;
  background-color: rgba(250, 248, 245, 0.1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  outline: none;
  padding: 0.75rem 1rem;
  color: #fff;
}

.acceptance-field label {
  font-size: 14px;
  line-height: 1.625;
}

.acceptance-field p {
  margin-bottom: 0;
}

.acceptance-field a {
  color: #d96330;
  text-decoration: underline;
}

.acceptance-field a:hover {
  color: #e67521;
}

.wpcf7-form .row-fields {
  display: flex;
  gap: 20px;
  color: #dde3e0;
  font-size: 14px;
  margin-bottom: 15px;
}

.wpcf7-form .row-fields,
.wpcf7-form .row-fields p,
.wpcf7-form .row-fields .wpcf7-form-control-wrap,
.wpcf7-form .wpcf7-radio label,
.wpcf7-form .wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}

.wpcf7-form .wpcf7-radio > * {
  flex: 1;
}

.wpcf7-form .row-fields .field-label {
  margin-bottom: 8px;
}

.wpcf7-form .row-fields p {
  margin-bottom: 0;
}

.wpcf7-form input,
.wpcf7-form textarea {
  border-radius: 12px;
  border-color: #dde3e0;
  background-color: rgba(250, 248, 245, 0.1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 14px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline-offset: -2px;
  outline: 2px solid #d96330;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #dde3e0;
}

.wpcf7-form-control-wrap[data-name="quiz-35"] label {
  display: flex;
  gap: 15px;
  align-items: center;
}

.wpcf7-form-control-wrap[data-name="quiz-35"] input {
  display: inline-block;
  width: 80px;
}

.wpcf7-form .quiz {
  margin-top: 20px;
}

.wpcf7-form input[type="submit"] {
  padding: 16px 32px;
  color: #faf8f5;
  background-color: #d96330;
  border-radius: 12px;
  border: none;
  text-transform: uppercase;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-4px);
}

.wpcf7-form .textarea-label {
  width: 100%;
}

/* Container (optional but recommended) */
.wpcf7-radio {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.wpcf7-radio label {
  flex: 1;
}

/* Hide default radio */
.wpcf7-radio input[type="radio"] {
  display: none;
}

.wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}

/* Button style */
.wpcf7-radio .wpcf7-list-item-label {
  display: inline-block;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  text-align: center;
}

/* Hover */
.wpcf7-radio input[type="radio"] + .wpcf7-list-item-label:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Active (selected) */
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
  background: #e67521; /* orange */
  border-color: #e67521;
  color: #fff;
}
/* END KONTAKT */

.circle {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #d96330;
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}

.timeline-border {
  position: absolute;
  transform: rotate(180deg);
  width: 1px;
  height: 100%;
  background: #d96330;
  left: 22.05%;
}

.border-bottom {
  border-bottom: 1px solid rgb(221, 227, 224) !important;
}

.p-margin-0 p {
  margin-bottom: 0;
}

.w-100 a {
  width: 100% !important;
}

.color-dark {
  color: #1e2328;
}

.ticker {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  width: max-content;
  animation: scrollX 20s linear infinite;
}

.track.reverse {
  animation: scrollX 20s linear infinite reverse;
}

.item {
  display: flex;
  gap: 10px;
  /* flex: 0 0 auto; */
  padding: 20px 30px;
  margin-right: 10px;
  align-items: center;
}

.item span {
  font-size: 16px;
  font-weight: 600;
}

.partner-logo.item img {
  height: 95px;
  width: 210px;
  object-fit: contain;
}

.item svg path,
.item svg circle {
  stroke: #d96330;
}

/* KEY: move exactly half (because content is duplicated) */
@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.newsletter-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 45px 12px 16px; /* space for button */
  border-radius: 999px;
  /* border: 1px solid #ccc; */
  font-size: 14px;
}

.newsletter-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #d96330;
  width: 50px;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border: none;
  /* border: 1px solid #fff; */
  border-left: none;
  /* background: black; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter-btn:hover {
  /* transform: translateY(-50%) scale(1.05); */
  opacity: 0.9;
  background-color: #d96330;
}

.newsletter-btn svg {
  transform: rotate(-35deg);
}

.icon-box {
  background-color: #f5f4ef;
  border: 1px solid #e5e7eb;
}

.icon-box:hover {
  box-shadow:
    0 0 0 1px #18251f14,
    0 8px 24px #18251f1a;
}

@media screen and (min-width: 1660px) {
  .poster-images {
    min-height: 700px;
  }
}
