* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  scroll-behavior: smooth;

  margin: 0;
  overflow-x: hidden; /* прибирає горизонтальний скрол */
}

/* HEADER */
header {
  width: 100%;
  padding: 20px 60px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}
.logo {
  font-size: 28px;
  font-weight: 600;
}
.logo a {
  color: inherit;
  text-decoration: none;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: 0.3s;
}
nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* центр по обох осях */
  min-width: 100%; /* щоб по ширині зайняло блок */
  min-height: 100%; /* щоб по висоті зайняло блок */
  width: auto; /* авто, щоб зберігати пропорції */
  height: auto; /* авто, щоб зберігати пропорції */
  z-index: -1;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.hero-content {
  z-index: 2;
}
.hero-content h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 15px 28px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}
.primary {
  background: #ff8c42;
  color: #fff;
}
.primary:hover {
  background: #ffa867;
}
.secondary {
  border: 2px solid #fff;
  color: #fff;
}
.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* ---------------- MOBILE ADAPTATION ---------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 70%;
    text-align: center;
    font-size: 15px;
    padding: 10px 0;
  }
  .bg-video {
    display: none; /* ховаємо відео на мобільних */
  }
  .hero {
    padding: 20px;
    background: url("images/hero-mob.webp") center center/cover no-repeat;
  }
}

/* Гамбургер */
/* Гамбургер */
.hamburger {
  display: none; /* ховаємо на десктопі */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Адаптив */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* показуємо гамбургер на мобільних */
  }

  header nav {
    position: absolute;
    top: 60px; /* трохи нижче хедера */
    right: 0;
    background: #111;
    width: 200px;
    display: none; /* ховаємо меню */
    flex-direction: column;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
  }

  header nav.active {
    display: flex; /* показуємо меню */
  }
}
/* about */
/* ПРО НАС */
/* ------------------------------ ПРО НАС ------------------------------ */
.about {
  padding: 100px 20px;
  background: #1a1a1a;
  text-align: center;
}
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}
.about h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #ff8c42;
}
.about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #ddd;
}

/* Карточки: досвід і переваги */
.cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap; /* адаптивність для мобільних */
  margin-bottom: 50px;
}
.card {
  background: #222;
  border: 2px solid #ff8c42;
  border-radius: 15px;
  padding: 30px 25px;
  width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}
.card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff8c42;
  justify-content: center;
}
.card p,
.card ul li {
  font-size: 16px;
  color: #ccc;
  text-align: left;
}
.card ul {
  list-style: none;
  padding: 0;
}
.card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Анімація fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Карта */
.map {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .about h2 {
    font-size: 36px;
  }
  .about p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p,
  .card ul li {
    font-size: 15px;
  }
}
/* ------------------------------ ПОПУЛЯРНІ НАПРЯМКИ ------------------------------ */
.destinations {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}
.destinations h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff8c42;
}
.destinations p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ddd;
}

.destination-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.destination-card {
  background: #222;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}
.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-content {
  padding: 20px;
  text-align: left;
}
.card-content h3 {
  font-size: 22px;
  color: #ff8c42;
  margin-bottom: 10px;
}
.card-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}
.card-content .price {
  font-weight: bold;
  margin-bottom: 15px;
}
.card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* дозволяє кнопкам переноситися на новий рядок, якщо не влазять */
}
.card-buttons .btn {
  flex: none; /* відключає розтягування */
  padding: 12px 20px;
  font-size: 14px;
}

/* Анімація fade-in */
.destination-cards.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .destination-cards {
    flex-direction: column;
    align-items: center;
  }
  .destination-card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .destinations h2 {
    font-size: 36px;
  }
  .destinations p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .card-content h3 {
    font-size: 20px;
  }
  .card-content p,
  .card-content .price {
    font-size: 15px;
  }
}

/* ------------------------------ ПОСЛУГИ ------------------------------ */
.services {
  padding: 100px 20px;
  background: #1a1a1a;
  text-align: center;
}
.services h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff8c42;
}
.services p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ddd;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #222;
  border-radius: 15px;
  padding: 30px 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}
.service-card i {
  color: #ff8c42;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff8c42;
}
.service-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

/* Анімація fade-in */
.services-cards.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .services h2 {
    font-size: 36px;
  }
  .services p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .service-card {
    width: 90%;
    max-width: 300px;
  }
}
/* ------------------------------ ГАЛЕРЕЯ ------------------------------ */
.gallery {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}
.gallery h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff8c42;
}
.gallery p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ddd;
}

/* Сітка галереї */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay-galery {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff8c42;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.3s;
}

.gallery-item:hover .overlay-galery {
  background: rgba(0, 0, 0, 0.8);
}

/* Анімація fade-in */
.gallery-grid.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 36px;
  }
  .gallery p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .gallery-item img {
    height: 180px;
  }
}
/* ------------------------------ ВІДГУКИ ------------------------------ */
.reviews {
  padding: 100px 20px;
  background: #1a1a1a;
  text-align: center;
}
.reviews h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff8c42;
}
.reviews p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ddd;
}

.reviews-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  background: #222;
  border-radius: 15px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.review-card h3 {
  font-size: 20px;
  color: #ff8c42;
  margin-bottom: 5px;
}
.review-card .rating {
  color: #ffd700;
  margin-bottom: 15px;
}
.review-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

/* Анімація fade-in */
.reviews-cards.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .reviews-cards {
    flex-direction: column;
    align-items: center;
  }
  .review-card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .reviews h2 {
    font-size: 36px;
  }
  .reviews p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .review-card h3 {
    font-size: 18px;
  }
  .review-card p {
    font-size: 14px;
  }
}
/* ------------------------------ FAQ ------------------------------ */
.faq {
  padding: 100px 20px;
  background: #1a1a1a;
  text-align: center;
}
.faq h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff8c42;
}
.faq p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ddd;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #222;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #222;
  color: #ff8c42;
  font-size: 18px;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}
.faq-question:hover,
.faq-question.active {
  background: #333;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background: #1f1f1f;
}
.faq-answer.active {
  max-height: 200px; /* достатньо для 1–2 речень */
  padding: 15px 20px;
}
.faq-answer p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}

/* Анімація fade-in */
.faq-items.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 36px;
  }
  .faq p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 15px;
  }
}

/* ------------------------------ КОНТАКТИ + ФОРМА ------------------------------ */
.contact-section {
  padding: 100px 20px;
  background: #111;
}
.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* щоб на мобільних було вертикально */
  justify-content: center;
}

/* ФОРМА */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  background: #222;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.contact-form h2 {
  color: #ff8c42;
  margin-bottom: 15px;
  text-align: left;
}
.contact-form p {
  color: #ddd;
  margin-bottom: 25px;
  text-align: left;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #333;
  color: #fff;
  transition: background 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: #444;
}
.contact-form button {
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #ff8c42;
  color: #fff;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #e67e22;
}

/* КОНТАКТИ */
.contacts {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  background: #222;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.contacts h2 {
  color: #ff8c42;
  margin-bottom: 15px;
  text-align: left;
}
.contacts p {
  color: #ddd;
  margin-bottom: 25px;
  text-align: left;
}
.contacts-info p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-info .socials {
  margin-top: 20px;
}
.contacts-info .socials a {
  display: inline-block;
  margin: 0 10px;
  color: #ff8c42;
  font-size: 20px;
  transition: color 0.3s;
}
.contacts-info .socials a:hover {
  color: #e67e22;
}

/* Анімація fade-in */
.contact-wrapper.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-wrapper {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form,
  .contacts {
    max-width: 100%;
  }
}

/* ------------------------------ FOOTER ------------------------------ */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo a {
  color: inherit;
  text-decoration: none;
}
.footer-logo h3 {
  color: #ff8c42;
  margin-bottom: 10px;
}

.footer-nav a,
.footer-policy a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-policy a:hover {
  color: #ff8c42;
}

.footer-socials a {
  display: inline-block;
  margin: 0 10px;
  font-size: 22px; /* розмір іконки */
  color: #ff8c42;
  line-height: 1;
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  color: #666;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-socials a {
    margin-right: 10px;
    margin-left: 10px;
  }
}

/* ------------------------------ PRIVACY PAGE ------------------------------ */
.privacy-hero {
  padding: 100px 20px;
  background: #111;
  text-align: center;
  color: #fff;
}
.privacy-hero h2 {
  font-size: 48px;
  color: #ff8c42;
  margin-bottom: 15px;
}
.privacy-hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  padding: 80px 20px;
  background: #1a1a1a;
  color: #ccc;
}
.privacy-content .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-content h3 {
  color: #ff8c42;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.privacy-content p,
.privacy-content ul {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.privacy-content ul {
  padding-left: 20px;
}
.privacy-content ul li {
  margin-bottom: 10px;
  list-style: disc;
}

@media (max-width: 768px) {
  .privacy-hero h2 {
    font-size: 36px;
  }
  .privacy-hero p {
    font-size: 16px;
  }
  .privacy-content h3 {
    font-size: 22px;
  }
  .privacy-content p,
  .privacy-content ul li {
    font-size: 15px;
  }
}

/* ------------------------------ COOKIES PAGE ------------------------------ */
.cookies-hero {
  padding: 100px 20px;
  background: #111;
  text-align: center;
  color: #fff;
}
.cookies-hero h2 {
  font-size: 48px;
  color: #ff8c42;
  margin-bottom: 15px;
}
.cookies-hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto;
}

.cookies-content {
  padding: 80px 20px;
  background: #1a1a1a;
  color: #ccc;
}
.cookies-content .container {
  max-width: 900px;
  margin: 0 auto;
}
.cookies-content h3 {
  color: #ff8c42;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.cookies-content p,
.cookies-content ul {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cookies-content ul {
  padding-left: 20px;
}
.cookies-content ul li {
  margin-bottom: 10px;
  list-style: disc;
}

@media (max-width: 768px) {
  .cookies-hero h2 {
    font-size: 36px;
  }
  .cookies-hero p {
    font-size: 16px;
  }
  .cookies-content h3 {
    font-size: 22px;
  }
  .cookies-content p,
  .cookies-content ul li {
    font-size: 15px;
  }
}

/* Банер куків */
#cookie-banner {
  position: fixed;
  bottom: 20px; /* можна змінити на top: 0 для верхньої частини */
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  z-index: 99999; /* максимально високий, щоб перекривало все */
  font-size: 16px;
  display: none;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

#cookie-banner a {
  color: #ff8c42;
  text-decoration: underline;
}

#cookie-banner button {
  background-color: #ff8c42;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
#cookie-banner button:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}

/* Адаптивність */
@media (max-width: 480px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
