/* Start Custom Fonts CSS */
@font-face {
  font-family: 'Borna Regular';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url('/wp-content/uploads/2025/07/Borna-Regular.eot');
  src: url('/wp-content/uploads/2025/07/Borna-Regular.eot?#iefix') format('embedded-opentype'), url('/wp-content/uploads/2025/07/Borna-Regular.woff2') format('woff2'), url('/wp-content/uploads/2025/07/Borna-Regular.woff') format('woff'), url('/wp-content/uploads/2025/07/Borna-Regular.svg#BornaRegular') format('svg');
}

/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */
@font-face {
  font-family: 'Borna Medium';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url('/wp-content/uploads/2025/07/borna-medium-webfont.eot');
  src: url('/wp-content/uploads/2025/07/borna-medium-webfont.eot?#iefix') format('embedded-opentype'), url('/wp-content/uploads/2025/07/borna-medium-webfont.woff2') format('woff2'), url('/wp-content/uploads/2025/07/borna-medium-webfont.woff') format('woff'), url('/wp-content/uploads/2025/07/borna-medium-webfont.ttf') format('truetype');
}

/* Basic reset for header widget */
.birch-header {
    width: 100%;
    background: transparent;
    color: #111;
    box-sizing: border-box;
  }
  
  .birch-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .light-nav .birch-header-inner{
    max-width:100%;
  }
  
  /* Logo */
  .birch-logo-wrap {
    flex: 0 0 auto;
  }
  
  .birch-logo-link img {
    display: block;
    height: auto;
  }
  
  /* Desktop nav */
  .birch-header-nav {
    display: block;
    flex: 1 1 auto;
  }
  
  .birch-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
  }
  
  .birch-menu li {
    margin: 0;
  }
  
  .birch-menu li a {
    display: inline-block;
    padding: 6px 0;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-family:"Borna Regular", Sans-serif;
    text-transform:uppercase;
  }

  .blogCard__title{
    font-weight: 500;
    font-family:"Borna Regular", Sans-serif;
  }

  .light-nav .birch-menu li a {
    color:#FFFFFF !important;
  }
  
  /* Hamburger - hidden on desktop */
  .birch-hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  /* Hamburger inner lines */
  .birch-hamburger-box {
    width: 28px;
    height: 18px;
    display: inline-block;
    position: relative;
  }
  
  .birch-hamburger-inner,
  .birch-hamburger-inner::before,
  .birch-hamburger-inner::after {
    width: 28px;
    height: 2px;
    background-color: #111;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .light-nav-mobile .birch-hamburger-inner,
  .light-nav-mobile  .birch-hamburger-inner::before,
  .light-nav-mobile  .birch-hamburger-inner::after {
    background-color: #FFFFFF;
  }
  
  .birch-hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .birch-hamburger-inner::before {
    content: "";
    top: -8px;
  }
  
  .birch-hamburger-inner::after {
    content: "";
    top: 8px;
  }
  
  /* Header base */
  .birch-header {
    position: relative; /* ensures it creates its own stacking context */
    z-index: 9999;      /* strong enough to sit above everything */
  }
  
  /* Mobile drawer overlayed UNDER header */
  .birch-mobile-drawer {
    position: absolute;
    top: 100%; /* directly below the header */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease-in-out;
    z-index: 9998;
  }
  
  .birch-mobile-drawer.open {
    max-height: 400px; /* you can increase this if menu is tall */
  }
  
  .birch-mobile-drawer-inner {
    padding: 20px;
  }
  
  .birch-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .birch-menu-mobile li {
    margin-bottom: 14px;
  }
  
  .birch-menu-mobile li a {
    color: #000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    font-family:"Borna Regular", Sans-serif;
    text-transform:uppercase;
    display:block;
  }
  
  /* Hamburger transitions (unchanged) */
  .birch-hamburger.active .birch-hamburger-inner {
    transform: rotate(45deg);
  }
  .birch-hamburger.active .birch-hamburger-inner::before {
    transform: rotate(90deg) translateX(0);
    top: 0;
  }
  .birch-hamburger.active .birch-hamburger-inner::after {
    transform: rotate(90deg);
    top: 0;
    opacity: 0;
  }
  
  
  /* Sticky header */
  .birch-header-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  
  /* Responsive breakpoints */
  @media (max-width: 1024px) {
    .birch-menu { gap: 18px; }
  }
  
  @media (max-width: 880px) {
    /* Hide desktop nav and show hamburger */
    .birch-header-nav { display: none; }
    .birch-hamburger { display: block; }
  }
  