@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --bg-color: rgb(22, 22, 22);
}

html {
  scroll-behavior: auto;
}

* {
    font-family: "Bebas Neue", sans-serif;
    scroll-behavior: smooth;
    box-sizing: content-box;
    padding: 0;
}

body {
    background: var(--bg-color);
    color: white;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.bg-texture {
    background: url("./assets/textures/bg-pattern.webp");
    background-repeat: repeat;
    bottom: 0;
    left: 0;
    min-height: 150vh;
    opacity: .1;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -25;
}

.container-nav {
    width: 80%;
    position: relative;
}

.container {
    width: 65%;
    position: relative;
}

.video-landing {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    top: 0;
    z-index: -5;
    filter: opacity(.2) blur(5px);
}

header {
    z-index: 10;
    position: relative;
}

header nav ul {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1em 0;
    justify-content: center;
    display: flex;
}

header nav .nav-links {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.596);
}

header nav .nav-links a:hover {
    color: white;
    animation: .3s text-ct linear;
}

@media only screen and (max-width: 1024px) {
  .nav-links {
    display: none;
    }
}

header nav .nav-links .current-pg {
    color: rgb(221, 221, 221) !important;
}

.our-servers {
    background: url("./assets/textures/bg-texture-2.jpg") top repeat;
    padding-top: 180px;
    padding-bottom: 110px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 0 62px black);
    z-index: 1000;
}

.server-card {
    align-items: center;
    background: linear-gradient(45deg, #17120d, #0a0a0a);
    border-top: 1px solid #942700;
    border-bottom: 1px solid #942700;
    padding-bottom: 1em;
    padding-top: 1em;
}

.tags-list .orange {
    color: #ffecd5;
    background-color: rgb(105 35 24);
    padding: 0 .75em;
    border-radius: 5px;
}

/* Main */

.text-header {
    text-transform: uppercase;
    font-weight: 400;
}

.text-container-center {
    justify-content: center;
    display: flex;
    transform: translate(-50%);
    position: absolute;
    align-items: center;
    text-align: center;
    top: 12rem;
    left: 50%;
    z-index: 1;
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.342));
}

.new-notify {
    color: rgb(238, 238, 238);
    border: 1px solid rgba(255, 166, 115, 0.233);
    border-radius: 10px;
    display: inline-block;
    padding: .2em 2em;
}

/* Plans */

.bg-plans {
    background: linear-gradient(45deg, #000000f5, #000000fa), url(./assets/images/bg-shop.jpg);
    width: 100%;
    height: 100%;
    padding: 2em 0 2em 0;
    background-repeat: no-repeat;
    background-position: top;
    object-fit: cover;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: saturate(1.5);
}

.plan-card {
    display: flex;
    flex-direction: column;
    gap: 1.75em;
    z-index: 1;
    padding: 1em 2em;
    border-radius: 1em;
}

.tier-1 {
    background: linear-gradient(45deg, black, #0a2f20);
    border: 1px solid #194d25;
}
.tier-2 {
    background: linear-gradient(45deg, black, #0a1e33);
    border: 1px solid #142f42;
}
.tier-3 {
    background: linear-gradient(45deg, black, #1d0404);
    border: 1px solid #421414;
}

/* Contact */

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  background: #7b7b7b1c;
  border-bottom: 2px solid #7a7a7a;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="text"]:focus{
    outline: none;
}

input[type=submit] {
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  background: linear-gradient(45deg, #252525, #303030, #1e1e1e);
  border: 1px solid #464646;
  width: 150px;
  height: 25px;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: .7s ease;
}

input[type=submit]:hover {
    box-shadow: 10px 9px 0 rgb(46 46 46);
}

select option {
    color: white;
    background: rgb(32, 32, 32);
}

footer {
    height: 300px;
    justify-content: center;
    display: flex;
    font-size: 18px;
    background: linear-gradient(360deg, #0f0b0b, #000000);
}

footer .copyright {
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 400;
}

footer a {
    font-size: 24px;
    color: rgb(187, 187, 187);
}

/* Text Clips */

.text-clip-orange {
    background: linear-gradient(180deg, #f64d42, #b53e23, #ff3d24);
    color: transparent;
    background-clip: text;
}

/* Buttons */

.btn-primary {
    color: white;
    background: linear-gradient(45deg, #252525, #303030, #1e1e1e);
    border: 1px solid #464646;
    width: 150px;
    height: 40px;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: .25s ease-in;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #9f6841, #a54c4c, #eb7d7d);
    border-color: #3b2a2ad4;
}

.btn-2D-shadow:hover {
    box-shadow: 10px 9px 0 rgb(46 46 46);
}

.btn-icon {
    width: fit-content;
    height: fit-content;
    padding: .5em;
    background: linear-gradient(45deg, #b94921, #942700);
    display: flex;
    border-radius: 10px;
    transition: all linear;
}

.btn-icon:hover {
    transform: scale(1.1);
}

/* Keyframes */

/* Color Transform */
@keyframes text-ct {
    0% {
        color: currentColor;
    }
    100% {
        color: white;
    }
}