* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Merriweather", serif;
    }

    body {
      background: rgb(226, 215, 195);
      color: #222;
    }

    header {
      position: relative;
      background: url(images/street-4472321\ \(1\).png) no-repeat center/cover;
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .logo {
      width: 100px;
      position: absolute;
      top: 15px;
      left: 20px;
    }

    /* Навигация */
    nav {
      display: flex;
      gap: 20px;
      position: absolute;
      top: 50px;
      right: 20px;
      font-size: 24px;
    }

    .header_nav_link {
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
      background-color: rgb(205, 70, 24);
      padding: 10px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    }

    .header_nav_link:hover {
      color: rgb(205, 70, 24);
      background-color: white;
    }

    /* Menu burgerowe */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
    }

    .burger span {
      width: 25px;
      height: 3px;
      background: white;
    }

    /* Титул */
    .header_title h1 {
      font-size: 3.4rem;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .header_btn {
      margin-top: 20px;
    }

    .header_link {
      display: inline-block;
      padding: 12px 25px;
      background:rgb(205, 70, 24);;
      color: white;
      font-size: 2.9rem;
      text-decoration: none;
      border-radius: 8px;
      transition: 0.3s;
    }

    .header_link:hover {
      background: #e67e22;
      font-size:  3rem;
    }

    /* Suwak */
    .tour1 {
      padding: 40px 20px;
      background: rgb(227, 215, 194);
    }

    .swiper {
      width: 100%;
      max-width: 1200px;
      height: 500px;
    }

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #eee;
      border-radius: 15px;
      overflow: hidden;
      position: relative;
    }

    /* Стили стрелок для Swiper */
.swiper .prev,
.swiper .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    width: 60px;
    height: 60px;
}

.swiper .prev {
    left: 10px;
}

.swiper .next {
    right: 10px;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: linear-gradient(#d84315, #ff9800) !important;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

.swiper .arrow-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

/* Hover эффект */
.swiper .prev:hover .arrow-icon,
.swiper .next:hover .arrow-icon {
    transform: scale(1.2);
}

.slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide_info {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
  color: white;
  max-width: 80%;
}
.slide_title {
  font-size: 24px;
  margin-bottom: 10px;
}
.info_text {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.info_btn {
  background: rgb(205, 70, 24);
  color: white;
  padding: 10px 20px;
  font-size: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.info_btn:hover {
  background: #e67e22;
}
/* O nas */
.about_us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
  background: rgb(132, 45, 30);
}
.about_img {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
}
.about_leftside {
  max-width: 600px;
}
.about_title {
  font-size: 28px;
  margin-bottom: 15px;
}
.about_text {
  font-size: 16px;
  line-height: 1.6;
}
/* Akordeon */
.accordion {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.accordion-header:hover {
  background: rgba(255, 255, 255, 0.2);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #f5f5f5;
}
.accordion-item.active .accordion-content {
  max-height: 200px; /* регулируй */
  padding: 15px;
}
/* Animacja pojawiania się при скролле */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* Footer */
.footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}
.footer a {
  color: #ff9800;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.footer a:hover {
  color: #ff5722;
}
.footer_title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}
/* Адаптив */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  nav.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .header_title h1 {
    font-size: 1.8rem;
  }
  .header_link{
    font-size: 1.7rem;
    padding: 10px 20px;
  }
  .swiper {
    height: 350px;
  }
  .slide_info {
    bottom: 15px;
    padding: 10px;
  }
  .info_btn {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
  .about_us {
    flex-direction: column;
    text-align: center;
  }
  
}
@media (max-width: 553px) {
  .info_btn {
    font-size: 0.6rem;
    padding: 8px 15px;
  }
  .slide_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .info_text {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .slide_info {
    width: 100%;
  }
}