@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&display=swap');

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/fontsh/Cinzel/static/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPNeueMontreal-Extrabold';
  src: url('/fonts/PPNeueMontreal-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   SITE FLOATING HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: transparent;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eeeeee;
}

.header-container {
  max-width: auto;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #36350b;
}

.header-container .logo {
  font-family: 'Ballet', cursive;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #111111;
}

.nav-menu a {
  font-family: 'Cinzel', serif;
  text-decoration: none;
  color: #555555;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #111111;
}

/* Screen reader helper */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Extra safety: hide any remaining mobile menu toggle if it still appears due to caching or external scripts */
.menu-toggle,
button.menu-toggle,
.menu-icon,
.button-menu { display: none !important; visibility: hidden !important; width: 0 !important; height: 0 !important; }

/* Also guard against pseudo-elements showing a hamburger */
.menu-toggle::before,
.menu-toggle::after,
.menu-icon::before,
.menu-icon::after { display: none !important; content: none !important; }

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    align-items: center;
    padding: 0.9rem 1rem;
  }

  .header-container .logo {
    order: 0;
    margin-bottom: 0.25rem;
  }

  /* Show nav inline and centered on small screens to match provided design */
  .nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
    width: auto;
    margin-top: 0;
    background: transparent;
    padding: 0;
  }

  .nav-menu a {
    display: inline-block;
    padding: 0.25rem 0.25rem;
    margin: 0;
    border-bottom: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: #5a4848;
  }
}
