/* Fix for mobile header arrangement and color bar */

@media (max-width: 768px) {
  /* Fix the logo positioning */
  .navbar {
    padding: 15px 20px !important;
    position: relative;
    overflow: visible;
  }
  
  .navbar .container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  
  .logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: auto;
  }
  
  .logo-text {
    font-size: 28px;
    position: relative;
    right: auto;
    margin: 0;
    padding: 0;
  }
  
  /* Remove the horizontal color bar at the top */
  body::before {
    display: none !important;
  }
  
  /* Remove any potential color stripes at the top */
  .navbar::before,
  .hero::before,
  header::before,
  body > div:first-child {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
  }
}
