/* ────────────────────────────────────────────────────────────
   PaxWidget - Design System
   Fonts: Public Sans (body) · Inter (headings)
   Primary: #06273F · Green: #009444 · Bg: #E6EFE5
   ──────────────────────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body  { margin: 0; }

img   { vertical-align: middle; border-style: none; max-width: 100%; height: auto; }

ul    { list-style-type: none; padding-left: 0; margin: 0; }

a     { color: #06273F; text-decoration: none; transition: color 0.3s; }
a:hover { color: #009444; }

/* ── Scrollbar ── */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { border-radius: 0; }
::-webkit-scrollbar-thumb { border-radius: 0; background: #1E1E1E; }

/* ── Container ── */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1150px; } }
@media (min-width: 1300px) { .container { max-width: 1230px; } }

/* ── Grid ── */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-12,
.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 auto;
}
.col { flex-basis: 0; flex-grow: 1; max-width: 100%; }

@media (min-width: 768px) {
  .col-md-4  { width: 33.33333333%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-4 { width: 33.33333333%; }
}

/* ── Typography ── */
body, html {
  font-family: "Public Sans", sans-serif;
  color: #06273F;
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

h1, .h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
}
@media (max-width: 1200px)  { h1, .h1 { font-size: 52px; } }
@media (max-width: 991.98px){ h1, .h1 { font-size: 44px; } }
@media (max-width: 767.98px){ h1, .h1 { font-size: 32px; } }

h2, .h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
@media (max-width: 767.98px){ h2, .h2 { font-size: 28px; } }
@media (max-width: 574.98px){ h2, .h2 { font-size: 22px; } }

h3, .h3 {
  font-size: 28px;
  line-height: 1.43;
  letter-spacing: -0.28px;
  font-weight: 700;
}
@media (max-width: 991.98px){ h3, .h3 { font-size: 24px; } }
@media (max-width: 767.98px){ h3, .h3 { font-size: 20px; } }

.text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 991.98px){ .text { font-size: 18px; } }
@media (max-width: 576.98px){ .text { font-size: 16px; } }

.text-min {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px){ .text-min { font-size: 14px; } }

/* ── Utility - display ── */
.d-none    { display: none; }
.d-flex    { display: flex; }
.w-100     { width: 100%; }
.text-center { text-align: center; }
.align-items-center { align-items: center; }
.justify-center     { justify-content: center; }
.ms-auto   { margin-left: auto; }
@media (min-width: 768px) { .d-md-block { display: block; } }

/* ── Utility - colors ── */
.color-white { color: #ffffff !important; }
.color-green { color: #009444 !important; }
.bg-white    { background-color: #ffffff; }

/* ── Utility - font weight ── */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* ── Utility - spacing ── */
.mb-0  { margin-bottom: 0   !important; }
.mb-08 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-0  { margin-top: 0 !important; }
.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 64px;
  border: 2px solid transparent;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s;
  background: transparent;
}
.btn:focus { outline: none; box-shadow: none; }
@media (max-width: 991.98px){ .btn { font-size: 18px; } }
@media (max-width: 767.98px){ .btn { font-size: 16px; padding: 10px 24px; } }

.btn-green {
  border-color: #009444;
  background-color: #009444;
  color: #ffffff;
}
.btn-green:hover {
  background-color: #ffffff;
  color: #009444;
}

.btn-outline {
  border-color: #06273F;
  background-color: transparent;
  color: #06273F;
}
.btn-outline:hover {
  background-color: #06273F;
  color: #ffffff;
}

.btn-dark {
  border-color: #06273F;
  background-color: #06273F;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #ffffff;
  color: #06273F;
}

.btn-big { min-height: 72px; }
@media (max-width: 767.98px){ .btn-big { min-height: 56px; } }

.wrapper-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Divider line (design system .line_s) ── */
.line-item {
  padding-top: 12px;
  padding-bottom: 18px;
  border-top: 1px solid #ADB8C0;
}

/* ── Nav / Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(230, 239, 229, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ADB8C0;
}

.navbar {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media (max-width: 767.98px){ .navbar { padding-bottom: 14px; } }

.nav-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.nav-logo {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #06273F;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: #009444; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px){ .navbar-nav { gap: 16px; } }

.nav-link {
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  color: #06273F;
  line-height: 1.6;
}
.nav-link:hover { color: #009444; }
@media (max-width: 767.98px){ .nav-link { font-size: 15px; } }

/* ── Hero section ── */
.bg-light-gray { background-color: #E6EFE5; }

.section-hero {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 991.98px){ .section-hero { padding-top: 60px; padding-bottom: 60px; } }
@media (max-width: 767.98px){ .section-hero { padding-top: 40px; padding-bottom: 48px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 148, 68, 0.1);
  color: #009444;
  border: 1px solid rgba(0, 148, 68, 0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #009444;
}

/* ── Content sections ── */
.section-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px){ .section-content { padding-top: 40px; padding-bottom: 40px; } }

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009444;
  margin-bottom: 10px;
}

/* ── Demo cards ── */
.section-demo {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px){ .section-demo { padding-top: 40px; padding-bottom: 40px; } }

.demo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #ADB8C0;
}
@media (max-width: 767.98px){ .demo-card { padding: 20px 16px; margin-bottom: 20px; } }

.demo-card-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #728491;
  margin-bottom: 20px;
}

/* Booking card inner */
.booking-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #06273F;
  margin-bottom: 16px;
}

.booking-sub {
  font-family: "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #06273F;
  margin-bottom: 10px;
}

.date-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.date-row::-webkit-scrollbar { display: none; }

.date-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1.5px solid #ADB8C0;
  min-width: 52px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.date-chip:hover { border-color: #009444; }

.date-chip .chip-day  {
  font-size: 11px;
  font-weight: 600;
  color: #728491;
  font-family: "Inter", sans-serif;
  margin-bottom: 4px;
}
.date-chip .chip-date {
  font-size: 18px;
  font-weight: 700;
  color: #06273F;
  font-family: "Inter", sans-serif;
}

.date-chip.is-active {
  border-color: #009444;
  background: rgba(0, 148, 68, 0.07);
}
.date-chip.is-active .chip-day  { color: #009444; }
.date-chip.is-active .chip-date { color: #009444; }

.people-row { margin-bottom: 20px; }
.people-row label {
  display: block;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #06273F;
  margin-bottom: 8px;
}
.people-row select {
  width: 100%;
  height: 48px;
  background-color: #F5F5F5;
  border: 1px solid #ADB8C0;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  color: #06273F;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: auto;
}
.people-row select:focus { outline: none; border-color: #009444; }

.check-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 64px;
  border: 2px solid #009444;
  background-color: #009444;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.35s;
  text-align: center;
}
.check-btn:hover { background-color: #ffffff; color: #009444; }

/* Weather card inner */
.weather-note {
  font-family: "Public Sans", sans-serif;
  font-size: 13px;
  color: #728491;
  margin-bottom: 10px;
}

.weather-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #06273F;
  margin-bottom: 16px;
}

.weather-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.weather-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 2px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-align: center;
  gap: 4px;
}
.weather-day.is-today {
  border-color: #009444;
  background: rgba(0, 148, 68, 0.06);
}

.w-name {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #728491;
  line-height: 1;
}
.weather-day.is-today .w-name { color: #009444; }

.w-icon  { font-size: 1.35rem; line-height: 1; }

.w-cond  {
  font-family: "Public Sans", sans-serif;
  font-size: 9px;
  color: #728491;
  line-height: 1.2;
  min-height: 2em;
}

.w-temp {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #06273F;
}
.w-lo {
  font-weight: 400;
  color: #728491;
}

.conditions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #ADB8C0;
}

.cond-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #06273F;
  background: #E6EFE5;
  border: 1px solid #ADB8C0;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── Features / line list ── */
.features-header {
  margin-bottom: 40px;
}
@media (max-width: 767.98px){ .features-header { margin-bottom: 24px; } }

.features-list .line-item h3 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767.98px){ .features-list .line-item h3 { font-size: 18px; } }

.features-list .line-item .text-min {
  color: #728491;
  margin-top: 4px;
}

/* ── Code / integration section ── */
.section-code {
  background-color: #06273F;
  padding-top: 72px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px){ .section-code { padding-top: 40px; padding-bottom: 48px; } }

.section-code .section-label { color: #009444; }
.section-code h2              { color: #ffffff; }
.section-code .text           { color: #9CADAE; }

.code-block {
  background: #0B1929;
  border: 1px solid #1E3348;
  border-radius: 16px;
  padding: 28px;
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.75;
  color: #E6EFE5;
  overflow-x: auto;
  text-align: left;
}
@media (max-width: 767.98px){ .code-block { font-size: 12px; padding: 20px 16px; } }

.c-comment { color: #4A6079; }
.c-tag     { color: #7DD3FC; }
.c-attr    { color: #A5B4FC; }
.c-str     { color: #86EFAC; }
.c-fn      { color: #FCD34D; }

/* ── CTA section ── */
.section-cta {
  background-color: #06273F;
  padding-top: 56px;
  padding-bottom: 80px;
  border-top: 1px solid #1E3348;
}
@media (max-width: 767.98px){ .section-cta { padding-top: 36px; padding-bottom: 48px; } }

/* ── Footer ── */
.footer {
  background-color: #06273F;
  border-top: 1px solid #1E3348;
  padding-top: 24px;
  padding-bottom: 36px;
}

.footer-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.footer-logo span { color: #009444; }

.footer-copy {
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  color: #9CADAE;
}
.footer-copy a { color: #9CADAE; text-decoration: none; transition: color 0.3s; }
.footer-copy a:hover { color: #009444; }

/* ── 404 page ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E6EFE5;
  padding: 2rem;
}

.card-404 {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 1px solid #ADB8C0;
}
@media (max-width: 480px){ .card-404 { padding: 36px 24px 32px; } }

.card-404 .wave-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 24px;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg);  }
}

.card-404 .err-code {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009444;
  margin-bottom: 10px;
}

.card-404 h1 {
  font-size: 28px;
  font-weight: 700;
  color: #06273F;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.card-404 p {
  font-size: 16px;
  color: #728491;
  line-height: 1.65;
  margin-bottom: 28px;
}

.card-404 .brand-mark {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #ADB8C0;
  font-weight: 500;
}
.card-404 .brand-mark strong { color: #06273F; font-weight: 700; }
