@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Define the custom font */
@font-face {
    font-family: 'BigMacca';
    src: url('../assets/font/BIGMACCA.TTF') format('truetype');
}

/* Apply the custom font */
.bebas-neue-regular {
    font-family: 'BigMacca';
    font-weight: bold;
}


.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt"0;
}



.navbar-toggler {
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 5px auto;
}

.navbar-collapse {
    display: none;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gradient-blue {
    background: rgb(32, 61, 244);
    background: linear-gradient(90deg, rgba(32, 61, 244, 1) 0%, rgba(50, 110, 255, 1) 57%, rgba(47, 160, 255, 1) 100%);
}

.gradient-yellow {
    background: rgb(255, 221, 0);
    background: linear-gradient(90deg, rgb(233, 244, 32) 0%, rgb(255, 224, 50) 57%, rgb(245, 255, 47) 100%);
}



/* custom.css */
.text-stroke {
    -webkit-text-stroke: 1px black;
    /* Standard text stroke */
    color: transparent;
    /* Make the fill color transparent to show only the stroke */
}

.text-stroke-sm {
    -webkit-text-stroke: 0.5px black;
    /* Smaller text stroke */
    color: transparent;
}

.text-stroke-lg {
    -webkit-text-stroke: 2px black;
    /* Larger text stroke */
    color: transparent;
}

.text-stroke-red {
    -webkit-text-stroke: 1px red;
    /* Red text stroke */
    color: transparent;
}

.text-stroke-yellow {
    -webkit-text-stroke: 1px rgb(255, 174, 0);
    /* Red text stroke */
    color: transparent;
}



@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
    --vs-primary: 29 92 255;
}

/*Dialog Styles*/

dialog::-webkit-backdrop {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

dialog::backdrop {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

dialog .x {
    filter: grayscale(1);
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
}

dialog .x:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

dialog h2 {
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 1rem;
}

dialog p {
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.5rem 0;
}

dialog p a:visited {
    color: rgb(var(--vs-primary));
}


button.primary {
    display: inline-block;
    font-size: 0.8rem;
    color: #fff !important;
    background: rgb(var(--vs-primary)/100%);
    padding: 13px 25px;
    border-radius: 17px;
    transition: background-color 0.1s ease;
    box-sizing: border-box;
    transition: all 0.25s ease;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 20px -10px rgb(var(--vs-primary)/50%);
}

button.primary:hover {
    box-shadow: 0 20px 20px -10px rgb(var(--vs-primary)/50%);
    transform: translateY(-5px);
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* modal diskon */
.modal-window {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-window>div {
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7em;
}

@media (max-width: 480px) {
    .modal-window>div {
        width: 550px;
    }
}

.modal-window header {
    font-weight: bold;
}

.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px;
}

.modal-close {
    position: absolute;
    top: 100px;
    /* Atur jarak dari atas */
    right: 100px;
    /* Atur jarak dari kanan */
    background: blue;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 100%;
    z-index: 1000;
    /* Pastikan tombol close berada di depan gambar */
}

.modal-close:hover {
    color: black;
}

/* Demo Styles */

.modal-window>div {
    border-radius: 1rem;
}

.modal-window div:not(:last-of-type) {
    margin-bottom: 15px;
}

small {
    color: lightgray;
}

.btn {
    background-color: white;
    padding: 1em 1.5em;
    border-radius: 0.5rem;
    text-decoration: none;
}

.btn i {
    padding-right: 0.3em;
}