/**
 * Common Styles
 * 
 * Shared styles used across multiple pages:
 * - Header/navigation styles
 * - Logo styles
 * - Base reset styles
 */

/* ============================================================================
   Reset and Base Styles
   ============================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================================================
   Header Styles
   ============================================================================ */

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 50;
  transition: all 0.3s ease;
  box-shadow: none;
}

.header-nav.scrolled {
  background-color: #faf8f0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  background-color: transparent;
}

.logo-img {
  max-width: none;
  width: auto;
  height: 32px;
  object-fit: contain;
  background: transparent;
  background-color: transparent;
  display: block;
}

@media (min-width: 768px) {
  .logo-img {
    height: 48px;
  }
}

