/* Top Bar Styles - Exact Parity with Requested Image */
.top-bar {
  background: #111111 !important;
  color: #ffffff !important;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Titillium Web', sans-serif !important;
  position: relative;
  z-index: 9999;
  width: 100%;
}

.top-bar-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar-info {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
}

.top-bar-info i {
  color: #d81f26 !important;
  font-size: 14px;
}

.top-bar-info a {
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-bar-info a:hover {
  color: #d81f26 !important;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-social a {
  color: #ffffff !important;
  opacity: 0.7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-bar-social a:hover {
  color: #d81f26 !important;
  opacity: 1;
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
}
