/* HERO */

.hero-container {
    min-height: 75vh;
    max-height: 100%;
    width: 100%;

    position: relative;
}

.hero-colour-overlay {
    background: linear-gradient(var(--primary-accent-colour), #101010);
}

.hero-video{
    width: 100%;
}

.hero-image {
    overflow: hidden;

    /*background: url("/assets/img/background.webp") no-repeat;*/
    background-position: center center;
    background-size: cover;
    
    width: 100%;
    height: 100%;

    object-fit: cover;
    
    opacity: 0.85;

    z-index: 1;
    position: relative;
}

.hero-image video {
    object-fit: cover;

    width: 100%;
    height: 100%;
}

.hero-image::before {
    content: "";
    position: absolute;

    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    z-index: 10;
    display: block;

    background: linear-gradient(rgba(0, 0, 0, 0.55), #101010);
}

.hero-image::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;
    left: 0;
    bottom: auto;

    z-index: 10;
    display: block;

    height: 187.5px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), transparent);
}

.hero-title {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title img {
    padding-top: 100px;
    width: 100%;
    animation: moveUpDown 3s ease-in-out infinite;
    pointer-events: none;
    margin-left: -30px;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-ip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 50%;

    left: 0;
    right: 0;

    margin-left: auto;
    margin-right: auto;
}

.hero-ip p {
    color: var(--text-colour);

    margin: 5px 0;
}

.hero-ip-copy {
    width: fit-content;

    display: flex;
    flex-direction: row;
    align-items: center;

    margin: 10px 0;
}

.hero-ip-copy p {
    color: var(--primary-accent-colour);

    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;

    background-color: var(--primary-colour);

    border-left: 1px solid var(--secondary-colour);
    border-top: 1px solid var(--secondary-colour);
    border-bottom: 1px solid var(--secondary-colour);

    height: 50px;
    width: 250px;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px 0 0 10px;

    position: relative;
}

.hero-ip-copy button {
    position: absolute;

    left: -10px;

    background-color: var(--secondary-colour);

    border: 1px solid var(--tertiary-colour);
    border-radius: 10px;
    
    height: 50px;
    padding: 0 15px;

    cursor: pointer;

    color: var(--text-colour);
    text-transform: uppercase;

    font-weight: 600;
    font-size: 12px;
    
    position: relative;

    transform: scale(1.1);

    transition: all .2s ease;
}

.hero-ip-copy button:hover {
    transform: scale(1.15);

    transition: all .1s ease !important;
}

.hero-discord {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    width: 240px;
    height: 40px;

    border-radius: 10px;

}

.hero-discord svg {
    fill: white;
    height: 30px;
    width: 30px;

    padding: 0 !important;
}

.hero-discord {
    color: var(--text-colour);

    text-decoration: none;
}

.hero-scroller {
    margin-top: 50px;
    
    color: var(--text-colour);
    
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    border: 1px solid var(--secondary-colour);

    width: 50px;
    height: 50px;
    
    border-radius: 100px;

    margin: 50px auto 0 auto;

    backdrop-filter: blur(20px);
}

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

    .hero-ip-copy p {
        width: 175px;
    }
    .hero-title img {
        width: 75%;
        opacity: 0;
    }

}

@media (min-width: 2560px) {
    .hero-video {
        object-fit: cover;
    }
}