html {
    font-size: 14px;
}

@font-face {
    font-family: 'Bebas-Neue';
    src: url('../font/Electrolize-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.babas-neue-regular {
    font-family: 'Bebas-Neue', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-top: 125px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #222;
}

header {
    position: fixed;
    top: 0px;
    background: #262730;
    transition: all 0.5s ease-in-out, padding 0.3s ease-in-out;
    color: white;
    padding: 10px 0;
    border-bottom: 3px orangered solid; 
    width: 100%;
    z-index: 25;
    max-height: 80px;
    min-height: 80px;
    --opacity-start: 0;
}

    header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 8%;
        background: linear-gradient(0deg, rgba(25, 105, 35, 0.8) 0%, rgba(25, 105, 35, 1) 100%);
        opacity: 0; /* Start hidden */
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }

    header.solid::after {
        opacity: 1; /* Fade in when solid class is added */
    }

    header img {
        max-height: 53px;
        max-width: 350px;
        top: 12px;
    }

    .header-title {
        color:silver;
        font-size: 24px;
        margin-top: -5px;
        font-size: 25px;
    }
    .header-title:hover {
        color: darkorange;
    }

.header {
    display: flex;
    justify-content:space-between;
    margin-top: 10px;
}
.right-side {
    display: flex;
    align-items: center;
}
.right-side a {
    color: silver;
    padding-right: 10px;
    margin-top: -8px;
    font-size: 20px;
}
.right-side a:hover {
    color: darkorange;
}

@media (max-width: 390px) {
    .header-title {
        font-size: 16px;
    }
    .right-side a {
        font-size: 12px;
    }
}

/* FOOTER */

.custom-footer {
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: silver;
    padding: 10px 0;
    border-top: 3px;
    border-top-color: orangered;
    border-top-style: inset;
    margin-top: auto;
    font-size: min(max(2vw, 8px), 14px);
    z-index: 10;
}
.footer {
    text-align:center;
}
.footer h4 {
    font-family: Bebas-Neue;
}

.footer-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 20px;
    margin-bottom: 20px;
}
.footer-breadcrumbs-1 {
    display: flex;
    flex-direction: column;
}
.footer-breadcrumbs-1 a {
    color:grey;
    margin-top: 5px;
}
.footer-breadcrumbs-1 a:hover {
    color:silver;
}
#footerLogoFull {
    width: max(80px, 7vw);
}

.affiliates {
    display: flex;
    justify-content: space-evenly;
}
.affiliates img {
    max-width: 100%;
    max-height: 120px;
}
.affiliates a:hover {
    transform: scale(1.05);
}

.right-side {
    display: flex;
    gap: 1rem;
}

.hamburger {
    color:orange;
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile view */
@media (max-width: 750px) {
    .right-side {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #222;
        padding: 10px;
        border-radius: 8px;
    }

        .right-side a {
            color: white;
            padding: 8px 12px;
            text-decoration: none;
        }

    .hamburger {
        display: block;
    }

    /* Show menu when active */
    .right-side.active {
        display: flex;
    }
    .right-side.active a {
        border-bottom: solid 2px orange;
    }
}

@media (max-width: 767px) {
    .footer-breadcrumbs {
        flex-wrap: nowrap;
        flex-direction: column;
        margin-left: 0px;
    }
    .footer-breadcrumbs-1 {
        margin: 10px;
    }
}

@media (max-width: 750px) {
    .header {
        margin-top: 7px;
    }
}

