/* ============================================================================
   LOGO BAR COMPONENT

   Centered logo bar without navigation. Used on focused pages like
   landing pages where the full header/nav would be a distraction.

   Required HTML Structure:

   <div class="logo-bar">
     <div class="container">
       <div class="logo-bar__row">
         <a href="/" aria-label="Home">
           <img src="images/logo/eb-logo-main.png" alt="Logo" />
         </a>
         <!-- Optional: additional elements like theme toggle -->
       </div>
     </div>
   </div>

   Modifiers:
   - (none currently)

   Accessibility:
   - Logo link has aria-label for screen readers
   ============================================================================ */

.logo-bar {
  padding: var(--spacing-sm) 0;
  text-align: center;
}

.logo-bar img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
