@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto');

:root {
    --menuHeight: 90px;
}

html {
    scroll-padding-top: calc(1rem + var(--menuHeight));
    /* To adjust anchro navigation to scroll with fixed menu height */
}

body {
    margin: 0;
    margin-top: var(--menuHeight);
    font-family: 'Roboto';
}

header {
    z-index: 1000;
    box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.1);
    min-height: var(--menuHeight);
}

sectionSpliter {
    height: 100px;
    display: block;
}

input[type="checkbox"] {
    accent-color: #E86825;
}

input[type="checkbox"]:checked+label {
    text-decoration: line-through;
    color: gray;
}

label {
    display: inline-block;
    cursor: pointer;
}

.sopka-text-primary-orange {
    color: #E86825;
}

.sopka-text-secondary-orange {
    color: #F59B20;
}

.sopka-bg-primary-orange {
    background: #E86825;
}

/* All sopka texts should be in Nerko font, DF Approved */
.sopka-text-font {
    font-family: 'Nerko One', cursive;
}

/* All heading 1 should be in Nerko font, DF Approved */
h1,
h2,
h3 {
    font-family: 'Nerko One', cursive;
}

/* This is for the nav separator in main menu, DF Approved */
.nav-separator {
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 3px;
    width: 2px;
    background-color: black;
    height: 2rem;
    transform: translateX(-100%);

}

/* Sopka buttons primary secondary, DF Approved */

.sopka-button {
    height: 48px;
    border-radius: 12px;
    padding: 0px 2rem;

    font-family: 'Nerko One';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    /* identical to box height */
    text-align: center;
    border: none;
}

.sopka-button.primary-button {
    background: #E86825;
    color: #FFFFFF;
}

.sopka-button.primary-button:hover {
    background: #F59B20;
}

.sopka-button.secondary-button {
    background: #FFFFFF;
    color: #E89825;
    border: 1px solid #E86825;
}

.sopka-button.secondary-button:hover {
    color: #F59B20;
    border: 1px solid #F59B20;
}

/* END OF Sopka button primary secondary */

/* Sopka inputs, DF Approved */

input {
    padding: 4px;
    text-align: end;
    border: none;
    background: #EDEDED;
    border-radius: 4px;
}

input:hover {
    background: #DADADA;
}

/* END OF Sopka inputs */

.footer-link {
    font-family: 'Nerko One', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Icon bar with icon items, hiding separators on smaller displays for MD and LG, DF Approved */

#icons-bar .item-icon img {
    width: 300px;
}

#icons-bar .item-icon {
    text-decoration: none;
    border: 10px solid rgb(255, 255, 255);
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
}

#icons-bar .item-icon:hover {
    background-color: #EDEDED;
}

#icons-bar .item-icon:after {

    content: "";
    width: 2px;
    height: 100px;
    background: black;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(10px);

    right: 0;
    z-index: 1;
}

#icons-bar .item-icon:last-child::after {

    display: none;
}

/* END OF Icon bar with icon items, hiding separators on smaller displays for MD and LG */

/* Photosection image scaling, DF Approved */

.custom-thumbnail-img {
    transition: transform 0.3s ease-in-out;
    border: none !important;
    padding: 0;
    border-radius: 1rem;
}

.custom-thumbnail-img:hover {
    transform: scale(1.3);
    z-index: 1 !important;
}

/* END OF Photosection image scaling */

/* All media breakpoints ala bootstrap */
@media only screen and (max-width: 768px) {

    /* Icon bar with icon items, hiding separators on smaller displays for MD and LG, DF Approved */

    #icons-bar .item-icon:after {

        display: none;
    }

    /* Photosection image scaling, DF Approved */

    .custom-thumbnail-img:hover {
        transform: scale(1);
    }
}

@media only screen and (max-width: 992px) {

    /* Icon bar with icon items, hiding separators on smaller displays for MD and LG, DF Approved */

    #icons-bar .item-icon:nth-child(even):after {

        display: none;
    }
}