header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 32px;
  height: 72px;
  border-bottom: 3px solid var(--secondary);
  transition: height 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  position: sticky !important;
  top: 0;
  z-index: 100 !important;
}

header.background {
  background: var(--primary);
  color: #ffffff;
}

header.shrunk {
  height: 56px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

header a {
  color: #ffffff;
  text-decoration: none;
}

.home {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.logo {
  height: 50px;
  width: auto;
  max-width: none;
  transition: height 0.3s ease;
}

.logo > * {
  width: auto;
  height: 100%;
  max-height: 50px;
}

.title-text {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
  font-family: var(--title);
  text-align: left;
}

.title {
  font-size: var(--large);
  font-weight: var(--bold);
  letter-spacing: 0.5px;
}

.subtitle {
  opacity: 0.75;
  font-weight: var(--thin);
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  margin: 0;
  color: #ffffff;
  appearance: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--rounded);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle:after {
  content: "\f0c9";
  position: absolute;
  left: 50%;
  top: 50%;
  color: inherit;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.nav-toggle:checked:after {
  content: "\f00d";
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: var(--semi-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav > a {
  padding: 8px 14px;
  border-radius: var(--rounded);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

nav > a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  header:not([data-big]) {
    flex-wrap: wrap;
    height: auto;
    min-height: 56px;
    padding: 12px 20px;
  }
  header:not([data-big]) .nav-toggle {
    display: flex;
  }
  header:not([data-big]) .nav-toggle:not(:checked) + nav {
    display: none;
  }
  header:not([data-big]) nav {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
  }
  header:not([data-big]) nav > a {
    padding: 12px 16px;
    border-radius: var(--rounded);
    text-align: left;
  }
  header:not([data-big]) nav > a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

header[data-big] {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  padding: 80px 24px 30px;
  border-bottom: 4px solid var(--secondary);
  top: unset;
}
header[data-big] .home {
  flex-direction: column;
  flex-grow: 0;
}
header[data-big] .logo {
  height: 220px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
header[data-big] .logo > * {
  max-height: 220px;
}
header[data-big] .title-text {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
header[data-big] .title {
  font-size: var(--xxl);
}
header[data-big] .subtitle {
  font-size: var(--large);
}
@media (max-width: 768px) {
  header[data-big] {
    padding: 40px 20px 24px;
  }
  header[data-big] .logo {
    height: 140px;
  }
  header[data-big] .logo > * {
    max-height: 140px;
  }
}

/*# sourceMappingURL=header.css.map */