@import url('https://cdn.jsdelivr.net/npm/roboto-fontface/css/roboto/roboto-fontface.css');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
    overflow-y: auto;
    overflow-x: hidden;
}

body{
    font-family: 'Roboto', sans-serif;
    overflow: visible;
    width: 100%;        /* а не 100vw! */
    
}

@font-face {
    font-family: 'Sansation';
    src: url('/fonts/sansation/Sansation-Light.woff') format('woff'),
         url('/fonts/sansation/Sansation-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
  font-family: "Cracked";
  src: url('/fonts/oc/cracked.woff2') format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vineritc";
  src: url('/fonts/vineritc.ttf') format("truetype");
  font-display: swap;
}
.cracked {
  font-family: Cracked;
  color: #EE7D00 !important;
  font-size: 34px;
  position: relative;
  z-index: 2;
}

.btn.btn-primary {
  background-color: #EE7D00;
}
/* --- Обёртка --- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 8px 0;
  font-family: sans-serif;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 3000;
}

.header--scrolled {
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 16px;
  position: relative;
}

.nav-group {
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Центр всегда по центру */
.nav-group--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 1;
  pointer-events: none; /* если не нужны клики по центру, убери если нужно */
}
.nav-group--center .logo {
  font-size: 85px;
  font-family: 'Cracked', sans-serif;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color .3s, font-size .3s;
  color: #fff;
  pointer-events: auto; /* чтобы по лого можно было кликать */
}
.nav-group--center .tagline {
  color: #ffffff;
  transition: color .3s, font-size .3s;
  font-size: 20px;
  transform: rotate(-8deg);
  font-family: 'Vineritc';
  margin-top: -25px;
  margin-right: -130px;
  z-index: 10;
  pointer-events: auto;
}

/* --- Кнопки --- */
.btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  padding: 6px 12px;
  margin: 0 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500 !important;
  border-radius: 3px;
  transition: background .2s, color .2s, font-size .3s;
  z-index: 2;
}
.btn:hover {
  background: rgba(143, 143, 143, 0.452);
}
.btn--scrolled {
  font-size: 16px;
}

/* Круглая кнопка */
.btn--circle {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
}

/* --- При скролле меняется размер --- */
.header--scrolled .btn {
  background: transparent;
  color: #fff;
}
.btn--circle--scrolled {
  width: 50px;
  height: 45px;
  font-size: 14px;
}
.header--scrolled .btn:hover {
  background: rgba(255,255,255,0.2);
}
.header--scrolled .logo{
  font-size: 63px;
}
.header--scrolled .tagline {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

/* --- Флаг --- */
.flag-icon {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
}

/* --- Мелкие фиксы --- */
.btn-arrow {
  margin-left: 6px;
  display: inline-flex;
  vertical-align: middle;
}

/* --- На маленьких экранах: колонки --- */
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 8px;
    min-height: 160px;
  }
  .nav-group {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .nav-group--center {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 8px 0;
  }
  .nav-group--center .logo {
    font-size: 56px;
  }
  .nav-group--center .tagline {
    font-size: 17px;
    margin-right: 0;
  }
}

/* Дополнительные media queries для ноутбуков */
@media (max-width: 900px) {
  .destinations__wrapper {
    width: 98%;
  }
  
  .destinations__grid {
    justify-content: center;
  }
  
  .destination-image-container {
    min-width: 140px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .destinations__sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    margin-bottom: 10px;
  }
  
  .destinations__sidebar-item {
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 4px;
    margin-right: 5px;
  }
  
  .destinations__grid {
    justify-content: space-around;
  }
  
  .destination-image-container {
    min-width: 120px;
    max-width: 150px;
  }
}

/* --- Дополнительные стили для "шапки", если нужно --- */
.header_bg {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  align-items: center;
}
.header_bg.hidden {
  display: none;
}
.header_block {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(254, 247, 237);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header_block .container{
  padding: 10px;
}

/*language select*/
.language-select {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.language-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 4px;
}
.language-selected span {
  font-weight: 600;
  color: white;
}
.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: none;
  z-index: 100;
  min-width: 120%;
}

.language-dropdown div {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-dropdown div:hover {
  background-color: #eee;
}

:root {
  --active-menu-color: #FFF;
}
.destinations {
  border-radius: 10px;
  padding: 10px 0;
}
.destinations.hidden {
  display: none;
}
.destinations__wrapper {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  display: flex;
}
.destinations__content {
  display: flex;
}
.destinations__sidebar {
  list-style: none;
  padding: 0;
  margin: 0;
  left: 20px;
  flex-shrink: 0;
  width: 300px;
  /* padding-bottom: 30px; */
}

/* Оптимизация для ноутбуков */
@media (max-width: 1366px) {
  .destinations__sidebar {
    width: 250px;
  }
}

@media (max-width: 1024px) {
  .destinations__sidebar {
    width: 220px;
  }
}
.destinations__sidebar-item {
  font-size: 24px;
  text-transform: uppercase;
  /* margin-bottom: 3px; */
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px 0 0 4px;
  padding: 12px 16px;
}

/* Оптимизация текста для ноутбуков */
@media (max-width: 1366px) {
  .destinations__sidebar-item {
    font-size: 20px;
    padding: 10px 14px;
  }
}

@media (max-width: 1024px) {
  .destinations__sidebar-item {
    font-size: 18px;
    padding: 8px 12px;
  }
}
.destinations__sidebar-item:hover {
  color: #000;
  background-color: var(--active-menu-color);
}
.destinations__sidebar-item.active {
  color: #000;
  background-color: var(--active-menu-color);
  background-color: white;
  border-radius: 7px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.destinations__description{
  margin-top: 20px;
  font-size: 18px;
}

/* Адаптивное описание для ноутбуков */
@media (max-width: 1366px) {
  .destinations__description {
    margin-top: 15px;
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .destinations__description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
  }
}
.destinations_content__block {
  display: none;
  gap: 10px;
  margin-left: 20px;
  padding: 20px;
}

/* Оптимизация контентных блоков для ноутбуков */
@media (max-width: 1366px) {
  .destinations_content__block {
    margin-left: 15px;
    padding: 15px;
  }
}

@media (max-width: 1024px) {
  .destinations_content__block {
    margin-left: 10px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .destinations__content {
    flex-direction: column;
  }
  
  .destinations_content__block {
    margin-left: 0;
    margin-top: 10px;
  }
}
.destinations_content__block.active {
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.destinations__grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Адаптивная сетка для ноутбуков */
@media (max-width: 1366px) {
  .destinations__grid {
    gap: 8px;
  }
}

@media (max-width: 1024px) {
  .destinations__grid {
    gap: 6px;
  }
}
.destinations__main-content{
  background-color: var(--active-menu-color);
  padding: 20px,30px;
}
.destination-image-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

/* Адаптивные контейнеры для ноутбуков */
@media (max-width: 1366px) {
  .destination-image-container {
    min-width: 180px;
    max-width: 220px;
  }
}

@media (max-width: 1024px) {
  .destination-image-container {
    min-width: 160px;
    max-width: 200px;
  }
}
.destination-image-container img {
  width: 100%;
  height: 220px;
  filter: brightness(0.7);
  object-fit: cover;
  border-radius: 10px;
}

/* Адаптивные изображения для ноутбуков */
@media (max-width: 1366px) {
  .destination-image-container img {
    height: 200px;
  }
}

@media (max-width: 1024px) {
  .destination-image-container img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .destination-image-container img {
    height: 160px;
  }
}
.destination-image-container p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Адаптивный текст на изображениях */
@media (max-width: 1366px) {
  .destination-image-container p {
    font-size: 16px;
    bottom: 8px;
    left: 8px;
  }
}

@media (max-width: 1024px) {
  .destination-image-container p {
    font-size: 14px;
    bottom: 6px;
    left: 6px;
  }
}
.description_button {
  background-color: #FF973C;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: white;
  font-size: 16px;
  padding: 7px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
}
.page-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index:999;
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  backdrop-filter: blur(8px); /* Blur effect for glass */
  -webkit-backdrop-filter: blur(8px); /* For Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.footer-oc {
  width: 100%;
  background: #191919;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 0 0 20px 0;
}
.footer-social {
  text-align: center;
  padding: 32px 0 10px 0;
}
.footer-social-icons a {
  color: #fff;
  margin: 0 10px;
  transition: color 0.2s;
  font-size: 1.8rem;
}
.footer-main {
  width: 80%;
  margin: 0 auto;
}
.footer-social-icons a:hover { color: #ff8400; }
.footer-social-icons { margin-bottom: 6px; }
.footer-social-text {
  color: #fff;
  font-size: 1.05rem;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.footer-main {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin: 0 auto 0 auto;
  padding: 30px 12px 10px 12px;
  align-items: flex-start;
}
.footer-block {
  min-width: 180px;
  max-width: 230px;
  font-size: 1.5rem;
}
.footer-title.orange {
  color: #ff8400;
  font-weight: bold;
  margin-bottom: 9px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}
.footer-contact-name {
  font-size: 1.07rem;
  margin-bottom: 2px;
}
.footer-contact-role {
  font-size: 0.92rem;
  color: #bbb;
  margin-bottom: 9px;
}
.footer-contact-item {
  font-size: 0.98rem;
  margin-bottom: 3px;
  color: #fff;
}
.footer-contact-item i {
  color: #ff8400;
  width: 17px;
  display: inline-block;
  text-align: center;
  margin-right: 8px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}
.footer-list li {
  font-size: 0.98rem;
  margin-bottom: 4px;
  cursor: pointer;
  transition: color 0.18s;
}
.footer-list li:hover { color: #ff8400; }
.footer-block.newsletter { max-width: 290px; }
.footer-news-desc {
  color: #bababa;
  font-size: 0.94rem;
  margin-bottom: 10px;
  margin-top: -3px;
}
.footer-news-form {
  display: flex;
  gap: 7px;
}
.footer-news-form input[type="email"] {
  flex: 1;
  padding: 8px 11px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.96rem;
  outline: none;
  background: #f5f5f5;
  color: #232323;
}
.footer-news-form button {
  padding: 8px 18px;
  background: #ff3c1a;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.17s;
}
.footer-news-form button:hover { background: #ff8400; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 30px auto 0 auto;
  padding: 14px 18px 0 18px;
  border-top: 2px solid #262626;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
}
.footer-insurance {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 310px;
}
.footer-ins-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #eee;
  padding: 5px;
}
.footer-buche-title {
  font-size: 1.07rem;
  color: #fff;
}
.footer-buche-text {
  color: #ccc;
  font-size: 0.99rem;
  margin-top: 2px;
  line-height: 1.28;
}
.footer-link { color: #ffffff; text-decoration: none;}
.footer-link:hover { color: #ff8400; }
.footer-logo {
  font-size: 2.5rem;
  color: #ff8400;
  letter-spacing: 0.06em;
  margin-right: 30px;
}
@media (max-width: 1100px) {
  .footer-main { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px;}
  .footer-logo { margin: 0 0 0 10px; }
}
.footer-divider {
    height: 3px;
    background-color: #7c7c7c;
    width: 20%;
    margin: 15px auto; /* Changed from '15px 0' to '15px auto' */
}
