/* =============================================
   IBM Plex Font Family - Larger Body Text
   ============================================= */

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

/* ====================== HEADINGS ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Serif', Georgia, serif !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

h1 { font-size: 2.9rem !important; }
h2 { font-size: 2.35rem !important; }
h3 { font-size: 1.9rem !important; }
h4 { font-size: 1.6rem !important; }

/* ====================== BODY TEXT - INCREASED SIZE ====================== */
body, p, li, span, div, a:not(.btn), button:not(.btn), input, textarea, select, .text-muted {
    font-family: 'IBM Plex Sans', system-ui, sans-serif !important;
    font-size: 1.1rem !important;        /* Increased from default */
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

/* Make strong/bold text stand out nicely */
strong, b, .fw-bold {
    font-weight: 600 !important;
}

/* Slightly larger paragraph text */
p {
    font-size: 1.12rem !important;
    margin-bottom: 1.2em !important;
}

/* Keep buttons and headings crisp */
.btn, .button {
    font-size: 1.05rem !important;
}

.navigation__checkbox {
    display: none;
}

.navigation__button {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    height: 5rem;
    width: 5rem;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1030;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

@media screen  and (min-width: 768px) {
    .navigation__button {
        top: 4rem;
        right: 4rem;
        height: 7rem;
        width: 7rem;
    }
}

.navigation__background {
    position: fixed;
    top: 2rem;
    right: 2rem;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background: #002a3a;
    background-size: cover;
    background-position: center;
    z-index: 100;
    transition: all 800ms cubic-bezier(0.86, 0, 0.07, 1);
}

@media screen and (min-width: 768px) {
    .navigation__background {
        top: 4.5rem;
        right: 4.5rem;
        height: 6rem;
        width: 6rem;
    }
}

.navigation__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 0;
    width: 0;
    visibility: hidden;
    z-index: 200;
    transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
    /*@include center;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    list-style: none;
}

.navigation__item {
    margin: 1rem;
}

.navigation__link:link,
.navigation__link:visited {
    display: inline-block;
    padding: 1rem 2rem;
    text-transform: uppercase;
    color: #f4f4f4;
    font-size: 2.4rem;
    text-decoration: none;
    transition: all .2s;
}

@media(min-width: 768px) {
    .navigation__link:link,
    .navigation__link:visited {
        font-size: 2.8rem;
    }
}

.navigation__link span {
    margin-right: 1.5rem;
    display: inline-block;
}

.navigation__link:hover {
    color: #a68234;
    transform: scale(1.1);
}

.navigation__checkbox:checked~.navigation__background {
    transform: scale(80)
}

.navigation__checkbox:checked~.navigation__nav {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.navigation__icon {

    position: relative;
    margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
    .navigation__icon {
        margin-top: 3.5rem;
    }
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
    display: inline-block;
    width: 2.2rem;
    height: 2px;
    background-color: #4A676A;
}

@media (min-width: 768px) {
    .navigation__icon,
    .navigation__icon::before,
    .navigation__icon::after {
        width: 3rem;
    }
}

.navigation__icon::before,
.navigation__icon::after {
    content: '';
    position: absolute;
    left: 0;
    transition: all 200ms;
}

.navigation__icon::before {
    top: -.8rem;
}

.navigation__icon::after {
    top: .8rem;
}

.navigation__button:hover .navigation__icon::before {
    top: -1rem;
}

.navigation__button:hover .navigation__icon::after {
    top: 1rem;
}

.navigation__checkbox:checked+.navigation__button .navigation__icon {
    background-color: transparent;
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg);
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg);
}

div.theme-atomik footer {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

div.theme-atomik footer a {
    text-decoration: none;
    color: #ffffff
}

div.theme-atomik footer a:hover {
    color: #a68234
}

div.theme-atomik footer a:hover svg {
    fill: #a68234
}

.quick-links li {
        margin-bottom: 12px;
    }