@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Dancing+Script:wght@400..700&family=Fjalla+One&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #cfcfcf;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: #222;
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
  width: 60px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.15em;
}



.phone {
  font-size: 0.95em;
  color: #ddd;
}


/* Burger styles */
.burger {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #4418f5;
}

/* Mobile styles */
@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #222;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }

  .main-nav a {
    margin: 10px 0;
    color: #fff;
  }

  .main-nav.show {
    display: flex;
  }
}


/* Main content */
main {
  max-width: 100%;
  margin: 40px 0;
  padding: 0 0px;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}



/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px;
  background: #cfcfcf; /* серый фон как на скрине */
  min-height: 90vh;
  gap: 60px;
  width: 90%;
  margin: auto;
}

/* Левая часть - картинка */
.hero-image {
  background: url('../images/1000011301.png') center/cover no-repeat;
  border-radius: 20px;
  min-height: 400px;
}

/* Правая часть - текст */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a;
  max-width: 100%;
  align-items: flex-start;
}

.hero-subtitle {
  font-size: 1.3em;
  font-weight: 700;
  color: #0d1c63; /* тёмно-синий акцент */
  margin-bottom: 15px;
}

.hero-subtitle span {
  color: #f5c518;
}

.hero-text h1 {
  font-size: 2.2em;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333;
}

/* Кнопка */
.btn-hero {
  display: inline-block;
  margin-top: 20px;
  background: #230785;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-hero:hover {
  background: #3206d3;
}

/* Адаптив */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-image {
    min-height: 250px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-text h1 {
    font-size: 1.8em;
  }
}



/* Intro Section */
/* ===== Основной блок ===== */
.intro {
  background: #f5f5f7;
  padding: 80px 20px;
  text-align: center;
}

.intro-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #0b1d51;
  margin-bottom: 50px;
  text-transform: capitalize;
}

/* ===== Сетка карточек ===== */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Карточка ===== */
.intro-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== Иконки ===== */
.intro-card svg {
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  fill: #0b1d51;
}

/* ===== Заголовок и текст ===== */
.intro-card h3 {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.intro-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
}

/* ===== Адаптивность ===== */

/* Планшеты */
@media (max-width: 992px) {
  .intro {
    padding: 60px 15px;
  }

  .intro-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .intro-card {
    padding: 25px 20px;
  }

  .intro-card h3 {
    font-size: 1.15em;
  }

  .intro-card p {
    font-size: 0.9em;
  }
}

/* Смартфоны */
@media (max-width: 600px) {
  .intro {
    padding: 50px 10px;
  }

  .intro-title {
    font-size: 1.7em;
    margin-bottom: 30px;
  }

  .intro-grid {
    gap: 20px;
  }

  .intro-card {
    padding: 20px 15px;
    text-align: center;
  }

  .intro-card svg {
    margin: 0 auto 15px;
  }
}

/* Stay & Play Section */
.stay-play {
  position: relative;
  background: url('../images/1000011302.png') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.stay-play-overlay {
  background: rgba(255, 255, 255, 0.15); /* полупрозрачное стекло */
  backdrop-filter: blur(15px);           /* эффект размытия */
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
}

.stay-play h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #0931aa;        /* тёмно-синий */
  font-weight: 700;
}

.stay-play p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #eee;
}

.btn-stay {
  display: inline-block;
  margin-top: 20px;
  background: #0b1d51;  /* тёмно-синий акцент */
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-stay:hover {
  background: #09204a;   /* чуть темнее при hover */
  transform: translateY(-2px);
}

/* адаптив */
@media (max-width: 768px) {
  .stay-play {
    height: auto;
    padding: 60px 20px;
  }

  .stay-play h2 {
    font-size: 1.7em;
  }

  .stay-play p {
    font-size: 1em;
  }
}




/* Guest Reviews Section */
.guest-reviews {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
}

.reviews-title {
  font-size: 2em;
  margin-bottom: 40px;
  color: #111;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.review-text {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #f5c518;
  font-size: 0.95em;
}







/* Hotels section */
.hotels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  font-family: "Host Grotesk", sans-serif;
}

.hotel-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Host Grotesk", sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hotel-card h2 {
  font-size: 1.2em;
  margin: 15px;
  color: #111;
}

.hotel-card p {
  margin: 0 15px 15px;
  color: #666;
}



/* Hotels Section */
.hotels-section {
  max-width: 100%;
  margin:  auto;
}

.hotels-title {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #0b1d51; /* основной акцент */
  font-weight: 700;
}

.hotel-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hotel-row.reverse {
  flex-direction: row-reverse;
  background-color: #ffffff;
}

.hotel-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.hotel-info {
  flex: 1;
}

.hotel-info h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #0b1d51; /* тёмно-синий акцент */
  font-weight: 600;
}

.hotel-info p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.hotel-info ul {
  list-style: none;
  padding: 0;
}

.hotel-info ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.hotel-info ul li::before {
  content: "✔";
  color: #0b1d51;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Кнопка */
.btn-hotel {
  display: inline-block;
  margin-top: 15px;
  background: #0b1d51; /* основной акцент */
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-hotel:hover {
  background: #09204a; /* чуть темнее при hover */
  transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 1150px) {
  .hotel-row,
  .hotel-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .hotel-img img {
    max-width: 100%;
  }

  .hotel-info {
    margin-top: 20px;
  }
}


/* Reviews */
.review {
  background: #fff;
  padding: 15px;
  margin: 15px 0;
  border-left: 5px solid #f5c518;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
  background: #0b1d51; /* тёмно-синий фон */
  color: #fff;
  padding: 50px 20px 20px;
  text-align: center;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
  gap: 40px;
}

.footer-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 2em;
  margin-bottom: 15px;
  color: #fff;
}

.footer-about p {
  max-width: 350px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
}



.footer-logo-img {
  width: 80px;   /* размер иконки */
  height: auto;
}

.footer-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 2em;
  color: #fff;
  margin: 0;
}


/* Заголовки колонок */
.footer-menu h4,
.footer-legal h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 2em;
  margin-bottom: 15px;
  color: #fff;
}

/* Ссылки */
.footer-menu ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-menu ul li a,
.footer-legal ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu ul li a:hover,
.footer-legal ul li a:hover {
  color: #fff;
}

/* Красный блок-предупреждение */
.footer-warning {
  background: #c0392b;
  color: #fff;
  padding: 15px;
  border-radius: 6px;
  max-width: 900px;
  margin: 0 auto 30px;
  font-weight: 600;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Авторское право */
.footer-copy {
  font-size: 0.85em;
  color: #ccc;
  margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-about p {
    margin: 0 auto;
  }
}



@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-about p {
    margin: 0 auto;
  }

  .footer-menu ul li,
  .footer-legal ul li {
    margin-bottom: 8px;
  }
}


/* Reviews Section */
.reviews-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-title {
  font-size: 2em;
  margin-bottom: 40px;
  color: #111;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-text {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #f5c518;
  font-size: 0.95em;
}

.review-stars {
  font-size: 1.3em;
  color: #f5c518; /* золотые звезды */
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.review-text {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #111;
  font-size: 0.95em;
}


.contact-form-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #0b1d51;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #09204a;
}


/* Privacy Section */
.privacy-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.privacy-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #111;
}

.privacy-section h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0b1d51;
  font-size: 1.2em;
}

.privacy-section p,
.privacy-section ul {
  color: #444;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-section ul li {
  margin-bottom: 8px;
}


/* Terms Section */
.terms-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.terms-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #111;
}

.terms-section h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0b1d51;
  font-size: 1.2em;
}

.terms-section p,
.terms-section ul {
  color: #444;
  margin-bottom: 15px;
}

.terms-section ul {
  list-style: none;
  padding-left: 0;
}

.terms-section ul li {
  margin-bottom: 8px;
}

/* Age Popup */
.age-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
}

.age-popup-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.age-popup-content h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #111;
}

.age-popup-content p {
  margin-bottom: 20px;
  color: #444;
}

#confirm-age {
  background: #0b1d51;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

#confirm-age:hover {
  background: #09204a;
}

/* Cookie popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.popup-content p {
  margin-bottom: 15px;
  color: #333;
}

.popup-content button {
  background: #0b1d51;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-content button:hover {
  background: #09204a;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone {
    margin-top: 8px;
  }
}



.who-we-are {
  position: relative;
  background: #cfcfcf;
  padding: 100px 20px;
  color: #fff;
}

.who-overlay {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),   /* верхнее затемнение */
      rgba(0, 0, 0, 0.6)    /* нижнее затемнение */
    ),
    url('../images/who-we-are.png') center/cover no-repeat;
  padding: 60px;
  border-radius: 12px;
  max-width: 90%;
  margin: 0 auto;
  color: #fff; /* текст будет белым */
}


.who-text {
  text-align: center;
}

.who-text h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.who-text p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 15px;
}

.btn-who {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #0b1d51;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-who:hover {
  background: #ddd;
  transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .who-overlay {
    padding: 40px 20px;
  }

  .who-text h2 {
    font-size: 1.8em;
  }

  .who-text p {
    font-size: 1em;
  }
}
.journey {
  background: #f5f5f7;
  padding: 80px 20px;
  text-align: center;
}

.journey-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.journey-header h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #0b1d51;
  margin-bottom: 20px;
}

.journey-header p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid black;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.journey-card .icon {
  font-size: 2em;
  display: block;
  margin-bottom: 15px;
}

.journey-card h3 {
  font-size: 1.25em;
  margin-bottom: 12px;
  color: #0b1d51;
}

.journey-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
}

/* адаптив */
@media (max-width: 768px) {
  .journey-header h2 {
    font-size: 1.8em;
  }

  .journey-header p {
    font-size: 1em;
  }

  .journey-card {
    padding: 20px 15px;
  }
}


.adventure-block {
  background: #f5f5f7;
  padding: 80px 20px;
}

.adventure-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.adventure-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.adventure-text {
  flex: 1;
}

.adventure-text h2 {
  font-size: 1.9em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0b1d51;
}

.adventure-text h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
}

.adventure-text p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.btn-adventure {
  display: inline-block;
  background: #0b1d51;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-adventure:hover {
  background: #09204a;
  transform: translateY(-2px);
}

/* Адаптив */
@media (max-width: 900px) {
  .adventure-container {
    flex-direction: column;
    text-align: center;
  }

  .adventure-text h2 {
    font-size: 1.6em;
  }

  .adventure-img img {
    max-width: 100%;
  }
}


.thrill-hotels {
  padding: 80px 0px;
  background: #f5f5f7;
}

.thrill-title {
  text-align: center;
  font-size: 2.2em;
  font-weight: 700;
  color: #0b1d51;
  margin-bottom: 60px;
}

.hotel-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px 150px;
}

.hotel-row.reverse {
  flex-direction: row-reverse;
  background-color: #ffffff;
}

.hotel-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.hotel-info {
  flex: 1;
}

.hotel-info h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #0b1d51;
}

.hotel-info p {
  font-size: 1.05em;
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}

.hotel-info ul {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.hotel-info ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color:  #333;
  position: relative;
  padding-left: 18px;
}

.hotel-info ul li::before {
  content: "✔";
  color: #0b1d51;
  position: absolute;
  left: 0;
}

.btn-hotel {
  display: inline-block;
  margin-top: 15px;
  background: #0b1d51;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-hotel:hover {
  background: #09204a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .hotel-row, .hotel-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .hotel-img img {
    max-width: 100%;
  }

  .hotel-info {
    margin-top: 20px;
  }
}


.thrill-intro-block {
  background: #f5f5f7;
  padding: 80px 20px;
}

.thrill-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.thrill-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.thrill-text {
  flex: 1;
}

.thrill-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0b1d51;
}

.thrill-text h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
}

.thrill-text p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Для планшетов */
@media (max-width: 1000px) {
  .thrill-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .thrill-text h2 {
    font-size: 1.8em;
  }

  .thrill-text h3 {
    font-size: 1.3em;
  }

  .thrill-text p {
    font-size: 1em;
  }

  .thrill-img img {
    max-width: 100%;
  }
}

/* Для телефонов */
@media (max-width: 576px) {
  .thrill-intro-block {
    padding: 50px 15px;
  }

  .thrill-text h2 {
    font-size: 1.5em;
  }

  .thrill-text h3 {
    font-size: 1.2em;
  }

  .thrill-text p {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .thrill-img img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
}



.disclaimer-section {
  background: #0b1d51;
  color: #fff;
  padding: 60px 20px;
  margin-top: 60px;
}

.disclaimer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.disclaimer-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.disclaimer-note {
  margin-top: 20px;
  padding: 15px;
  border-left: 4px solid #fff;
  background: rgba(255,255,255,0.1);
  font-style: italic;
  font-size: 0.95em;
}



/* FAQ Section */
/* FAQ Section */
.faq-section {
  background: #0b1d51;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.faq-title {
  font-size: 2em;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255,255,255,0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #ddd;
  font-size: 1em;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Активное состояние */
.faq-item.active .faq-answer {
  max-height: 500px; /* достаточно большое значение */
  padding: 15px;
}

.faq-item.active .icon {
  transform: rotate(360deg); /* превращает + в × */
}
.icon {
  font-size: 1.5em;
  transition: transform 0.3s;
}

