@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Playwrite+AU+QLD:wght@100..400&display=swap');


.c {
    font-family: 'Libertinus Serif', sans-serif;
}

:root {
    --accent-border: rgba(53, 53, 53, 0.15);
}

body {
    font-family: 'Playwrite AU QLD', sans-serif;
    font-weight: 700;
}

/* tiny scoped CSS for hamburger transforms (clean and simple) */
.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform .25s ease, opacity .18s ease;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(8px);
}

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* mobile menu height animation */
.menu-links {
    transition: max-height .28s ease;
}






/* -------------------------
   Site-wide Fancy Scrollbar
   Paste this into your main CSS
   ------------------------- */
:root {
    --sb-bg: #ffffff;
    /* track (background) */
    --sb-thumb: #111111;
    /* thumb (draggable) */
    --sb-thumb-hover: #000000;
    --sb-radius: 12px;
    --sb-size: 12px;
    /* thickness */
    --sb-min-size: 36px;
    /* minimum thumb length for usability */
}

/* Apply to the whole page */
html,
body {
    /* keep stable gutter so layout doesn't jump when scrollbar appears/disappears */
    scrollbar-gutter: stable both-edges;
}

/* -----------------------
   WebKit (Chrome, Edge, Safari)
   ----------------------- */
html::-webkit-scrollbar {
    width: var(--sb-size);
    height: var(--sb-size);
}

html::-webkit-scrollbar-track {
    background: var(--sb-bg);
    border-radius: var(--sb-radius);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sb-thumb) 0%, var(--sb-thumb-hover) 100%);
    border-radius: var(--sb-radius);
    border: 3px solid transparent;
    /* creates padding so track peeks */
    background-clip: padding-box;
    min-height: var(--sb-min-size);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
    transition: box-shadow .18s ease, transform .06s ease;
}

html::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
}

html::-webkit-scrollbar-thumb:active {
    transform: translateZ(0);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
}

/* subtle decorative strip inside the track */
html::-webkit-scrollbar-track:before {
    content: "";
    display: block;
    height: 100%;
    margin: 0 2px;
    border-radius: calc(var(--sb-radius) - 2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
}

/* -----------------------
   Firefox
   ----------------------- */
/* 'scrollbar-width' can be auto | thin | none */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--sb-thumb) var(--sb-bg);
    /* thumb then track */
}

/* -----------------------
   Accessibility
   ----------------------- */
@media (prefers-reduced-motion: reduce) {

    html::-webkit-scrollbar-thumb,
    html::-webkit-scrollbar-thumb:hover,
    html::-webkit-scrollbar-thumb:active {
        transition: none !important;
    }
}

/* -----------------------
   Optional: dark-theme override example
   (uncomment and apply `data-theme="dark"` to <html> if you want)
   ----------------------- */
/*
:root[data-theme="dark"]{
  --sb-bg: #000000;
  --sb-thumb: #ffffff;
  --sb-thumb-hover: #f2f2f2;
}
*/