@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&family=Barlow+Condensed:wght@700&display=swap');

:root {
  --canvas: #000000;
  --surface-soft: #0d0d0d;
  --surface-card: #1a1a1a;
  --surface-elevated: #262626;
  --carbon-gray: #2b2b2b;
  --hairline: #3c3c3c;
  --m-blue-light: #0066b1;
  --m-blue-dark: #1c69d4;
  --m-red: #e22718;
  --ink: #ffffff;
  --body: #bbbbbb;
  --body-strong: #e6e6e6;
  --muted: #7e7e7e;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--canvas);
  color: var(--ink);
  font-family: 'Barlow', -apple-system, sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink);
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
}

.travio-navbar {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
}

.travio-navbar .navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink) !important;
}

.travio-navbar .nav-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted) !important;
  transition: color 0.2s;
}

.travio-navbar .nav-link:hover,
.travio-navbar .nav-link.active {
  color: var(--ink) !important;
}

.m-stripe {
  height: 4px;
  background: linear-gradient(to right, var(--m-blue-light) 33.3%, var(--m-blue-dark) 33.3% 66.6%, var(--m-red) 66.6%);
  width: 100%;
}

.hero-band {
  min-height: 480px;
  background: var(--canvas);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-band-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 80%);
}

.hero-band-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.btn-travio {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-travio:hover {
  background: var(--ink);
  color: var(--canvas);
}

.btn-travio-red {
  background: var(--m-red);
  border-color: var(--m-red);
  color: #fff;
}

.btn-travio-red:hover {
  background: #c41e10;
  border-color: #c41e10;
  color: #fff;
}

.section-band {
  padding: 96px 0;
  background: var(--canvas);
}

.section-band-elevated {
  background: var(--surface-soft);
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--m-blue-light);
  margin-bottom: 12px;
}

.travio-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 32px;
}

.travio-card-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 12px;
}

.travio-card-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
}

.sidebar-nav {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  padding: 24px;
  position: sticky;
  top: 80px;
}

.sidebar-nav-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--m-red);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}

.sidebar-nav a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-nav a:last-child {
  border-bottom: none;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--ink);
}

.toc-box {
  background: var(--surface-elevated);
  border-left: 3px solid var(--m-red);
  padding: 20px;
  margin-bottom: 32px;
}

.toc-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--m-red);
  margin-bottom: 12px;
}

.toc-box a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-box a:hover { color: var(--ink); }

.article-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body);
}

.article-body h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
}

.article-body h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--body-strong);
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body li { margin-bottom: 8px; }

.article-body strong { color: var(--ink); font-weight: 700; }

.article-body a { color: var(--m-blue-light); }

.timeline-block {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
}

.timeline-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: -40px;
  width: 2px;
  background: var(--hairline);
}

.timeline-block:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--m-red);
  border-radius: 50%;
}

.timeline-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--m-blue-light);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item summary {
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--m-red);
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-body {
  padding: 0 0 20px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--body);
}

.related-block {
  background: var(--surface-soft);
  border-top: 3px solid var(--m-red);
  padding: 32px;
  margin-top: 48px;
}

.related-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--m-red);
  margin-bottom: 20px;
}

.related-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}

.related-card:hover { border-color: var(--m-red); }

.related-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: 6px;
}

.related-card-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

.disclaimer-stripe {
  border-left: 3px solid var(--m-blue-light);
  padding: 16px 20px;
  background: var(--surface-elevated);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  margin: 32px 0;
}

.breadcrumb-travio {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-travio .breadcrumb-item {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.breadcrumb-travio .breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-travio .breadcrumb-item a:hover { color: var(--ink); }

.breadcrumb-travio .breadcrumb-item.active { color: var(--body-strong); }

.breadcrumb-travio .breadcrumb-item + .breadcrumb-item::before {
  color: var(--hairline);
}

.travio-footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: 48px 0 24px;
}

.travio-footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.2s;
}

.travio-footer-links a:hover { color: var(--ink); }

.travio-footer-disclaimer {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.travio-footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-card);
  border-top: 1px solid var(--hairline);
  padding: 16px;
  z-index: 1050;
  display: none;
}

.cookie-banner-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--body);
}

.cookie-banner-text a { color: var(--m-blue-light); }

.btn-cookie-accept {
  background: var(--m-red);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 8px 16px;
  border-radius: 0;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 8px 16px;
  border-radius: 0;
  cursor: pointer;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.form-control-travio {
  width: 100%;
  background: var(--surface-card);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-control-travio:focus { border-color: var(--m-blue-light); }

.form-control-travio.error-input { border-color: var(--m-red); }

.form-error-text {
  font-size: 12px;
  color: var(--m-red);
  margin-top: 4px;
  display: none;
}

.form-success-msg {
  background: var(--surface-elevated);
  border-left: 3px solid #0fa336;
  padding: 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  display: none;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-band { min-height: 300px; }
  .hero-band-content h1 { font-size: 36px; }
  .section-band { padding: 48px 0; }
  .sidebar-nav { position: static; margin-bottom: 32px; }
}
