/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
  background: #f3f5f9;
  color: #1f2933;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 40px;
}

/* ===== TOP BAR + HEADER ===== */

.main-header {
  margin-bottom: 20px;
}

/* TOP BAR */

.top-bar {
  background: #0b1726;
  color: #e5e7eb;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.top-left span {
  margin-right: 10px;
}

.top-label {
  font-weight: 600;
  opacity: 0.85;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-right i {
  font-size: 12px;
}

.top-right a {
  color: #e5e7eb;
  text-decoration: none;
}

/* NAV BAR */

.nav-bar {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.logo span {
  color: #0ea66b;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #4b5563;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.nav a:hover,
.nav .active {
  color: #0ea66b;
  border-bottom-color: #0ea66b;
}

/* BURGER */

.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-btn div {
  width: 22px;
  height: 2.5px;
  background: #111827;
  border-radius: 999px;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #0b1726;
  padding-top: 90px;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.3s ease;
  z-index: 9999;
}

.mobile-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.mobile-menu.open {
  right: 0;
}

/* ===== HERO ALT ===== */

.hero-alt {
  margin-top: 28px;
}

.hero-alt-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Ліва частина */

.hero-alt-text {
  background: linear-gradient(135deg, #ecfdf5, #e0f2fe);
  border-radius: 22px;
  padding: 26px 26px 26px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.hero-alt-text h1 {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #082f49;
}

.hero-alt-text p {
  font-size: 15px;
  color: #1f2933;
  line-height: 1.7;
  max-width: 520px;
}

.hero-buttons {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Права частина */

.hero-alt-side {
  display: flex;
  align-items: stretch;
}

.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.hero-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.hero-card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hero-card ul {
  list-style: none;
  font-size: 13px;
  color: #4b5563;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.hero-card i {
  color: #0ea66b;
  font-size: 13px;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}

.primary-btn {
  background: #0ea66b;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(14, 166, 107, 0.3);
}

.primary-btn:hover {
  background: #0a7b4d;
}

.outline-btn {
  background: transparent;
  color: #0a7b4d;
  border: 1px solid #0ea66b;
}

.outline-btn:hover {
  background: #e0f2f1;
}

/* ===== FORMATS STRIP ===== */

.formats-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-tile {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
}

.format-tile h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #111827;
}

.format-tile h3 i {
  margin-right: 6px;
  color: #0ea66b;
}

.format-tile p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

/* ===== SPLIT SECTION ===== */

.section-split {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  font-weight: 600;
}

.split-left h2 {
  font-size: 22px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: #082f49;
}

.split-left p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.bullet-list {
  margin-left: 16px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.text-link {
  font-size: 13px;
  color: #0f766e;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Права колонка */

.split-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.split-right h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.date-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding-block: 8px;
  border-top: 1px solid #e5e7eb;
}

.date-row:first-of-type {
  border-top: none;
}

.date-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #1d4ed8;
  align-self: flex-start;
}

.date-row strong {
  font-size: 14px;
  color: #111827;
}

.date-row p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

/* ===== MOSAIC SECTION ===== */

.mosaic-section {
  margin-top: 34px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}

.mosaic-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mosaic-large {
  grid-row: span 2;
  background: linear-gradient(135deg, #fef3c7, #fee2e2);
}

.mosaic-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #111827;
}

.mosaic-card p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #fef9c3;
  margin-bottom: 8px;
}

/* ===== COMFORT SECTION ===== */

.comfort-section {
  margin-top: 40px;
  background: #0b1726;
  color: #e5e7eb;
  padding: 32px 0 36px;
}

.comfort-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.comfort-text h2 {
  font-size: 22px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.comfort-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
}

.comfort-cards {
  display: grid;
  gap: 12px;
}

.comfort-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.comfort-card i {
  font-size: 18px;
  margin-bottom: 4px;
  color: #22c55e;
}

.comfort-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.comfort-card p {
  font-size: 13px;
  color: #e5e7eb;
}

/* ===== CONTACT SPLIT ===== */

.contact-split {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.contact-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.contact-panel h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-panel p {
  font-size: 14px;
  margin-bottom: 4px;
  color: #4b5563;
}

.contact-note {
  margin-top: 8px;
  margin-bottom: 10px;
}

.map-panel {
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}
/* ===== CONTACT FORM INSIDE CONTACT PANEL ===== */

.contact-panel form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-panel label {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: #0ea66b;
  box-shadow: 0 0 0 1px rgba(14, 166, 107, 0.2);
}

/* кнопка всередині форми */
.contact-panel form .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* на дуже вузьких екранах – на всю ширину */
@media (max-width: 600px) {
  .contact-panel form .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */

.site-footer {
  padding: 16px 0 24px;
  background: #0b1726;
  color: #9ca3af;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 10px;
  font-size: 12px;
}

/* ===== COOKIE BANNER ===== */

#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 9998;
}

.cookie-box {
  background: #0b1726;
  color: #e5e7eb;
  padding: 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
}

.cookie-box button {
  margin-top: 10px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  border: none;
  background: #0ea66b;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .hero-alt-inner {
    grid-template-columns: 1fr;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-large {
    grid-row: auto;
  }

  .comfort-inner {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .formats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .container {
    width: 92%;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .formats-strip {
    grid-template-columns: 1fr;
  }

  .hero-alt-text h1 {
    font-size: 24px;
  }

  .hero-alt-text p {
    font-size: 14px;
  }
}


/* ===== PHOTO HIGHLIGHT SECTION ===== */

.photo-highlight {
  margin-top: 34px;
}

.photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  background: #000; /* щоб не було білих смуг, якщо фото інше за пропорціями */
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.photo-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(11, 23, 38, 0.82);
  color: #e5e7eb;
  max-width: 320px;
  backdrop-filter: blur(4px);
}

.photo-caption h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.photo-caption p {
  font-size: 13px;
  line-height: 1.5;
}

/* адаптація для мобілки */
@media (max-width: 780px) {
  .photo-wrapper img {
    max-height: 320px;
  }

  .photo-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .photo-caption h2 {
    font-size: 16px;
  }

  .photo-caption p {
    font-size: 12px;
  }
}
