.header {
	background-color: #fff;
	padding: 2rem 0 4rem;
  container: header / inline-size;
	& .wrapped {
    position: relative;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
    @container header (width < 1000px) {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
	}
	& .logo {
		width: 100%;
		max-width: 400px;
		transform: translateX(-12.5%);
		@media (max-width: 1000px) {
			transform: none;
			display: block;
			position: relative;
			left: -5%;
			margin: 0 auto;
		}
	}
}

.menu {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
	gap: 1rem;
  margin-bottom: 1%;
	& a {
    white-space: nowrap;
		text-decoration: none;
    display: block;
		background-color: var(--green);
		color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    &:hover {
      background-color: var(--green);
    }
	}
  & .section-workshops a {
    background-color: var(--blue);
  }
  & .section-coaching a {
    background-color: var(--yellow);
    color: #000;
  }
  & .section-judith-kestler a {
    background-color: var(--purple);
  }
	& li {
		&.active {
			color: var(--green);
		}
	}
}

.minicart {
  position: absolute;
  top: 0;
  right: 5%;

  & a {
    text-decoration: none;
    display: block;
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 4rem;
  font-weight: 600;
    height: 4rem;
    background-color: var(--green);
    color: #fff;
    text-align: center;
    line-height: 2rem;
    border-radius: 50%;

  }
  & svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: #fff;
  }
}
