@import url('https://fonts.cdnfonts.com/css/japanese-style');
@import url('https://fonts.cdnfonts.com/css/funny-samurai');
@import url('https://fonts.cdnfonts.com/css/almost-japanese');
@import url('https://fonts.cdnfonts.com/css/japanese-brush');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css?family=Arvo|Electrolize|Iceberg|Oleo Script Swash Caps|Poppins|Big+Shoulders+Display|Rubik+Glitch");
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=JetBrains+Mono&family=Source+Code+Pro&display=swap');

:root {
    --warna1: var(--kem-putih, #ffffff);   /* putih utama */
    --warna2: var(--kem-oranye, #ff5e00);   /* oranye utama */
    --warna3: #cacaca;
    --warna4: #b30000;
    --warna5: #fff5f0;

    /* Kemerdekaan (pastikan tetap ada) */
    --kem-oranye: #ff7b00; /* oranye */
    --kem-putih: #ffffff; /* putih */
    --kem-emas: #f5ce6d;  /* aksen emas */
}

.Poppins {
  font-family: "Poppins";
}

.japanese-style {
  font-family: "Japanese Style";
}

.funny-samurai {
  font-family: "Funny Samurai";
}

.almost-japanese {
  font-family: "Almost Japanese";
}

.japanese-brush {
  font-family: 'Japanese Brush';
}

.Arvo {
  font-family: Arvo, sans-serif;
}

.Electrolize {
  font-family: Electrolize, sans-serif;
}

.Iceberg {
  font-family: Iceberg, sans-serif;
}

.BigShouldersDisplay {
  font-family: "Big Shoulders Display", sans-serif;
}

.BigShouldersDisplay-Bold {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: bold;
}

.glitch {
  font-family: "Rubik Glitch", system-ui;
}

/* Dracula Theme */
.hljs {
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    background: #282a36;
    color: #f8f8f2;
}
  
/* Keywords */
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-type,
.hljs-name,
.hljs-strong {
  color: #ff79c6;
}

/* Tags */
.hljs-built_in,
.hljs-link,
.hljs-section {
  color: #8be9fd;
}

/* Strings and Templates */
.hljs-string,
.hljs-meta,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #f1fa8c;
}

/* Titles and Attributes */
.hljs-title,
.hljs-attr,
.hljs-meta-keyword {
  color: #50fa7b;
}

/* Comments and Quotes */
.hljs-comment,
.hljs-quote {
  color: #6272a4;
  font-style: italic;
}

/* Numbers and Symbols */
.hljs-number,
.hljs-symbol,
.hljs-bullet {
  color: #bd93f9;
}

/* Deletions */
.hljs-deletion {
  color: #ff5555;
}

/* Emphasis */
.hljs-emphasis {
  font-style: italic;
}

/* Bold */
.hljs-strong {
  font-weight: bold;
}
  

.fira-code {
  font-family: 'Fira Code', monospace;
}

.jetbrains-mono {
  font-family: 'JetBrains Mono', monospace;
}

.source-code-pro {
  font-family: 'Source Code Pro', monospace;
}


:root {
    --original-screen-height: calc(100vh);
    --original-screen-width: calc(100vw);
}

* {
    scroll-behavior: smooth;
}

.body-bg {
    font-family: Arial, sans-serif;
    /* background: linear-gradient(to right, #ff1100, #ff5e00); */
    background-image: url("/assets/image/4904800.jpg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--kem-oranye);
    height: var(--original-screen-height);
}

.bg-pastel {
    /* background: linear-gradient(to bottom right, #bd93f9, #ff5e00, #ff7b00, #ff7a2d, #ff5e00, #ff5e00, #ff5e00, #ff5e00, #ff5e00, #ff5e00, #ff5e00); */
    background-image: url("/assets/image/9563821.jpg");
    border: 5px solid #ffffff77;
    transition: background 18s ease-in-out; /* Menambahkan transisi selama 3 detik */
}

.bg-pastel:hover {
    border: 2px solid #ffffff77;
    background-image: url("/assets/image/9563821.jpg");
}


/* Untuk handphone */
/*@media only screen and (max-width: 768px) {
    .body-bg {
        background-image: url('/assets/image/bg2.png');
    }
}*/
/* Untuk desktop */
/*@media only screen and (min-width: 769px) {
    .body-bg {
        background-image: url('/assets/image/bg.png');
    }   
}*/

.scroll-x {
    overflow-x: scroll;
}
.scroll-y {
    overflow-y: scroll;
}

/* Mengubah warna scroll bar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--kem-merah);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7a1e12; /* sedikit lebih gelap saat hover */
}

.round-circle {
    border-radius: 50%;
}
.rounded {
    border-radius: 10px;
}
.rounded-lg {
    border-radius: 20px;
}
.rounded-xl {
    border-radius: 30px;
}
.rounded-full {
    border-radius: 50%;
}

.padding {
    padding: 10px 15px;
}

.padding2 {
    padding: 20px 30px;
}

.padding3 {
    padding: 30px 45px;
}

.padding4 {
    padding: 40px 60px;
}

.kaca {
    backdrop-filter: blur(5px);
}

.kaca-hitam {
    background-color: #00000040;
    backdrop-filter: blur(5px);
}

.kaca-putih {
    background-color: #ffffff40;
    backdrop-filter: blur(5px);
}

.kaca-emas {
    background-color: #f5ce6d40;
    backdrop-filter: blur(5px);
}

.kaca-merah {
    background-color: #a62a1640;
    backdrop-filter: blur(5px);
}

.btn1 {
    background-color: var(--kem-oranye);
    color: var(--kem-putih);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #ffa53e;
    transition: transform .18s ease, background-color .18s ease;
}

.btn1:hover {
    background-color: #bd93f9;
    color: var(--kem-putih);
    transform: translateY(-2px) scale(1.03);
}

.btn2 {
    background-color: #ff712f;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #ffa53e;
    border-radius: 5px;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.btn2:hover {
    background-color: #bd93f9;
    color: var(--kem-putih);
    transform: translateY(-2px) scale(1.03);
}

.bg-oranye {
    background-color: #FFA500;
}

/* Border untuk oranye */
.border-oranye {
    border: 2px solid #FFA500;
}

.oren {
    color: var(--kem-oranye);
    font-weight: bold;
}

.bg-emas {
    background-color: #f5ce6d;
}

.bg-merah {
    background-color: #ff5100;
}

.bg-abu {
    background-color: #d3d3d3;
}
.bg-hitam {
    background-color: #000000;
}
.bg-putih {
    background-color: #ffffff;
}

.emas {
    color: #f5ce6d;
    font-weight: bold;
}
.merah {
    color: var(--kem-oranye);
    font-weight: bold;
}
.putih {
    color: var(--kem-putih);
    font-weight: bold;
}

.border-emas {
    border: 2px solid #f5ce6d;
}
.border-merah {
    border: 2px solid var(--kem-merah);
}
.border-putih {
    border: 2px solid var(--kem-putih);
}

.bg-emas-opacity-50 {
    background-color: rgba(245, 206, 109, 0.5);
}
.bg-merah-opacity-50 {
    background-color: rgba(166, 42, 22, 0.5);
}
.bg-putih-opacity-50 {
    background-color: rgba(255, 255, 255, 0.5);
}


.box {
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
}

.flex-items {
  display: flex;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
}

.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-center {
    justify-content: center;
    align-items: center;
}
.flex-start {
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-end {
    justify-content: flex-end;
    align-items: flex-end;
}
.flex-between {
    justify-content: space-between;
    align-items: center;
}
.flex-around {
    justify-content: space-around;
    align-items: center;
}
.flex-evenly {
    justify-content: space-evenly;
    align-items: center;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-align-start {
    align-items: flex-start;
}
.flex-align-end {
    align-items: flex-end;
}
.flex-align-center {
    align-items: center;
}


.w-100 {
    width: 100px;
}
.w-200 {
    width: 200px;
}
.w-300 {
    width: 300px;
}
.w-400 {
    width: 400px;
}
.w-500 {
    width: 500px;
}
.w-600 {
    width: 600px;
}
.w-700 {
    width: 700px;
}
.w-full {
    width: 100%;
}

.h-100 {
    height: 100px;
}
.h-200 {
    height: 200px;
}
.h-300 {
    height: 300px;
}
.h-400 {
    height: 400px;
}
.h-500 {
    height: 500px;
}
.h-600 {
    height: 600px;
}
.h-700 {
    height: 700px;
}
.h-full {
    height: 100%;
}

.-w-100 {
    min-width: 100px;
}
.-w-200 {
    min-width: 200px;
}
.-w-300 {
    min-width: 300px;
}
.-w-400 {
    min-width: 400px;
}
.-w-500 {
    min-width: 500px;
}
.-w-600 {
    min-width: 600px;
}
.-w-700 {
    min-width: 700px;
}

.-h-100 {
    min-height: 100px;
}
.-h-200 {
    min-height: 200px;
}
.-h-300 {
    min-height: 300px;
}
.-h-400 {
    min-height: 400px;
}
.-h-500 {
    min-height: 500px;
}
.-h-600 {
    min-height: 600px;
}
.-h-700 {
    min-height: 700px;
}

.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.gap-40 {
    gap: 40px;
}
.gap-50 {
    gap: 50px;
}
.gap-60 {
    gap: 60px;
}
.gap-70 {
    gap: 70px;
}
.gap-80 {
    gap: 80px;
}
.gap-90 {
    gap: 90px;
}
.gap-100 {
    gap: 100px;
}
