/*
 *
 *   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
 *
 */

/*
 * Hero
 */

#hero-background {
    position: fixed;
    z-index: -1;
    top: 0px;
    right: 0px;
    background-color: var(--color-tertiary);
    border: none;
}
#hero {
    height: 88vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
}
#hero * {
    color: #fff;
}
#hero img {
    height: auto;
    width: 100px;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }
}
#hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0px;
}
#hero h3 {
    font-size: 18px;
    font-weight: 100;
    color: #cdcdcd;
}
#hero-links {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#hero-links a {
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 100;
    margin: 10px 5px;
    cursor: pointer;
    transition: 0.3s;
}
#hero-links a:hover {
    opacity: 0.8;
}
#hero-links a:nth-child(1) {
    background-color: var(--color-secondary);
}
#hero-links a:nth-child(2) {
    background-color: var(--color-primary);
    color: rgb(48, 48, 48);
}
@media only screen and (max-height: 600px) {
    #hero {
        height: auto;
    }
}

/*
 * Features
 */

#features {
    width: 100%;
    height: auto;
    padding: 50px 30px;
    background-color: #212835;
}
#features * {
    color: #fff;
}
#features h3 {
    font-size: 46px;
    margin-bottom: 20px;
}
#features p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #cdcdcd;
}
.features {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.feature {
    padding: 60px 40px;
    width: 240px;
    height: 320px;
    border-radius: 15px;
    background-color: var(--color-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    transition: 0.5s;
}
.feature:hover {
    transform: scale(1.05);
}
.feature img {
    width: 80px;
    height: auto;
}
.feature span {
    margin-top: 24px;
    font-size: 24px;
}
.feature p {
    margin-top: 10px;
    font-size: 14px;
}

/*
 * Getting start
 */

#get-started {
    width: 100%;
    height: auto;
    padding: 50px 30px;
}
#get-started * {
    color: #fff;
}
#get-started h3 {
    font-size: 42px;
    margin-bottom: 20px;
}
#get-started p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cdcdcd;
}
#get-started a {
    padding: 15px 25px;
    font-size: 15px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    transition: 0.3s;
}
#get-started a:hover {
    opacity: 0.9;
}
