/* ── Site header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #111;
  box-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.site-logo { display: flex; align-items: center; }
.site-logo img { max-height: 44px; display: block; }

/* ── Hamburger button ────────────────────────────────────────────────────── */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Full-screen nav overlay ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .3s ease;
}
body.nav-open .site-nav { transform: translateX(0); }

/* Close (X) button inside overlay */
.nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-close span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.nav-close span:first-child { transform: rotate(45deg) translate(1px,  1px); }
.nav-close span:last-child  { transform: rotate(-45deg) translate(1px, -1px); }

/* Nav links */
.site-nav ul { list-style: none; margin: 0; padding: 0; text-align: center; }
.site-nav li { margin: 20px 0; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  letter-spacing: .05em;
  transition: color .15s;
}
.site-nav a:hover { color: #057efb; }

/* Push page content below fixed header */
.wrapper { padding-top: 70px; }

/* Weebly scroll-reveal effect removed: make all section content visible */
.wsite-section-effect-reveal .wsite-section-content > * { visibility: visible !important; }
