/* Force the header to scroll normally */
#site-header {
    position: fixed;
    height: auto;
    min-height: 80px;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease-in-out;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  }
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  #site-header.shrink {
    padding: 0.5rem 0;
  }
  
  #site-header .logo img {
    height: 48px;
    transition: height 0.3s ease-in-out;
  }
  
  #site-header.shrink .logo img {
    height: 32px;
  }
  
  /* Align items side by side */
  #site-header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
    width: 100%;
  }
 /* Hamburger button */
 #nav-toggle {
    display: none;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 1.5rem;
    padding: 0.25rem;
    margin: 0;
    cursor: pointer;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
  }
  #nav-toggle:focus-visible {
    outline: 2px dashed #666;
    outline-offset: 4px;
  }

  
  /* Navigation default */
  #nav {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center;
  }
  
  #nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    #nav-toggle {
      display: block;
    }
  
    #nav {
      display: none;
      width: 100%;
    }
  
    #nav.open {
      display: block;
      margin-top: 1rem;
      padding-bottom: 1rem;
    }
  
    #nav ul {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
  
    #site-header .inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  
  /* Logo */
  body #site-header .logo img {
    height: 48px;
    width: auto;
  }
  
  /* Navigation */
  body #site-header nav#nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  
  body #site-header nav#nav ul li {
    display: flex;
    align-items: center;
  }
  
  body #site-header nav#nav ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #222;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  body #site-header nav#nav ul li a:hover {
    color: #e91e63;
  }
  
  /* Fix for mobile content being cut off by fixed header */
  body {
    padding-top: 80px; /* Match the min-height of the header */
  }
  
  @media (max-width: 768px) {
    body {
      padding-top: 80px; /* Base padding for mobile */
    }
    
    /* When menu is open, add more padding to accommodate the expanded menu */
    body.menu-open {
      padding-top: 200px; /* Adjust this value based on your menu height */
    }
  }
  
  

  @font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  * {
    font-family: 'Inter', sans-serif;
  }