/*
 * estaba-topbar.css
 * Shared top bar for all portal activities (quizzes, games, worksheets)
 * Matches the Estaba main site color palette
 */

/* ===== TOKENS ===== */
:root {
  --eb-blue:       #004d99;
  --eb-cyan:       #009eb3;
  --eb-accent:     #ffb300;
  --eb-light-blue: #e6f0fa;
  --eb-text:       #212529;
  --eb-muted:      #6c757d;
  --eb-white:      #ffffff;
}

/* ===== TOP BAR ===== */
.estaba-topbar {
  background: linear-gradient(135deg, var(--eb-blue) 0%, #0066cc 55%, var(--eb-cyan) 100%);
  color: var(--eb-white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: 'Rubik', 'Heebo', Arial, sans-serif;
  direction: rtl;
  box-shadow: 0 3px 14px rgba(0,77,153,0.3);
  position: relative;
  z-index: 1000;
  text-align: center;
}

/* Logo / Brand */
.estaba-topbar .eb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.estaba-topbar .eb-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.15);
  padding: 2px;
}

.estaba-topbar .eb-site-name {
  font-family: 'Heebo', 'Rubik', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--eb-white);
  line-height: 1;
}

/* Separator */
.estaba-topbar .eb-sep {
  opacity: 0.4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Activity type chip */
.estaba-topbar .eb-type {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.estaba-topbar .eb-type.type-quiz     { border-color: rgba(255,179,0,0.6); }
.estaba-topbar .eb-type.type-game     { border-color: rgba(0,220,130,0.6); }
.estaba-topbar .eb-type.type-worksheet{ border-color: rgba(180,120,255,0.6); }

/* Title */
.estaba-topbar .eb-title {
  text-align: center;
}

.estaba-topbar .eb-title-main {
  font-family: 'Heebo', 'Rubik', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.estaba-topbar .eb-title-sub {
  font-size: 0.76rem;
  opacity: 0.82;
  margin: 2px 0 0;
}

/* Mobile */
@media (max-width: 600px) {
  .estaba-topbar {
    padding: 8px 14px;
    gap: 6px 10px;
  }
  .estaba-topbar .eb-site-name { font-size: 0.95rem; }
  .estaba-topbar .eb-title-main { font-size: 0.9rem; }
  .estaba-topbar .eb-sep { display: none; }
}
