/* ===========================
   TV Simplified — Site Shell
   Shared across all funnel UI pages.
   Uses .site-* prefixed classes to avoid Bootstrap conflicts.
   =========================== */

/* --- HEADER --- */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  padding: 0.6rem 0;
  border-bottom: 1px solid #E3DED8;
}

.site-header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo-section {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header .tv-icon {
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.site-header .tv-icon:hover {
  transform: scale(1.05);
}

.site-header .logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3A3A3A;
  letter-spacing: -0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-header .logo-text:hover {
  text-shadow: 0 0 8px rgba(66, 202, 246, 0.4);
}

/* --- BREADCRUMB --- */
.site-breadcrumb {
  font-size: 0.8rem;
  color: #7A7A7A;
}

.site-breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
}

.site-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 0.3rem;
  color: #7A7A7A;
}

.site-breadcrumb a {
  color: #4A81B3;
  text-decoration: none;
}

.site-breadcrumb a:hover {
  text-decoration: underline;
}

/* --- FUNNEL ORIENTATION BLOCK --- */
.funnel-block {
  padding: 0.75rem 0 0;
}

.funnel-stepper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.funnel-step {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: #999;
  transition: color 0.15s;
}
.funnel-step:hover { color: #4A81B3; }
.funnel-step.active { color: #2D2D2D; font-weight: 600; pointer-events: none; }
.funnel-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}
.funnel-step.active .funnel-step-num { background: #2D2D2D; color: #fff; }
.funnel-step:not(.active) .funnel-step-num { background: #e5e7eb; color: #999; }
.funnel-arrow { color: #ccc; font-size: 0.7rem; margin: 0 0.1rem; }

.funnel-block h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0.5rem 0 0;
}
.funnel-block .page-subtitle {
  font-size: 0.88rem;
  color: #6c757d;
  margin: 0.15rem 0 0;
}

/* --- UNIFIED PRIMARY COLOR (Bootstrap btn-primary override) --- */
.btn-primary {
  --bs-btn-bg: #4A81B3;
  --bs-btn-border-color: #4A81B3;
  --bs-btn-hover-bg: #3E6F97;
  --bs-btn-hover-border-color: #3E6F97;
  --bs-btn-active-bg: #365F82;
  --bs-btn-active-border-color: #365F82;
  --bs-btn-disabled-bg: #4A81B3;
  --bs-btn-disabled-border-color: #4A81B3;
  --bs-btn-disabled-opacity: 0.45;
  --bs-btn-focus-shadow-rgb: 74, 129, 179;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #3A3A3A;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.site-footer p {
  margin: 0;
  color: #ccc;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .site-header .header-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .site-breadcrumb {
    font-size: 0.75rem;
  }
}
