/* =========================================================
   FSC AFRICA
   GLOBAL BRAND / SITE STYLES

   This file contains:
   - Fonts
   - Global variables
   - Reset
   - Containers
   - Typography
   - Buttons
   - Accessibility
   - Reveal animations
   - Standard non-home header
   - Standard fullscreen navigation
   - Global footer
   - Responsive rules

   Homepage-specific styling remains in:
   /wwwroot/css/home.css
   ========================================================= */


/* =========================================================
   FONT FACES
   ========================================================= */

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Binaria";
    src: url("../fonts/binaria/Binaria-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Binaria Display";
    src: url("../fonts/binaria/Binaria-Display-Solid.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
    --fsc-black: #030708;
    --fsc-black-soft: #071014;
    --fsc-panel: #0b1417;
    --fsc-panel-light: #101c20;
    --fsc-white: #ffffff;
    --fsc-off-white: #e5e3df;
    --fsc-grey: #9b9f9d;
    --fsc-grey-light: #b9bcba;
    --fsc-grey-dark: #343a32;
    --fsc-gold: #b78332;
    --fsc-gold-light: #d19b43;
    --fsc-gold-dark: #79551f;
    --fsc-border: rgba(183, 131, 50, 0.5);
    --fsc-border-soft: rgba(255, 255, 255, 0.12);
    --fsc-border-faint: rgba(255, 255, 255, 0.07);
    --font-primary: "Binaria", Arial, Helvetica, sans-serif;
    --font-display: "Binaria Display", "Binaria", Arial, sans-serif;
    --container-width: 1440px;
    --header-height: 94px;
    --section-space: 100px;
    --section-space-compact: 65px;
    --transition-fast: 180ms ease;
    --transition-normal: 350ms ease;
    --transition-slow: 700ms cubic-bezier( 0.22, 1, 0.36, 1 );
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.24);
    --shadow-heavy: 0 30px 90px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--fsc-black);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient( circle at top, rgba(19, 38, 44, 0.32), transparent 35% ), var(--fsc-black);
    color: var(--fsc-white);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

    body.menu-open {
        overflow: hidden;
    }

main {
    position: relative;
    display: block;
    min-height: 50vh;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

video {
    background: var(--fsc-black);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border-radius: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure,
blockquote {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--fsc-gold);
    color: var(--fsc-black);
}


/* =========================================================
   GLOBAL SCROLLBAR
   ========================================================= */

html {
    scrollbar-color: rgba(183, 131, 50, 0.55) #020607;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #020607;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #020607;
    border-radius: 20px;
    background: rgba(183, 131, 50, 0.58);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--fsc-gold-light);
    }


/* =========================================================
   ACCESSIBLE FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--fsc-gold-light);
    outline-offset: 4px;
}


/* =========================================================
   GENERAL LAYOUT
   ========================================================= */

.site-container {
    width: min( calc(100% - 48px), var(--container-width) );
    margin-inline: auto;
}

.site-section {
    position: relative;
    padding: var(--section-space) 0;
}

.site-section--compact {
    position: relative;
    padding: var(--section-space-compact) 0;
}

.site-section--dark {
    background: var(--fsc-black);
}

.site-section--panel {
    background: var(--fsc-black-soft);
}

.site-section--border-top {
    border-top: 1px solid var(--fsc-border-soft);
}

.site-section--border-bottom {
    border-bottom: 1px solid var(--fsc-border-soft);
}


/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */

.section-heading-group {
    position: relative;
}

.section-heading {
    margin-bottom: 18px;
    color: var(--fsc-white);
    font-family: var(--font-display);
    font-size: clamp( 1.8rem, 3vw, 3rem );
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--fsc-gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
}

.section-introduction {
    max-width: 760px;
    margin: 0 auto 52px;
    color: var(--fsc-grey);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.gold-text {
    color: var(--fsc-gold-light);
}

.text-muted {
    color: var(--fsc-grey) !important;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.fsc-button {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 26px;
    overflow: hidden;
    border: 1px solid var(--fsc-gold);
    background: transparent;
    color: var(--fsc-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    isolation: isolate;
    transition: color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
}

    .fsc-button::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        background: var(--fsc-gold);
        content: "";
        transform: translateX(-102%);
        transition: transform var(--transition-normal);
    }

    .fsc-button span,
    .fsc-button svg {
        position: relative;
        z-index: 1;
    }

    .fsc-button svg {
        width: 17px;
        height: 17px;
    }

    .fsc-button:hover {
        border-color: var(--fsc-gold-light);
        color: var(--fsc-black);
        box-shadow: 0 10px 30px rgba(183, 131, 50, 0.13);
        transform: translateY(-2px);
    }

        .fsc-button:hover::before {
            transform: translateX(0);
        }

    .fsc-button:active {
        transform: translateY(0);
    }

    .fsc-button:focus-visible {
        outline: 2px solid var(--fsc-gold-light);
        outline-offset: 4px;
    }


/* SOLID BUTTON */

.fsc-button--solid {
    border-color: var(--fsc-gold);
    background: var(--fsc-gold);
    color: var(--fsc-black);
}

    .fsc-button--solid::before {
        background: var(--fsc-white);
    }


/* LIGHT BUTTON */

.fsc-button--light {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--fsc-white);
}

    .fsc-button--light::before {
        background: var(--fsc-white);
    }

    .fsc-button--light:hover {
        border-color: var(--fsc-white);
        color: var(--fsc-black);
    }


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    padding: 12px 20px;
    border: 1px solid var(--fsc-gold-light);
    background: var(--fsc-gold);
    color: var(--fsc-black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateY(-170%);
    transition: transform var(--transition-fast);
}

    .skip-link:focus {
        transform: translateY(0);
    }


/* =========================================================
   REUSABLE REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier( 0.22, 1, 0.36, 1 );
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }


.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier( 0.22, 1, 0.36, 1 );
}

    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }


.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier( 0.22, 1, 0.36, 1 );
}

    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }


/* =========================================================
   GENERIC PAGE HERO HELPERS
   Used by non-home division/general pages where needed
   ========================================================= */

.page-hero {
    position: relative;
    display: flex;
    min-height: 70svh;
    align-items: flex-end;
    overflow: hidden;
    background: var(--fsc-black);
    isolation: isolate;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

    .page-hero__media img,
    .page-hero__media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 180deg, rgba(2, 7, 9, 0.16), rgba(2, 7, 9, 0.88) );
}


/* =========================================================
   STANDARD SITE HEADER
   NON-HOMEPAGE
   ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    z-index: 2000;
    transition: height var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), backdrop-filter var(--transition-normal);
}

    .site-header.scrolled {
        position: fixed;
        height: 76px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(2, 7, 9, 0.92);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

.site-header__inner {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   STANDARD HEADER LOGO
   ========================================================= */

.site-header__logo {
    position: absolute;
    left: 50%;
    display: block;
    width: clamp( 175px, 18vw, 250px );
    transform: translateX(-50%);
    transition: opacity var(--transition-fast), transform var(--transition-normal);
    z-index: 2;
}

    .site-header__logo:hover {
        opacity: 0.88;
        transform: translateX(-50%) scale(1.025);
    }

    .site-header__logo img {
        display: block;
        width: 100%;
        height: auto;
    }


/* =========================================================
   STANDARD HEADER ACTIONS
   ========================================================= */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.site-header__contact {
    min-height: 40px;
    padding: 8px 21px;
    font-size: 0.64rem;
}


/* =========================================================
   STANDARD MENU TOGGLE
   ========================================================= */

.menu-toggle {
    position: relative;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2002;
}

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 1px;
        background: var(--fsc-white);
        transition: transform var(--transition-normal), opacity var(--transition-fast), background var(--transition-fast);
    }

    .menu-toggle:hover span {
        background: var(--fsc-gold-light);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


/* =========================================================
   STANDARD FULLSCREEN NAVIGATION
   ========================================================= */

.site-navigation {
    position: fixed;
    inset: 0;
    display: grid;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    place-items: center;
    transition: visibility var(--transition-normal), opacity var(--transition-normal);
    z-index: 2001;
}

    .site-navigation.open {
        visibility: visible;
        opacity: 1;
    }


/* BACKGROUND */

.site-navigation__background {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 80% 20%, rgba(183, 131, 50, 0.09), transparent 33% ), linear-gradient( 90deg, rgba(2, 6, 8, 0.99), rgba(5, 15, 18, 0.97) );
    transform: translateY(-100%);
    transition: transform 650ms cubic-bezier( 0.22, 1, 0.36, 1 );
}

.site-navigation.open
.site-navigation__background {
    transform: translateY(0);
}


/* CONTENT */

.site-navigation__content {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
    align-items: center;
    padding: 130px 0 80px;
    z-index: 2;
}


/* LEFT AREA */

.site-navigation__heading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 500ms ease 250ms, transform 500ms ease 250ms;
}

.site-navigation.open
.site-navigation__heading {
    opacity: 1;
    transform: translateY(0);
}

.site-navigation__mark {
    width: min( 260px, 70% );
    margin-bottom: 25px;
    opacity: 0.22;
}

.site-navigation__heading p {
    color: var(--fsc-gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}


/* LINKS */

.site-navigation__links li {
    overflow: hidden;
}

.site-navigation__links a {
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 14px 0;
    color: var(--fsc-white);
    font-family: var(--font-display);
    font-size: clamp( 1.35rem, 2.6vw, 2.7rem );
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-transform: uppercase;
    transform: translateY(115%);
    transition: color var(--transition-fast), transform 650ms cubic-bezier( 0.22, 1, 0.36, 1 );
}

.site-navigation.open
.site-navigation__links a {
    transform: translateY(0);
}

.site-navigation.open
.site-navigation__links li:nth-child(1) a {
    transition-delay: 180ms;
}

.site-navigation.open
.site-navigation__links li:nth-child(2) a {
    transition-delay: 230ms;
}

.site-navigation.open
.site-navigation__links li:nth-child(3) a {
    transition-delay: 280ms;
}

.site-navigation.open
.site-navigation__links li:nth-child(4) a {
    transition-delay: 330ms;
}

.site-navigation.open
.site-navigation__links li:nth-child(5) a {
    transition-delay: 380ms;
}

.site-navigation.open
.site-navigation__links li:nth-child(6) a {
    transition-delay: 430ms;
}

.site-navigation__links a span {
    color: var(--fsc-gold);
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

.site-navigation__links a:hover {
    color: var(--fsc-gold-light);
}


/* =========================================================
   GLOBAL FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    padding: 75px 0 25px;
    border-top: 1px solid var(--fsc-border-soft);
    background: radial-gradient( circle at 15% 0%, rgba(35, 63, 67, 0.13), transparent 30% ), #020506;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 55px;
}


/* FOOTER BRAND */

.site-footer__brand {
    max-width: 430px;
}

.site-footer__logo {
    display: block;
    width: 240px;
    margin-bottom: 25px;
}

    .site-footer__logo img {
        width: 100%;
        height: auto;
    }

.site-footer__brand p {
    margin-bottom: 0;
    color: var(--fsc-grey);
    font-size: 0.88rem;
    line-height: 1.75;
}


/* FOOTER LINKS */

.site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

    .site-footer__links h2 {
        margin-bottom: 12px;
        color: var(--fsc-gold-light);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .site-footer__links a {
        position: relative;
        color: var(--fsc-off-white);
        font-size: 0.86rem;
        transition: color var(--transition-fast), transform var(--transition-fast);
    }

        .site-footer__links a:hover {
            color: var(--fsc-gold-light);
            transform: translateX(4px);
        }


/* FOOTER BOTTOM */

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--fsc-border-soft);
}

    .site-footer__bottom p {
        margin: 0;
        color: var(--fsc-grey);
        font-size: 0.66rem;
        letter-spacing: 0.08em;
        line-height: 1.6;
        text-transform: uppercase;
    }


/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .site-navigation__content {
        gap: 65px;
    }

    .site-footer__main {
        gap: 55px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 991px) {

    :root {
        --header-height: 78px;
        --section-space: 80px;
        --section-space-compact: 55px;
    }

    .site-container {
        width: min( calc(100% - 32px), var(--container-width) );
    }


    /* STANDARD HEADER */

    .site-header {
        height: var(--header-height);
    }

        .site-header.scrolled {
            height: 72px;
        }

    .site-header__logo {
        position: static;
        width: 170px;
        transform: none;
    }

        .site-header__logo:hover {
            transform: scale(1.02);
        }


    /* STANDARD NAV */

    .site-navigation {
        place-items: start stretch;
    }

    .site-navigation__content {
        display: grid;
        min-height: 100dvh;
        grid-template-columns: 1fr;
        gap: 32px;
        align-content: center;
        padding: 120px 0 70px;
    }

    .site-navigation__heading {
        display: none;
    }

    .site-navigation__links {
        width: 100%;
    }

        .site-navigation__links a {
            font-size: clamp( 1.1rem, 5vw, 2rem );
        }


    /* FOOTER */

    .site-footer__main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --section-space: 70px;
        --section-space-compact: 48px;
    }

    .section-heading {
        font-size: clamp( 1.65rem, 7vw, 2.4rem );
        letter-spacing: 0.1em;
    }

    .section-kicker {
        font-size: 0.66rem;
    }

    .section-introduction {
        margin-bottom: 38px;
        font-size: 0.9rem;
    }


    /* FOOTER */

    .site-footer {
        padding: 60px 0 22px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 42px;
    }

    .site-footer__brand {
        max-width: 520px;
    }

    .site-footer__logo {
        width: 205px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    :root {
        --section-space: 64px;
        --section-space-compact: 42px;
    }

    .site-container {
        width: min( calc(100% - 24px), var(--container-width) );
    }


    /* TYPOGRAPHY */

    .section-heading {
        letter-spacing: 0.075em;
    }

    .section-kicker {
        letter-spacing: 0.18em;
    }


    /* BUTTONS */

    .fsc-button {
        min-height: 46px;
        padding: 10px 21px;
        font-size: 0.65rem;
    }


    /* STANDARD HEADER */

    .site-header__logo {
        width: 148px;
    }

    .site-header__contact {
        display: none;
    }

    .site-header__actions {
        gap: 10px;
    }


    /* STANDARD NAV */

    .site-navigation__content {
        padding: 100px 0 50px;
    }

    .site-navigation__links a {
        gap: 12px;
        padding: 11px 0;
    }

        .site-navigation__links a span {
            min-width: 25px;
            font-size: 0.6rem;
        }


    /* FOOTER */

    .site-footer__logo {
        width: 185px;
    }

    .site-footer__brand p {
        font-size: 0.82rem;
    }
}


/* =========================================================
   SHORT VIEWPORT
   ========================================================= */

@media (max-height: 720px) and (min-width: 768px) {

    .site-navigation__content {
        padding-top: 105px;
        padding-bottom: 45px;
    }

    .site-navigation__links a {
        padding: 9px 0;
        font-size: clamp( 1.15rem, 2.2vw, 2rem );
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .site-header,
    .home-header,
    .site-navigation,
    .home-side-menu,
    .home-menu-backdrop,
    .home-back-to-top,
    .site-footer,
    .skip-link {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    main {
        min-height: 0;
    }

    a {
        color: #000000 !important;
    }
}
