/* header-styles.css */
/* Custom CSS to replace logo with text */
.header-title-logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-title-logo img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.header-title-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
  text-decoration: none;
}
.header-title-logo a:before {
  content: '\f7d8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9em;
  display: inline-block;
  color: #0055AA;
  line-height: 1;
}
.header-title-logo a:after {
  display: none; /* Disable the pseudo-element text */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .header-title-logo a:after {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .header-title-logo a:after {
    font-size: 36px;
  }
}
