@import url(global.css);
@import url(nuicron.css);

body {
    background-color: var(--background);
}

#sec1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 250px 0 60px 0;
}

#support-hero-title {
    font-family: 'Assistant', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 64px;
    text-align: center;
    margin: 0;
    padding: 0;
    display: inline-block;
    background-image: linear-gradient(to right, var(--accent), var(--gradient));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

#sec2-content {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0 100px 0;
    height: fit-content;
}

#sec3-content {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0 100px 0;
}

#sec2-buttons {
    display: flex;
    width: 90%;
    justify-content: center;
    gap: 40px;
}

a {
    text-decoration: none;
}

.contact-option {
    width: 459px;
    height: 77px;
    border-radius: 12px;
    background-color: var(--button);
    border: 2px solid var(--hover);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
}

.contact-option.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-option:hover {
    cursor: pointer;
    background-color: var(--hover);
    scale: 1.02;
}

.contact-option-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.contact-option-icon {
    margin-right: 24px;
}

.contact-option-arrow {
    margin-left: 84px;
}

#faq-search {
    box-sizing: border-box;
    height: 44px;
    background-color: var(--button);
    border: 2px solid var(--hover);
    border-radius: 12px;
    width: 550px;
    color: var(--text);
    font-family: 'Assistant', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    padding: 0 20px;
    outline: none;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
}

#faq-search:hover {
    background-color: var(--hover);
}

#sec3-faq-items {
    width: 90%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.faq-item {
    background-color: var(--button);
    border: 2px solid var(--hover);
    width: 500px;
    height: 170px;
    border-radius: 12px;
    padding: 24px 18px 24px 18px;
    position: relative;
    margin: 14px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item-tags {
    display: flex;
    margin: 20px 0 0 0;
    position: absolute;
    bottom: 20px;
}

.faq-item-tag {
    background-color: var(--hover);
    padding: 6px 14px;
    width: fit-content;
    border-radius: 6px;
    margin-right: 14px;
    display: flex;
    gap: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    font-size: 13px;
    font-family: 'Assistant', sans-serif;
    color: var(--text);
}

.faq-item-tag:hover {
    cursor: pointer;
    background-color: var(--background);
    border: 2px solid var(--hover);
}

.faq-item-link {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-underline-offset: 3px;
    position: absolute;
    bottom: 20px;
    right: 18px;
}

.faq-item-link:hover {
    color: var(--text);
    text-decoration: underline;
}


@media (max-width: 1000px) {
    #sec2-buttons {
        display: flex;
        width: 90%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-option {
        width: 350px;
    }

    .contact-option-icon {
        margin-right: 3%;
    }

    .contact-option-arrow {
        margin-left: 10%;
    }
}

@media (max-width: 650px) {
    #support-hero-title {
        font-size: 50px;
    }    

    .contact-option {
        width: 100%;
        max-width: 500px;
        height: 64px;
        justify-content: left;
        position: relative;
    }

    .contact-option-icon {
        margin-left: 6%;
        width: 26px;
    }

    .contact-option-arrow {
        height: 16px;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    #faq-search {
        box-sizing: border-box;
        height: 44px;
        background-color: var(--button);
        border: 2px solid var(--hover);
        border-radius: 12px;
        width: 90%;
        color: var(--text);
        font-family: 'Assistant', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 14px;
        padding: 0 20px;
        outline: none;
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
    }

    .faq-item {
        background-color: var(--button);
        border: 2px solid var(--hover);
        width: 90%;
        height: fit-content;
        border-radius: 12px;
        padding: 24px 18px 12px 18px;
        position: relative;
        margin: 14px;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        box-sizing: border-box;
    }

    .faq-item-tags {
        display: flex;
        margin: 40px 0 0 0;
        position: relative;
    }

    .faq-item-link {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}
