/* ============================================
   UNIFIED DEMO MODE BANNER DESIGN SYSTEM
   Single, consistent gold top bar across all demo pages
   ============================================ */

.demo-mode-banner {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #c9a84c;
  border-bottom: 2px solid #8b6a2a;
  padding: 0;
  display: flex;
  align-items: center;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.demo-mode-banner-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 84px 0 24px;
  gap: 16px;
}

.demo-mode-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.demo-mode-banner-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hexagon SVG icon */
.demo-mode-banner-icon svg {
  width: 100%;
  height: 100%;
  fill: #1a2234;
  stroke: #1a2234;
  stroke-width: 1.5;
}

.demo-mode-banner-text {
  font-family: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2234;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-mode-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #1a2234;
  color: #c9a84c;
  border: 1px solid #1a2234;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
}

.demo-mode-banner-cta:hover {
  background: #0a0f1e;
  border-color: #0a0f1e;
  color: #d4b05a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.demo-mode-banner-cta:active {
  transform: scale(0.98);
}

.demo-mode-banner-cta-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .demo-mode-banner-content {
    padding: 0 16px;
    gap: 12px;
  }

  .demo-mode-banner-text {
    font-size: 12px;
  }

  .demo-mode-banner-cta {
    padding: 6px 12px;
    font-size: 11px;
  }

  .demo-mode-banner-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .demo-mode-banner-text {
    display: none;
  }

  .demo-mode-banner-content {
    justify-content: center;
  }

  .demo-mode-banner-cta {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* Hexagon shape using clip-path for icon fallback */
.demo-mode-banner-hexagon {
  width: 24px;
  height: 24px;
  background: #1a2234;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
