/* Logo switching styles */
.logo__white {
  display: block; /* Initially visible when at top of page */
}

.logo__dark {
  display: none; /* Initially hidden when at top of page */
}

/* When header becomes sticky, these styles will be toggled via JavaScript */
.header__logo {
  transition: all 0.3s ease; /* Smooth transition between logo changes */
}
