/* header.css — базові стилі для логотипу, хедера та загального хедер-контейнера */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 20;
  width: 100%;
  box-sizing: border-box;
}

header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: inherit;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.logo img {
  display: block;
  max-height: 100%;
  height: auto;
}
