/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f4f5fb;
  color: #0f172a;
  overflow-x: hidden;
}
body,
html {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

.vx-container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.vx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  color: #e5e7eb;
}

.vx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
a {
  color: inherit;
}
.vx-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.vx-logo span {
  color: #22c5c5;
}

.vx-logo small {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vx-nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.vx-nav a {
  text-decoration: none;
  color: #e5e7eb;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.vx-nav a:hover,
.vx-nav .active {
  color: #22c5c5;
  border-bottom-color: #22c5c5;
}

/* Burger */

.vx-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.vx-menu-btn span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* Mobile menu */

.vx-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #020617;
  padding-top: 80px;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.3s ease;
  z-index: 999;
}

.vx-mobile-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.vx-mobile-menu.open {
  right: 0;
}

/* ===== HERO ===== */

.vx-hero {
  background: radial-gradient(
    circle at top left,
    #dbeafe 0,
    #f4f5fb 55%,
    #fefce8 100%
  );
  padding: 26px 0 28px;
}

.vx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.vx-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.vx-hero-text h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.vx-hero-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

.vx-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero info */

.vx-hero-info {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #0f172a;
}

.vx-hero-info i {
  color: #22c5c5;
  margin-right: 4px;
}

/* Hero side + image */

.vx-hero-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vx-hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.55);
}

.vx-hero-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.vx-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vx-badge {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
}

.vx-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a5b4fc;
  display: block;
  margin-bottom: 3px;
}

/* Buttons */

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.vx-btn-primary {
  background: #0f172a;
  color: #f9fafb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.45);
}

.vx-btn-primary:hover {
  background: #020617;
}

.vx-btn-ghost {
  background: transparent;
  border: 1px solid #0f172a;
  color: #0f172a;
}

.vx-btn-ghost:hover {
  background: #e5e7eb;
}

/* ===== STRIP ===== */

.vx-strip {
  background: #0f172a;
  color: #e5e7eb;
  padding: 16px 0 18px;
}

.vx-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vx-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.vx-strip-item i {
  font-size: 22px;
  color: #22c5c5;
}

.vx-strip-item h3 {
  font-size: 15px;
  margin-bottom: 2px;
}

/* ===== SECTIONS / SPLIT ===== */

.vx-section {
  padding: 26px 0 24px;
}

.vx-section-light {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.vx-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
}

.vx-split-text h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.vx-split-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.vx-checklist {
  margin-top: 10px;
  margin-left: 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.vx-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #0f172a;
}

.vx-link:hover {
  color: #22c5c5;
  border-bottom-color: #22c5c5;
}

/* Gallery */

.vx-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  grid-auto-rows: 120px;
  gap: 10px;
}

.vx-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #dbeafe;
}

.vx-gallery-tall {
  grid-row: span 2;
}

.vx-gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  grid-auto-rows: 120px;
  gap: 10px;
}

.vx-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #dbeafe;
}

/* перша картка на дві строки */
.vx-gallery-tall {
  grid-row: span 2;
}

/* placeholder займає весь блок */
.vx-gallery-placeholder {
  width: 100%;
  height: 100%;
}

/* картинка повністю заповнює placeholder */
.vx-gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== TOURS GRID ===== */

.vx-section-head {
  margin-bottom: 14px;
}

.vx-section-head h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.vx-section-head p {
  font-size: 13px;
  color: #64748b;
}

.vx-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vx-tour-card {
  border-radius: 18px;
  background: #f8fafc;
  padding: 10px 10px 12px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.vx-tour-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

.vx-tour-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.vx-tour-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.vx-tour-card p {
  font-size: 13px;
  color: #475569;
}

/* ===== COMFORT ===== */

.vx-comfort {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 22px;
}

.vx-comfort-text h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.vx-comfort-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.vx-comfort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vx-comfort-card {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 10px 11px 11px;
  font-size: 13px;
}

.vx-comfort-card i {
  font-size: 18px;
  color: #22c5c5;
  margin-bottom: 4px;
  display: block;
}

.vx-comfort-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

/* ===== CONTACT STRIP ===== */

.vx-contact-strip {
  background: #0f172a;
  color: #e5e7eb;
  padding: 20px 0 22px;
}

.vx-contact-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.vx-contact-strip-inner h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.vx-contact-strip-inner p {
  font-size: 13px;
  color: #e5e7eb;
}

.vx-contact-strip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.vx-contact-phone {
  font-size: 13px;
}

.vx-contact-phone i {
  margin-right: 6px;
}

/* ===== PAGES GENERIC ===== */

.vx-page-hero {
  padding: 26px 0 10px;
}

.vx-page-hero h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

.vx-page-hero p {
  font-size: 14px;
  color: #475569;
  max-width: 620px;
}

.vx-page-grid {
  padding: 8px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.vx-page-grid h2 {
  font-size: 17px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.vx-page-grid ul {
  margin-left: 18px;
  margin-bottom: 6px;
}

.vx-page-content {
  padding: 10px 0 26px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.vx-page-content h2 {
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #0f172a;
}

.vx-page-content ul {
  margin-left: 18px;
  margin-bottom: 6px;
}

/* ===== CONTACT LAYOUT ===== */

.vx-contact-layout {
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 22px;
}

.vx-contact-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.vx-contact-panel h1 {
  font-size: 20px;
  margin-bottom: 6px;
}

.vx-contact-panel p {
  font-size: 14px;
  margin-bottom: 4px;
  color: #475569;
}

.vx-contact-note {
  margin-top: 8px;
  margin-bottom: 10px;
}

/* Contact form */

.vx-contact-panel form {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vx-contact-panel label {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}

.vx-contact-panel input,
.vx-contact-panel textarea {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vx-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.vx-contact-panel input:focus,
.vx-contact-panel textarea:focus {
  border-color: #22c5c5;
  box-shadow: 0 0 0 1px rgba(34, 197, 197, 0.25);
}

.vx-contact-panel button {
  margin-top: 4px;
}

.vx-map-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

/* ===== POLICY CARD ===== */

.vx-policy-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 18px;
  margin: 26px auto 32px;
  max-width: 800px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.vx-policy-card h1 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #0f172a;
}

.vx-policy-card h2 {
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #0f172a;
}

.vx-policy-card ul {
  margin-left: 18px;
}

/* ===== FOOTER ===== */

.vx-footer {
  background: #020617;
  color: #9ca3af;
  padding: 14px 0 18px;
  font-size: 12px;
  margin-top: 8px;
}

.vx-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vx-footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 8px;
}

/* ===== COOKIE BANNER ===== */

#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 900;
}

.cookie-box {
  background: #020617;
  color: #e5e7eb;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.7);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  border: none;
  background: #22c5c5;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .vx-hero-grid {
    grid-template-columns: 1fr;
  }

  .vx-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .vx-tour-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vx-comfort {
    grid-template-columns: 1fr;
  }

  .vx-comfort-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vx-contact-layout,
  .vx-page-grid {
    grid-template-columns: 1fr;
  }

  .vx-contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vx-contact-strip-right {
    align-items: flex-start;
  }

  .vx-hero-image img {
    height: 210px;
  }
}

@media (max-width: 780px) {
  .vx-nav {
    display: none;
  }

  .vx-menu-btn {
    display: flex;
  }

  .vx-strip-grid {
    grid-template-columns: 1fr;
  }

  .vx-tour-grid {
    grid-template-columns: 1fr;
  }

  .vx-comfort-grid {
    grid-template-columns: 1fr;
  }

  #cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }
  .vx-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
  }
}
