/* Shared base only. Page-specific visual rules are added during the HTML migration. */
:root {
    --funtastic-blue: #0877bd;
    --funtastic-yellow: #ffc850;
    --funtastic-ink: #062544;
    --funtastic-surface: #f7f5ef;
}

.funtastic-site,
.funtastic-site *,
.funtastic-site *::before,
.funtastic-site *::after {
    box-sizing: border-box;
}

.funtastic-site {
    min-height: 100vh;
    margin: 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: var(--funtastic-ink);
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.funtastic-site .footerSocial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 4px;
}

.funtastic-site .footerSocial a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.funtastic-site .footerSocial a:hover {
    border-color: rgba(255, 200, 80, 0.72);
    color: var(--funtastic-yellow);
}

.funtastic-site .footerSocial a:focus-visible {
    outline: 3px solid var(--funtastic-yellow);
    outline-offset: 3px;
}

.funtastic-site .footerSocial svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: currentColor;
}

.funtastic-site .footerSocial rect,
.funtastic-site .footerSocial circle:not(.instagramDot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.funtastic-site .footerSocial .instagramDot {
    fill: currentColor;
    stroke: none;
}

body.funtastic-document .gt_switcher_wrapper {
    display: none !important;
}

@media (max-width: 720px) {
    .funtastic-site .footerSocial {
        justify-content: flex-start;
    }
}
