@font-face {
    font-family: "Aporrheton";
    src: url("Aporrheton_font.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  
  /* Top navigation menu */
  .top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #ffffff;
    padding: 1rem 0;
    text-align: center;
    z-index: 1000;
  }
  
  .top-menu a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1rem;
    text-transform: lowercase;
    transition: opacity 0.3s;
  }
  
  .top-menu a:hover {
    opacity: 0.7;
  }
  
  /* Main heading uses your custom font */
  h1 {
    font-family: "Aporrheton", sans-serif !important;
    color: #ffffff;
    font-weight: normal;
    font-style: normal;
    font-size: 15rem; /* Change this value to adjust size */
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }
  
  /* Reduce space above hero header - account for fixed menu */
  .hero {
    margin-top: 60px; /* Space for fixed menu */
    padding-top: 1rem; /* Adjust this to control top spacing */
  }
  
  /* Also apply to h1 inside hero header */
  .hero h1 {
    font-family: "Aporrheton", sans-serif !important;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
  }
