
/* Shared site chrome: header, navigation, footer and accessibility helpers. */
:root {
  --common-ink: #1d2722;
  --common-green: #395c47;
  --common-paper: #fffdf9;
  --common-line: rgba(29, 39, 34, 0.13);
}

.skip {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--common-ink);
}

.skip:focus {
  top: 18px;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled,
body:not(#top) .header {
  background: rgba(22, 30, 26, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.15em;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  text-decoration: none;
}

.links a:hover,
.links a.active {
  color: #ffffff;
}

.links a.active {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 2px;
}

.links .horeca-nav {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.toggle span,
.toggle span::before,
.toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.toggle span::before {
  transform: translate(-50%, -7px);
}

.toggle span::after {
  transform: translate(-50%, 5px);
}

.toggle.on span {
  background: transparent;
}

.toggle.on span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.toggle.on span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  margin-top: 72px;
  padding: 45px 0 55px;
  background: #17211d;
  color: #e8ece9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-row .brand-mark {
  width: 34px;
}

.footer-brand {
  font: 2rem Georgia, "Times New Roman", serif;
}

.footer p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.67);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 17px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(20, 29, 24, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  }

  .links.open {
    display: flex;
  }

  .links a {
    padding: 11px;
  }

  .toggle {
    display: block;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 76px;
  }

  .brand-mark {
    width: 36px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* Info dropdown navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
  color: #ffffff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 250px;
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(20, 29, 24, 0.98);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.links .nav-dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  white-space: nowrap;
}

.links .nav-dropdown-menu a:hover,
.links .nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

@media (max-width: 840px) {
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 4px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }
}
