/* =========================================================
   HEADER
========================================================= */

.pk-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter:
        blur(16px)
        saturate(120%);

    -webkit-backdrop-filter:
        blur(16px)
        saturate(120%);

    background:
        linear-gradient(
            90deg,
            rgba(242, 234, 220, 0.90) 0%,
            rgba(236, 233, 225, 0.86) 45%,
            rgba(223, 231, 238, 0.84) 100%
        );

    border-bottom:
        1px solid rgba(60, 48, 36, 0.08);

    box-shadow:
        0 1px 0 rgba(255,255,255,0.35) inset;
}


/* =========================================================
   INNER CONTAINER
========================================================= */

.pk-header-inner {

    position: relative;

    width:
        calc(100% - 20px);

    padding-inline: 24px;

    margin-inline: auto;

    min-height: 86px;

    display: flex;

    align-items: center;
}

/* =========================================================
   LOGO
========================================================= */

.pk-logo {

    justify-self: start;
    padding-left: 10px;
    text-align: left;
    margin-left: -20px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.5rem;

    font-weight: 600;

    letter-spacing: -0.035em;

    color: #3b3128;

    text-decoration: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.pk-logo:hover {

    opacity: 0.82;
}


/* =========================================================
   NAVIGATION
========================================================= */

.pk-nav {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 34px;
}
.pk-header-left {

    display: flex;

    align-items: center;
}

.pk-nav a {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #5f5246;

    font-size: 1rem;

    text-decoration: none;

    letter-spacing: 0.01em;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}


.pk-nav a:hover {

    opacity: 0.72;

    color: #473b31;
}