/* ============ FONTS ============ */

* {
    font-family: "new-order", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-semibold {
    font-weight: 500;

}

.font-bold {
    font-weight: 600;
}

/* ============ LINKS ============ */

.link-header {
    color: #0f2c5c;
    text-decoration: none;
    background-image: linear-gradient(#0f2c5c, #0f2c5c);
    background-size: 0% 0.1em;
    background-position-y: 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;
}

.link-header:hover,
.link-header:focus,
.link-header:active {
    background-size: 100% 0.1em;
    background-position-x: 0%;
}

/* ============ COLORS ============ */

.color-orange {
    color: #ea5723;
}

.bg-orange {
    background-color: #ea5723;
}

.color-lightblue {
    color: #00a8eb;
}

.bg-lightblue {
    background-color: #00a8eb;
}

.color-darkblue {
    color: #0f2c5c;
}

.bg-darkblue {
    background-color: #0f2c5c;
}

/* ============ BUTTONS ============ */

.button-orange {
    color: #ffffff;
    background-color: #ea5723;
    border: 1px solid #ea5723;
    padding: 0.5em 2em;
    transition: background-color 0.2s ease-in-out;
}

.button-orange:hover {
    background-color: #ffffff;
    color: #ea5723;
}

.button-lightblue {
    color: #ffffff;
    background-color: #00a8eb;
    border: 1px solid #00a8eb;
    padding: 0.5em 2em;
    transition: background-color 0.2s ease-in-out;
}

.button-lightblue:hover {
    background-color: #ffffff;
    color: #00a8eb;
}

.button-darkblue {
    color: #ffffff;
    background-color: #0f2c5c;
    border: 1px solid #0f2c5c;
    padding: 0.5em 2em;
    transition: background-color 0.2s ease-in-out;
}

.button-darkblue:hover {
    background-color: #ffffff;
    color: #0f2c5c;
}

.button-white {
    color: #0f2c5c;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5em 2em;
    transition: background-color 0.2s ease-in-out;
}

.button-white:hover {
    background-color: #0f2c5c;
    color: #ffffff;
}

/* ============ BACKGROUNDS ============ */

.parralax-hero {
    background-image: url("http://test.maxkolor.pl/wp-content/uploads/2025/01/printing-machine-office-scaled.webp");
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-size 0.5s ease;
}

/* ============ BACKGROUNDS ============ */

.fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}