   /* Reset & base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      height: 100%;
      font-family: serif, Georgia, 'Times New Roman', Times, serif;
    }

    /* Full-width background image */
    body {
      background: url('/assets/images/_SJ_9241.png') no-repeat center center fixed;
      background-size: cover;
      overflow-x: hidden;
      color: white;
    }

    /* Hamburger menu */
    .menu-toggle {
      position: fixed;
      top: 20px;
      left: 20px;
      font-size: 32px;
      cursor: pointer;
      z-index: 1001;
      color: white;
    }

    /* Overlay navigation */
    nav {
      position: fixed;
      top: 0;
      left: 25px;
      height: 100%;
      width: 250px;
      background-color: rgba(0, 0, 0, 0);
      transform: translateX(-100%);
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      padding: 40px 20px;
    }

    nav.active {
      transform: translateX(0);
      opacity: 1;
    }

    nav h2 {
      margin-bottom: 10px;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 12px 0;
      font-size: 16px;
    }

    nav a:hover {
      text-decoration: none;
    }

    /* Main content */
    main {
      padding: 60px 20px 20px 20px;
      min-height: 100vh;
    }

    main h1 {
      font-size: 48px;
      margin-bottom: 20px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    }

    main p {
      font-size: 18px;
      max-width: 600px;
      line-height: 1.6;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }

    /* Close nav on click outside */
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none;
      background: rgba(0,0,0,0.4);
      z-index: 900;
    }

    #overlay.active {
      display: block;
    }

    /* Desktop: nav always visible */
    @media (min-width: 769px) {
      nav {
        transform: translateX(0);
        opacity: 1;
      }
      .menu-toggle, #overlay {
        display: none;
      }
      main {
        padding-left: 270px;
      }
    }

@font-face {
    font-family: 'sablemedium';
    src: url('../assets/fonts/sable-webfont.woff2') format('woff2'),
         url('../assets/fonts/sable-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'sablemedium', Arial, sans-serif;
    font-weight: normal;
}