/* ============================================
   TOPBAR — THEME 1: TECH LIGHT
   ============================================ */

:root {
  /* ===============================
     TOPBAR COLORS (TECH LIGHT)
  =============================== */
  --ebtb20-topbar-background-color: #f8fafc;
  --ebtb20-topbar-border-color: rgba(0, 180, 216, 0.1);
  --ebtb20-topbar-social-icon-color: #64748b;
  --ebtb20-topbar-social-icon-hover-color: #00b4d8;
  --ebtb20-topbar-contact-text-color: #64748b;
  --ebtb20-topbar-contact-icon-color: #00b4d8;
  --ebtb20-topbar-contact-hover-text-color: #00b4d8;

  /* ===============================
     TOPBAR LAYOUT & TIMINGS
  =============================== */
  --ebtb20-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TOP BAR
   ============================================ */
.ebtb20-top-bar {
  background-color: var(--ebtb20-topbar-background-color);
  border-bottom: 1px solid var(--ebtb20-topbar-border-color);
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
}

.ebtb20-top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ebtb20-social-icons {
  display: flex;
  gap: 1.25rem;
}

.ebtb20-social-icon {
  color: var(--ebtb20-topbar-social-icon-color);
  transition: color 0.3s var(--ebtb20-ease);
}

.ebtb20-social-icon:hover {
  color: var(--ebtb20-topbar-social-icon-hover-color);
}

.ebtb20-contact-info {
  display: flex;
  gap: 1.5rem;
}

.ebtb20-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ebtb20-topbar-contact-text-color);
  font-weight: 600;
  transition: color 0.3s var(--ebtb20-ease);
  text-decoration: none;
}

.ebtb20-contact-link i {
  color: var(--ebtb20-topbar-contact-icon-color);
}

.ebtb20-contact-link:hover {
  color: var(--ebtb20-topbar-contact-hover-text-color);
}

/* ============================================
   TOPBAR RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 768px) {
  .ebtb20-top-bar-container {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }

  .ebtb20-social-icons {
    justify-content: center;
  }

  .ebtb20-contact-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 350px) {
  .ebtb20-contact-link span {
    display: none;
  }
}