@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');
@import "https://www.nerdfonts.com/assets/css/webfont.css";

* {
    scrollbar-color: #fe951d #0f0f0f;
}

body {
    background-color: #0a0a0a;
    color: white;
    padding: 15px;
    padding-top: 80px;
    background: #0f0f0f;
}

.nav {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(34, 34, 34, 0.25);
    box-shadow: inset 0 1px 1px rgba(97, 97, 97, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.nav-right {
    text-align: right;
}

.nav-light {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    filter: blur(40px);
    z-index: 0;
}

.content {
    align-items: center;
    text-align: center;
    font-family: 'SN Pro';
}

.nav a {
    color: #fe951d;
    font-family: 'SN Pro';
    font-weight: bold;
    transition: 0.2s;
    text-decoration: none;
    margin-right: 10px;
    font-size: 19px;
}

.nav a:hover {
    color: #08ca03;
    text-decoration: underline;
}


a {
    color: rgb(145, 145, 145);
    font-family: 'SN Pro';
    transition: 0.2s;
    text-decoration: none;
    margin-right: 10px;
}

a:hover {
    color: rgb(48, 48, 48);
    text-decoration: underline;
}

.hero {
    background-image: url('/media/LEGACY_brand-hero.webp');
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    max-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 4px solid #fe951d;
    border-right: 4px solid #fe951d77;
    border-left: 4px solid #fe951d77;
    border-top: 2px solid #8f5411f3;
    border-radius: 30px;
    width: 80%;
    overflow: hidden;
    margin: 20px auto 0 auto;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    border: 1px solid rgba(34, 34, 34, 0.25);

}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px);

    opacity: 0.6;
    z-index: -1;
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h2 {
    margin: 0;
    font-size: 1.75rem;
    margin-top: 10px;
    font-weight: 300;
}


.footer {
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(34, 34, 34, 0.25);
    box-shadow: inset 0 1px 1px rgba(97, 97, 97, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: -10px;
}

.footerimg {
    height:150px;
    opacity: 30%;
    border-radius: 25px;
    padding:15px;
}


.footer p {
    margin-bottom: -10px;
}


.container {
    display: flex;
    flex-wrap: wrap;
}

.column,
.columnflipped {
    flex: 25%;
    padding: 20px;
}

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

    .column,
    .columnflipped {
        flex: 50%;
    }
}

@media screen and (max-width: 600px) {
    .container {
        flex-direction: column;
    }
}


.hero-content img {
    height: 150px;
}


@media screen and (min-width: 601px) {
    .columnflipped:first-child {
        order: 2;
    }

    .columnflipped:last-child {
        order: 1;
    }
}


hr {
    width: 50%;
    color: #292929;
    margin-bottom: 85px;
    margin-top: 85px
}

.qa-item {
    margin-bottom: 30px;
    max-width: 600px;
}

.qa-question {
    color: #fe951d;
    font-size: 22px;
    font-weight: bold;
}

.qa-answer {
    color: #08ca03;
    font-size: 20px;
    margin-left: 10px;
}

.qa-answer::before {
    font-weight: bold;
}


.navMenu {
    text-align: center;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(5px) saturate(180%);
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(34, 34, 34, 0.25);
    box-shadow: inset 0 1px 1px rgba(97, 97, 97, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

.navMenu a {
    color: #fe951d;
    font-weight: bold;
    margin-right: 0;
    margin: 3px;
}


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

    .navMenu {
        visibility: visible;
    }

    .nav {
        top: 8px;
        left: 8px;
        right: 8px;
        padding: 10px;
        border-radius: 20px;
    }

    hr {
        width: 50%;
        color: #292929;
        margin-bottom: 30px;
        margin-top: 30px
    }

    .nav-right {
        display: none;
    }

    .column img,
    .columnflipped img {
        max-width: 100%;
        height: auto;
    }

    .hero {
        width: 100%;
        height: 250px;
    }

    .hero-content img {
        height: 70px;
    }


    .hero-content {
        padding: 10px;
    }

    .heroh3 {
        font-size: 15px;
    }

    .hero-content a {
        font-size: 12px;
    }

    .footerimg {
    height:40px;
}
}
