    @font-face {
      font-family: 'Luperca';
      src: url('Font/luperca/Luperca-12-24Caption.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }
    body {
      margin: 0;
      font-family: 'Luperca';
      background: #b08254;
      color: #333;
    }
    header {
      background: black;
      color: #c79818;
      padding: 2rem 1rem;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
      height: auto;
      width: auto;
    }
    header p {
      margin: 0.5rem 0 0;
      font-size: 1rem;
    }
    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 1.5rem;
    }
    a:link {
      color: #c79818;
      text-decoration: bold;
    }
    a:visited {
      color: purple;
    }
    .siteheader {
      display: flex;
      flex-basis: 120px;
      align-items: right;
      justify-content: right;
      position: sticky;
      height: auto;
    }
    .logo {
      position: absolute;
      left: 1rem;
      top: 0;
    }
    .siteheader p {
      margin: 0;
      text-align: center;
    }
    .siteheadertabs {
      background-image: radial-gradient(circle, black 50%, rgb(255, 172, 47) 50%);
      text-emphasis-color: #b08254;
      display: flex;
      justify-content: center;
      position: relative;

    }
    .siteheadertabs a[target="_self"] {
      color: #c79818;
      background-color: black;
      text-decoration: none;
      font-size: 1.25rem;
      padding: 0.5rem 1rem;
      border: 0.25rem solid #b08254;
      border-radius: 1rem;
    }
    .flavor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .flavor-card {
      background: #fff;
      padding: 1.25rem;
      border: 1px solid #d4c3b1;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }
    .flavor-card h2 {
      margin-top: 0;
      font-size: 1.75rem;
      color: #b08254;
    }
    .flavor-card p {
      margin: 0.5rem 0 0;
      font-size: 1.25rem;
      line-height: 1.5;
    }
    .order-section {
      background: #fff;
      border: 1px solid #d4c3b1;
      border-radius: 10px;
      padding: 1.5rem;
    }
    .order-section h2 {
      margin-top: 0;
      color: #b08254;
    }
    .order-section form {
      display: grid;
      gap: 1rem;
    }
    .order-section label {
      display: block;
      font-weight: bold;
      margin-bottom: 0.25rem;
    }
    .order-section select,
    .order-section input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #b8a390;
      border-radius: 6px;
      font-size: 1rem;
    }
    .order-section button {
      padding: 0.9rem 1.25rem;
      border: none;
      border-radius: 6px;
      background: #b08254;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
    }
    .order-section button:hover {
      background: #c79818;
    }
    footer {
      font-family: 'Times New Roman', Times, serif;
      text-align: center;
      padding: 1rem 0 2rem;
      color: #666;
      font-size: 0.95rem;
    }
    .navbar ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #333;
    }
    .navbar ul li{
        float: left;
    }
    .navbar ul li a{
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
    .navbar ul li a:hover{
        background-color: #111;
    }