@import url(fonts.css);

body, html {
    margin: 0 auto;
    font-family: 'Gilroy', 'sans-serif';
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #111315;
    height: 100%;
    color: #fff;
    scroll-behavior: smooth;
    background-attachment: fixed;
}

:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
    color: #fff;
}

p {
    margin: 0;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    padding: 0;
    border: none;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.burger-menu_btn {
    display: none;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: transparent;
}

.burger-menu_btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 5px;
    transition: transform .5s, opacity .5s;
}

.burger-menu_btn span:nth-child(1) {
    transform: translateY(-10px);
}

.burger-menu_btn span:nth-child(2) {
    transform: translateY(10px);
}

.nav-container.open .burger-menu_btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.nav-container.open .burger-menu_btn span:nth-child(2) {
    opacity: 0;
}

.nav-container.open .burger-menu_btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.row-pages {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.marking {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.nav {
    margin-top: 50px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-logo img {
    width: 100px;
    background-size: cover;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 27.5px 30px;
    background: linear-gradient(45deg, rgba(255, 94, 0, 0.5), rgba(255, 106, 47, 0.5));
    border-radius: 12px;
}

.nav-item {
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: all .3s ease;
}

.nav-item > span {
    position: absolute;
    font-size: 12px;
    top: -5px;
}

.nav-item.active {
    opacity: 1;
}

.nav-item:hover {
    opacity: 1;
}

.nav-profile {
    background: linear-gradient(45deg, rgba(255, 167, 0, 1), rgba(255, 98, 45, 1));
    border-radius: 12px;
    padding: 27.5px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.nav-profile.authorized:hover i {
    margin-left: 0px;
}

.nav-profile.authorized:hover {
    gap: 20px;
}

.nav-profile i {
    font-size: 21px;
    transition: all .3s ease;
}

.nav-profile:hover i {
    margin-left: 10px;
}

.shop {
    margin-top: 100px;
}

.shop-title {
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
}

.shop-container {
    background: rgba(19, 19, 19, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    padding: 45px;
    max-width: 860px;
    margin-top: 50px;
}

.shop-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    justify-content: space-between;
    align-items: flex-end;
}

.window-title {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}

.window-input input {
    width: 400px;
    height: 70px;
    background: rgba(19, 19, 19, 0.5);
    border-radius: 12px;
    padding: 25px;
    font-size: 18px;
    margin-top: 15px;
}

.window-button {
    width: 400px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #FFA700, #FE6729);
    border-radius: 12px;
    font-weight: 500;
}

.shop-bottom {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
    padding: 0px 50px;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.shop-clue {
    color: #FAA61C;
    font-weight: 500;
}

.shop-conf {
    font-size: 16px;
    text-align: center;
    opacity: 0.4;
}

.footer {
    width: 100%;
    margin-top: 200px;
}

.footer-container {
    width: 100%;
    height: 200px;
    background: #0E0E0E;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-project {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    background-size: cover;
}

.footer-name {
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-cards {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-card img {
    width: 50px;
    background-size: cover;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-link,
.footer-mail {
    opacity: 0.5;
    transition: all .3s ease;
}

.footer-link:hover {
    opacity: 1;
}

a.shop-conf {
    text-decoration: underline !important;
    transition: all .3s ease;
}

a.shop-conf:hover {
    opacity: 0.7;
}


/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
    .nav.open .nav-list {
        transform: translateX(1000px);
    }

    .burger-menu_btn {
        display: block;
        z-index: 3;
        position: relative;
    }

    .nav {
        width: 100%;
    }

    .nav-container.open .nav-main {
        transform: translateX(1500px);
    }

    .nav-main {
        position: fixed;
        display: flex;
        left: -1500px;
        top: 0;
        width: 100%;
        height: 100%;
        margin-left: 0px;
        background-color: #000;
        padding: 100px 20px 0px 0px;
        transition: transform .5s;
        z-index: 2;
        flex-direction: column;
    }

    .nav-container.open .burger-menu_btn {
        position: fixed;
        left: 65px;
    }

    .nav-items {
        font-size: 24px;
        gap: 100px;
        background: transparent;
        flex-direction: column;
    }

    .nav-container {
        justify-content: space-around;
    }

    .shop {
        max-width: 100%;
    }
    .window-input {
        width: 100%;
    }
    .window-input input {
        max-width: 100%;
        width: -webkit-fill-available;
    }
    .window-button {
        max-width: 100%;
        width: -webkit-fill-available;
    }
    .shop-container {
        padding: 20px 10px;
        max-width: 100%;
    }
    .footer-container {
        flex-direction: column;
        gap: 10px;
        height: 100%;
        padding: 20px 0px;
    }
    .shop-clue {
        display: none;
    }

    .window-button,
    .shop-container,
    .window-input input {
        margin: 10px;
    }
    .footer-logo img {
        width: 130px;
    }
    .shop-bottom {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .footer-project {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1000px) {
    body, html {
        background: rgb(33, 37, 41);
    }
}