/*
 *
 *   W'Bit - Copyright (C) 2021  WZ73
 *   Oficial repository: https://gitlab.com/wz73/wbit
 *
 *   Created on 13 August, 2021
 *   Version BETA PRE-RELEASE 1.2.1
 *
 *   W'Bit is a discord bot with fully customised features like moderation,
 *   custom commands, fun, easy and simple dashboard, and more!
 *
 *   W'Bit is released under the GPLv2 License
 *
 */

/* Main stylesheet */

body {
    z-index: -2;
    background-color: var(--color-tertiary);
}

#wrap {
    height: auto;
    width: 100%;
}

/*
 * Header
 */

header {
    width: 100%;
    height: 12vh;
    background-color: #212835;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#logo {
    margin-left: 45px;
}
#logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
}
#logo p {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    margin-left: 12px;
}
#logo img {
    height: auto;
    width: 50px;
}
nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    height: 100%;
}
nav a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    transition: 0.3s;
}
nav a p {
    color: #fff;
    font-weight: 100;
}
.link:hover {
    background-color: var(--color-secondary);
}
.link-s {
    height: auto;
    padding: 12px 20px;
    border-radius: 5px;
    margin-left: 20px;
}
.link-s:hover {
    opacity: 0.8;
}
.link-premium {
    background-color: var(--color-secondary);
}
.link-login {
    background-color: var(--color-primary);
}
.link-login p {
    color: rgb(48, 48, 48);
}
#ham {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0px 15px 0px 35px;
}
.line1, .line2, .line3{
    background: #fff;
    border-radius: 3px;
    transition: 0.5s;
    width: 35px;
    height: 5px;
    margin: 3px;
}
.active .line1{
    transform: rotate(-45deg) translate(-7.8px, 7.8px);
}
.active .line2{
    opacity: 0;
}
.active .line3{
    transform: rotate(45deg) translate(-7.8px, -7.8px);
}
#res-header.active {
    display: block;
}
#res-header {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    display: none;
    background-color: #212835;
}
#res-header a p {
    color: #fff;
}
#res-header a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}
.res-link-s p {
    display: block;
    width: auto;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}
.res-link-s p:hover {
    opacity: 0.8;
}
.res-link-premium p {
    background-color: var(--color-secondary);
}
.res-link-login p {
    background-color: var(--color-primary);
}
.res-link-login p {
    color: rgb(48, 48, 48) !important;
}

/*
 * Footer
 */

footer {
    width: 100%;
    height: auto;
    padding: 70px 70px 40px 70px;
    background-color: #212835;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer * {
    color: #fff;
    text-align: left;
}
.footer-logo {
    margin: 0px 80px 30px 0px;
}
.footer-logo div {
    display: flex;
    align-items: center;
}
.footer-logo h4 {
    font-size: 32px;
    font-weight: 800;
    margin-left: 15px;
}
.footer-logo img {
    width: 80px;
}
.ftr-cr {
    color: #cdcdcd;
    font-size: 12px;
}
.footer-logo p {
    margin-top: 20px;
}
.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer-links div {
    display: flex;
    flex-direction: column;
    margin: 0px 30px 30px 0px;
}
.footer-links div h4 {
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-links div a {
    font-size: 14px;
    margin-top: 7px;
    color: #cdcdcd;
}

 /* Responsive styles width */

@media only screen and (max-width: 1020px) {
    .link {
        display: none;
    }
    #ham {
        display: flex !important;
    }
}

@media only screen and (max-width: 670px) {
    .link-s {
        display: none;
    }
}

@media only screen and (max-height: 600px) {
    header {
        height: auto;
        padding: 15px 0px;
    }
}
