:root {
  --site-header-height: 106px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

.site-header__spacer {
  width: 44px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.brand-logo {
  height: 78px;
  width: auto;
  display: block;
}

.brand-title {
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 2px 0 var(--ng-brand), -2px 0 #ff00ff;
  font-size: 1.6rem;
  line-height: 1;
}

.site-header__actions {
  width: 44px;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.menu-burger.ui.button {
  box-shadow: none !important;
  border: 1px solid rgba(157, 0, 255, 0.55) !important;
  background: rgba(157, 0, 255, 0.85) !important;
}
.menu-burger.ui.button:hover {
  background: rgba(157, 0, 255, 1) !important;
}
.menu-burger.ui.button:focus-visible {
  outline: 2px solid rgba(157, 0, 255, 0.7);
  outline-offset: 2px;
}

.site-main {
  padding-bottom: 40px;
}

/* Mobile Safari can glitch sticky + backdrop-filter; fixed is more reliable. */
@media (max-width: 991.98px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 200;
    transform: translateZ(0);
  }

  .site-main {
    padding-top: var(--site-header-height);
  }
}

.ng-split {
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .ng-split .ng-reservation {
    margin-top: 5rem;
  }
}

.ng-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 1.25rem 0 1rem;
}
.ng-section-title h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.08em;
  padding-left: 12px;
  border-left: 4px solid var(--ng-brand);
}

.ng-muted-link {
  color: var(--ng-brand);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 12px;
  opacity: 0.95;
}
.ng-muted-link:hover {
  color: #fff;
}

.ng-events.ui.list {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ng-radius);
  overflow: hidden;
}

.ng-event.item {
  padding: 14px 14px !important;
  gap: 12px;
  display: flex !important;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.ng-date {
  width: 56px;
  text-align: center;
  color: var(--ng-brand);
  font-weight: 900;
  line-height: 1;
}
.ng-date .day {
  font-size: 24px;
}
.ng-date .mon {
  margin-top: 3px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.ng-event .header {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}
.ng-event .description {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.ng-event__go {
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ng-event:hover .ng-event__go {
  background: var(--ng-brand);
  color: #000;
}

.ng-reservation {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--ng-radius) + 4px);
  padding: 22px;
  border: 1px solid rgba(157, 0, 255, 0.25);
  background: linear-gradient(135deg, var(--ng-brand-dark), rgba(75, 0, 130, 0.92));
  box-shadow: var(--ng-shadow);
}
.ng-reservation__icon {
  position: absolute;
  top: -22px;
  right: -14px;
  opacity: 0.12;
  font-size: 120px;
}
.ng-reservation h2 {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
}
.ng-reservation p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.ng-cards {
  margin-top: 1.75rem;
}

.ng-cards .ui.grid {
  align-items: stretch;
}

.ng-cards .ui.grid > .column {
  display: flex;
}

.ng-card {
  border-radius: var(--ng-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(157, 0, 255, 0.22);
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ng-card--tight {
  padding: 18px;
}
.ng-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.02em;
  font-weight: 900;
}
.ng-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
}
.ng-link {
  color: var(--ng-brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-top: auto;
}
.ng-link:hover {
  color: #fff;
}

.ng-contact {
  margin-top: 1.25rem;
}
.ng-contact a {
  color: rgba(255, 255, 255, 0.85);
}
.ng-contact a:hover {
  color: #fff;
}

.site-footer {
  padding: 32px 0 42px;
}
.site-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}
.site-footer__links {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__links a:hover {
  color: var(--ng-brand);
}
.site-footer__links .sep {
  margin: 0 6px;
  opacity: 0.6;
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.95);
}
.menu-overlay.is-open {
  display: flex;
}
.menu-overlay__nav {
  margin: auto;
  width: min(520px, 92vw);
  text-align: center;
}

.menu-overlay__menu.ui.menu {
  background: transparent;
  border: none;
  box-shadow: none;
}
.menu-overlay__menu .item {
  justify-content: center !important;
  font-weight: 900 !important;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 6vw, 3rem) !important;
  color: var(--ng-brand) !important;
}
.menu-overlay__menu .item:hover {
  color: #fff !important;
}

.menu-close.ui.button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent !important;
  color: var(--ng-brand) !important;
}
.menu-close.ui.button:hover {
  color: #fff !important;
}

@media (min-width: 992px) {
  .brand-title {
    font-size: 1.85rem;
  }
  .ng-section-title h2 {
    font-size: 1.6rem;
    border-left-width: 8px;
  }
}

