/* ============ Base ============ */
:root {
  --dig-navy: #0d1b4c;
  --dig-navy-dark: #0a1440;
  --dig-gold: #b8942f;
  --dig-gold-light: #c9a43a;
  --dig-gray: #cfcfcf;
  --dig-gray-light: #e9e9e9;
  --dig-text-light: #ffffff;
}

body {
  background-color: #4a4a4a;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

/* Outer dark frame matching the screenshot's grey background */
.page-frame {
  padding: 18px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.site-wrapper {
  width: 100%;
  max-width: 1050px;
  background-color: var(--dig-navy);
  border: 1px solid #7a7a7a;
  box-shadow: 0 0 0 1px #2a2a2a;
}

/* ============ Header ============ */
.site-header {
  background-color: var(--dig-navy);
}

.header-inner {
  padding: 22px 30px 18px 30px;
}

.site-logo {
  width: 130px;
  height: auto;
  display: block;
}

.tagline {
  color: #f0d060;
  font-style: italic;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.95rem;
  margin-top: 6px;
  margin-bottom: 0;
}

.headline {
  color: #ffffff;
  font-style: italic;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.35;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ============ Navigation ============ */
.main-nav {
  background-color: var(--dig-gray-light);
  border-top: 1px solid #b8b8b8;
}

.main-nav .nav-link {
  color: #333333;
  font-size: 0.95rem;
  padding: 14px 10px;
  font-weight: 400;
}

.main-nav .nav-link:hover {
  color: #000;
}

.main-nav .nav-link.active-nav {
  background-color: var(--dig-gold);
  color: #ffffff;
  font-weight: bold;
}

.main-nav .navbar-toggler {
  border-color: #999;
}

/* ============ Hero / Map Section ============ */
.hero-section {
  background-color: var(--dig-navy);
}

.callout-box {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  padding: 16px 20px;
  font-size: 0.95rem;
  max-width: 720px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.map-container {
  margin-top: -18px;
  width: 100%;
  line-height: 0;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ Slider Preview Panel ============ */
.slider-preview {
  background-color: var(--dig-navy);
}

.preview-panel {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #2a3a7c;
}

.preview-image {
  width: 100%;
  height: 260px;
  background-color: #0d1b4c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease-in-out;
}

.preview-logo-img {
  max-width: 220px;
  max-height: 160px;
}

.preview-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}

/* ============ Thumbnail Strip / Slider Nav ============ */
.thumb-strip {
  background-color: var(--dig-gray-light);
  padding: 12px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.thumb-row {
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.thumb {
  width: 78px;
  height: 60px;
  flex: 0 0 auto;
  background-color: #dddddd;
  border: 1px solid #bbbbbb;
  padding: 0;
  position: relative;
  cursor: pointer;
  opacity: 0.85;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out, outline 0.2s ease-in-out;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover {
  opacity: 1;
}

.active-thumb {
  opacity: 1;
  outline: 2px solid #b8942f;
  outline-offset: -2px;
}

.active-thumb .thumb-arrow {
  display: block;
}

.thumb-arrow {
  display: none;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #b8942f;
}

.thumb-logo {
  background-color: var(--dig-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-logo img {
  max-width: 90%;
  max-height: 90%;
}

.thumb-fast {
  background-color: #b32020;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thumb-fast span {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.65rem;
  line-height: 1.1;
}

/* ============ Footer ============ */
.site-footer {
  background-color: var(--dig-navy-dark);
  padding: 14px 0;
  font-size: 0.85rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: bold;
  margin-right: 8px;
}

.footer-copyright {
  color: var(--dig-gold-light);
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 3px;
}

.site-footer a:hover {
  color: var(--dig-gold-light);
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 767.98px) {
  .headline {
    font-size: 1.1rem;
    margin-top: 14px;
  }

  .header-inner {
    padding: 16px 18px 12px 18px;
  }

  .site-footer .col-12 {
    margin-bottom: 4px;
  }

  .thumb-row {
    justify-content: flex-start !important;
  }
}
