@font-face {
  font-family: 'Manrope-ExtraLight';
  src: url('/fonts/Inter24pt-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Steelfish';
  src: url('/fonts/Steelfish-ExtraBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Neucha';
  src: url('/fonts/Neucha.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Neucha';
  src: url('/fonts/Neucha-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'AlumniSans-Regular';
  src: url('/fonts/AlumniSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope-ExtraLight';
  src: url('/fonts/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Caveat-Medium';
  src: url('/fonts/Caveat/static/Caveat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'RubikMoonrocks-Regular';
  src: url('/fonts/Rubik_Moonrocks/RubikMoonrocks-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


p {
  font-family: 'Manrope-ExtraLight', cursive;
  font-weight: 100;
  font-size: 1rem;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  /* font-family: 'Inter', sans-serif; */

  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  background: #062d2c;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  /* gap: 60px; */
}


.video-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #062d2c;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.back-button svg {
  width: 22px;
  height: 22px;
}

.back-button:hover {
  transform: translateX(-4px);
  background: white;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}


/* Контейнер для фото */
.image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero-title {
  font-family: 'Steelfish', cursive;
  font-weight: 400;
  font-size: 2.5em;
}




h2 {
  font-family: 'AlumniSans-Regular', cursive;
  font-weight: 400;
  font-size: 2em;
}

.kirillh3 {
  font-family: 'Steelfish', cursive;
  font-weight: 400;
  font-size: 1.8rem;
}

.openworld {
  font-family: 'AlumniSans-Regular', cursive;
  font-weight: 400;
  font-size: 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.country-title {
  font-family: 'Steelfish', cursive;
  font-size: 2.5rem;
  margin: 80px 0 10px;
  color: white;
  text-align: center;
}



.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.gradient-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 20%,
      /* Легкая затемняющая маска */
      rgba(6, 45, 44, 0.2) 40%,
      /* Начинаем переход к фону */
      rgba(6, 45, 44, 0.5) 70%,
      /* Средняя точка */
      rgba(6, 45, 44, 0.85) 95%,
      /* Близко к фону */
      rgba(6, 45, 44, 1) 100%
      /* Полностью фон */
    );
  z-index: 2;
  pointer-events: none;
}

.sentence-start {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.95rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .sentence-start {
    white-space: normal;
    display: inline;
    text-wrap: balance;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность для видео-секции */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .video-hero-section {
    height: 80vh;
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .video-hero-section {
    height: 70vh;
    min-height: 400px;
  }
}


/* .sentence-start {
  white-space: normal;
  display: inline;
} */



.about-block {
  background-color: white;
  color: #e04600;
  padding: 20px;
  max-width: 95%;
  border-radius: 20px;

  width: 95%;
  /* адаптивная ширина */
  max-width: 800px;
  /* необязательно, но красиво ограничивает */
  margin: 10px 10px;
  /* центрирование */
  text-align: center;

}

.about-block p {
  color: black;
  margin: 20px 0;
  /* отступы между абзацами */
  line-height: 1.5;
  width: 100%;
}

.about-block p:first-of-type {
  color: #e04600;
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  width: 100%;
}

.day-preview2 {
  color: #e04600;
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  width: 100%;
}

.about-block p:last-of-type {
  font-family: 'Manrope-ExtraLight', cursive;
  color: #062d2c;
  /* тёмный, почти чёрный */
  font-weight: 200;
  /* очень жирный, но аккуратный */
  font-size: 1rem;
  /* чуть больше размера */
  letter-spacing: 0.5px;
  /* лёгкое разрежение для красивого вида */
  width: 100%;

}


.jordan-trip {
  text-align: left;
  padding: 20px 20px;
}

.trip-header {
  text-align: center;
  margin-bottom: 30px;
}

.trip-country {
  font-family: 'Steelfish', cursive;
  font-size: 3rem;
  color: #e04600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.trip-price {
  font-family: 'Steelfish', cursive;
  font-size: 2rem;
  color: #e04600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.trip-dates {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trip-dates span {
  font-family: 'Manrope-ExtraLight', sans-serif;
  font-size: 1.1rem;
  color: #062d2c;
  background: rgba(6, 45, 44, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

.trip-intro {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #000;
}

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.day h3 {
  font-family: 'Manrope-ExtraLight', sans-serif;
  font-size: 1.4rem;
  color: #e04600;
  margin-bottom: 8px;
}

.day p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}


.day {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.day-header {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.day-header h3 {
  font-family: 'Caveat-Medium', sans-serif;
  font-size: 1.4rem;
  color: #e04600;
  margin-bottom: 4px;
}

.day-preview {
  font-family: 'Manrope-ExtraLight', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #333;
  opacity: 0.8;
}

.toggle {
  font-size: 2rem;
  font-weight: 300;
  color: #062d2c;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

/* Скрытый контент */
.day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.day-content p {
  padding: 10px 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

/* Активное состояние */
.day.active .day-content {
  max-height: 1900px;
  opacity: 1;
}

.day.active .toggle {
  transform: rotate(45deg);
  /* + превращается в × */
}

.day-content ul {
  padding-left: 0;
}

.day-content li {
  font-family: 'Manrope-ExtraLight', cursive;
  font-weight: 200;
  font-size: 1rem;
  position: relative;
  padding-left: 18px;
  padding-bottom: 5px;
  color: #062d2c;
}

.day-content li::before {
  content: "•";
  color: #e04600;
  position: absolute;
  left: 0;
}






.contact-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 5px 0 0px;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #062d2c;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  color: #e04600;
}








.vertical-nav {
  display: grid;
  justify-content: start;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 10px 30px;
  max-width: 100%;
  transition: all 0.3s ease-out;
}

.vertical-nav a {
  display: block;
  line-height: 0;
}

.vertical-nav img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, width 0.3s ease-out;
}

.vertical-nav img.loaded {
  opacity: 1;
  transform: scale(1);
}


.scroll-to-top-btn {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: -60px;
  width: 50px;
  height: 50px;
  border: none;
  background-color: rgba(215, 230, 230, 0.415);
  color: rgba(0, 0, 0, 0.579);
  font-size: 1.625rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s, transform 0.6s;
}

.scroll-to-top-btn span {
  color: black;
}

.scroll-to-top-btn:hover {
  background-color: #cdcfce;
  color: #7a797995;
}

.scroll-to-top-btn.visible {
  display: flex;
  opacity: 1;
  transform: translateX(-90px);
}

.scroll-to-top-btn.hidden {
  opacity: 0;
  transform: translateX(0);
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  touch-action: manipulation;
}

.modal-content {
  display: flex;
  position: relative;
  padding: 70px 0 70px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#fullscreen-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav-btn {
  position: absolute;
  width: 50px;
  height: 100px;
  background: rgba(0, 0, 0, .12);
  border: none;
  font-size: 2em;
  cursor: pointer;
  z-index: 4;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.nav-btn span {
  color: white;
}

#prev-btn {
  background: rgba(0, 0, 0, .12);
  left: 0;
}

#next-btn {
  background: rgba(0, 0, 0, .12);
  position: absolute;
  right: 0;
  font-weight: lighter;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.7em;
  font-weight: 200;
  line-height: 1;
  cursor: default;
  z-index: 5;
  transition: transform 0.2s ease;
}



.close-btn svg {
  transition: transform 0.2s;
}

.close-btn svg:hover {
  transform: scale(1.15);
}






.nav-btn:focus {
  outline: none;
}


.nav-btn:active {
  background-color: transparent;
  transition: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 70px;
  padding-bottom: 10px;
}


.inst-you-link a {
  display: block;
  line-height: 0;
  align-content: center;
}

.bi-youtube {
  padding-top: 3px;
}

.container-link-policy {
  position: relative;
  display: flex;
  flex: 1;
  margin-left: 15px;
}

.link-policy {
  position: absolute;
  display: none;
  flex-direction: column;
  align-content: center;
  bottom: 120%;
  padding-bottom: 10px;
}

.link-policy span {
  white-space: nowrap;
  color: #959595;
  transition: color 0.2s;
  font-size: 14px;
}

.link-policy span:hover {
  color: #292929;
}

.link-policy a {
  padding-bottom: 5px;
}

.toggle-icon-document {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.icon-container {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.icon-container svg path {
  transition: fill 0.3s ease;
}

.icon-container:hover svg path {
  fill: #4A90E2;
}

.indent {
  margin: 10px 0 10px;
  text-align: center;
  font-size: 12px;
}

.indent span {
  color: #555555a9;
  padding-bottom: 10px;
}

.social-indent-container {
  margin-top: auto;
}

.booking-success-container {
  max-width: 600px;
  margin: 100px auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  text-align: center;
}

.success-message {
  font-size: 1.2rem;
  margin: 20px 0;
}

.back-to-tours {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #e04600;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.booking-form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.tour-booking-form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tour-booking-form .form-group {
  margin-bottom: 15px;
}

.tour-booking-form input,
.tour-booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.booking-submit-btn {
  width: 100%;
  padding: 14px;
  background: #e04600;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-submit-btn:hover {
  background: #c03d00;
}
.consent-group {
  margin: 20px 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #e04600;
}

.consent-label a {
  color: #e04600;
  text-decoration: underline;
}

.consent-label a:hover {
  color: #c03d00;
}


