@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueMedium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueThin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueUltraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue";
}

*:focus {
    outline: none;
    box-shadow: none;
}

html,
body {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    background: radial-gradient(center, #ffffff 0%, #cdd3df 100%) no-repeat;
    background-repeat: no-repeat;
}

.navbar-glass {
    border: 1px solid #fff;
    background-color: white;
    padding: 15px 30px;
    z-index: 99999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-glass .item-nav {
    color: #000;
    margin: 0 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    position: relative;
    transition: font-weight 0.3s ease-in-out;
}

.navbar-glass .item-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #eb0000;
    transition: width 0.3s ease;
}

.navbar-glass .item-nav:hover::after {
    width: 100%;
}

.dropdown-item .navbar-glass:nth-child(1) a {
    margin-left: 0;
}

.btn-signin {
    background: #eb0000;
    color: white;
    border-radius: 30px;
    padding: 8px 30px;
    position: relative;
    font-weight: 300;
    border: white 2px solid;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    transition: box-shadow 1s ease;
}

.btn-signin:hover {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    padding: 8px 30px;
    border: white 2px solid;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 35px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #9ca3af #e5e7eb;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e5e7eb;
}

::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

@media (max-width: 576px) {
    .navbar-menu {
        display: none;
    }
}

/* pagination container */
.pagination {
    gap: 8px;
}

/* tombol */
.page-link {
    border-radius: 10px !important;
    color: #000;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

/* hover */
.page-link:hover {
    background-color: #eb0000;
    color: #fff;
    border-color: #eb0000;
}

/* active page */
.page-item.active .page-link {
    background-color: #eb0000;
    border-color: #eb0000;
    color: white;
}

/* disable */
.page-item.disabled .page-link {
    opacity: 0.5;
}

.page-link:active,
.page-link:focus {
    box-shadow: none;
    background-color: #eb0000;
    color: #fff;
    border-color: #eb0000;
}
