@font-face {
  font-family: 'Monoton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../media/fonts/5h1aiZUrOngCibe4TkHLQka4BU4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ===================================== */

:root {
--primary: #216038;
--secondary: #44865B;
--accent: #21FF00;
--text-light: #ffffff;
--text-dark: #1a1a1a;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


body {
font-family: 'Ubuntu', sans-serif;
background: linear-gradient(135deg, #2D3B32 0%, #1C2C24 100%);
color: var(--text-dark);
height: 100%;
overflow-x: hidden;
}

#btn-en {
  text-align: right;
  color: #21FF00;
  transition: all 1s ease-in-out;
}

#btn-id {
  text-align: right;
  color: #21FF00;
  transition: all 1s ease-in-out;
}

#playButton {
color: #21FF00;
width: auto;
display: flex;
text-align: center;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
color: #e0e0e0;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
a:hover {
color: var(--accent);
}

canvas {
height: 100vh;
z-index: -1000;
position: fixed;
top: 0;
left: 0;
}

.firstAlas {
display: flex;
margin: 2rem auto;
max-width: 1100px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 12px rgba(0,0,0,0.3);
background: white;
min-height: 80vh;
}

.namePage {
width: 35%;
background-color: var(--primary);
color: var(--text-light);
padding: 30px 20px;
text-align: center;
}

.card-avatar {
width: 120px;
height: 120px;
border-radius: 50%;
margin-bottom: 15px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
border: 3px solid #ffffff55;
}

.topImage {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.topImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.topImage img:nth-child(1) {
  z-index: 2;
  opacity: 1;
}

.topImage img:nth-child(2) {
  z-index: 1;
  opacity: 0;
}

.topImage:hover img:nth-child(1) {
  opacity: 0;
}

.topImage:hover img:nth-child(2) {
  opacity: 1;
}

.nameTop {
letter-spacing: 20px;
font-family: 'Monoton', cursive;
font-size: 2rem;
margin-bottom: 1rem;
margin-left: 35px;
transition: all 0.5s ease-in-out;
color: #ffffff;
}

.nameTop:hover {
color: var(--accent);
}

.card-contact {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 0;
}

.card-contact svg {
margin-top: 15px;
width: 20px;
height: 20px;
flex-shrink: 0;
}

.card-contact p {
margin: 0;
font-size: 15px;
line-height: 1.3;
}

.descriptionPage {
background-color: var(--secondary);
flex: 1;
position: relative;
overflow: hidden;
padding: 20px 0;
}

.card-content {
position: relative;
margin-top: 1rem;
padding-left: 2rem;
padding-right: 1rem;
max-height: 97vh;
overflow-y: auto;
scroll-behavior: smooth;
}

.card-content::-webkit-scrollbar {
width: 6px;
}

.card-content::-webkit-scrollbar-thumb {
background-color: #2e383275;
border-radius: 3px;
}

.card-timeline {
position: absolute;
top: 30px;
left: 38px;
bottom: 0;
width: 2px;
background: linear-gradient(to top, var(--secondary), var(--accent));
}

.card-item {
position: relative;
padding-left: 30px;
padding-bottom: 40px;
animation: fadeInUp 0.6s ease forwards;
animation-delay: calc(0.05s * var(--i));
opacity: 0;
}
.card-item:hover {
transform: translateX(5px);
transition: all 2s ease;
}

@keyframes fadeInUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInRight {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 100%;
    opacity: 0.5;
  }
  100% {
    width: var(--width);
    opacity: 1;
  }
}

.card-item-title {
font-weight: 600;
font-size: 16px;
color: #ffffff;
}

.card-item-desc {
font-size: 14px;
color: #eaeaea;
margin-top: 4px;
}

.card-item-desc a {
font-size: 14px;
color: #76FF01;
margin-top: 4px;
}

.circle {
  position: absolute;
  top: 5px;
  left: -15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #dceccf, #84b06d);
  border: 2px solid #2d511b;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 3s ease-in-out;
}

.circle::before,
.circle::after {
content: "";
position: absolute;
width: 6px;
height: 6px;
background-color: #2d511b;
border-radius: 50%;
opacity: 0.5;
transition: all 5s ease-in-out;
}

.circle::before {
top: -4px;
left: 12px;
}

.circle::after {
top: 12px;
left: -4px;
}

.circle-pending {
  margin-bottom: 2px;
  left: -15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff9100;
  border: 2px solid #000000;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.circle-done {
  margin-bottom: 2px;
  left: -15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ff22;
  border: 2px solid #000000;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 3s ease-in-out;
}

.yearTime {
color: #ddd;
font-size: 11px;
font-weight: bold;
margin-bottom: 6px;
}

.about {
display: flex;
text-align: left;
margin-top: 15px;
margin-left: 10px;
}

.tabs-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #2e383275 transparent;
}

.tabs-container::-webkit-scrollbar {
  height: 6px;
}

.tabs-container::-webkit-scrollbar-thumb {
  background-color: #2e383275;
  border-radius: 3px;
}

.tabs-container::-webkit-scrollbar-track {
  background: transparent;
}

.page-tabs {
  display: inline-flex;
  gap: 1rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.page-tabs button {
  flex-shrink: 0;
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-tabs button.active {
  color: #ffffff;
}

button:hover {
color: var(--accent);
}

.achievements-section {
width: 90%;
height: 90%;
animation: fadeInUp 0.6s ease forwards;
background-color: #366d4b;
padding: 2rem;
border-radius: 12px;
margin: 2rem 1rem;
color: #fff;
}

.achievements-title {
animation: fadeInUp 0.6s ease forwards;
font-size: 1.6rem;
margin-bottom: 1rem;
text-align: left;
color: #e0ffe0;
}

.achievements-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1rem;
}

.achievement-card {
background-color: #44865B;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
}

.achievement-card:hover {
transform: scale(1.03);
}

.achievement-card h4 {
margin-bottom: 0.5rem;
font-size: 1.6rem;
color: #caffca;
}

.achievement-card p {
font-size: 1.3rem;
color: #f0fff0;
}

.certificate-slider {
display: flex;
overflow-x: auto;
gap: 1rem;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
padding-bottom: 10px;
}

.certificate-slider img {
width: 100%;
max-width: 300px;
scroll-snap-align: start;
border-radius: 10px;
border: 2px solid #ccc;
flex-shrink: 0;
transition: transform 0.3s ease;
}

.certificateTitle {
animation: fadeInUp 0.6s ease forwards;
font-size: 2rem;
color: #caffca;
transition: all 3s ease-in-out;
}

.achievement-card-certificate {
animation: fadeInUp 0.6s ease forwards;
background-color: #44865B;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
scrollbar-width: thin;
scrollbar-color: #2e383275 transparent;
}

.card-desc {
text-align: left;
line-height: 0.3;
font-size: 14px;
font-weight: 400;
font-size: 15px;
}

.card-subtitle {
color: #BDBDBD;
text-align: left;
font-weight: 700;
font-size: 18px;
margin-bottom: 10px;
}

.card-subtitle-header {
margin-top: 40px;
}

footer {
text-align: center;
padding: 1rem;
font-size: 0.85rem;
color: #aaa;
border-top: 1px solid #333;
margin-top: 3rem;
}




/* ============ B A T A S =============*/

.bar {
width: 100%;
height: 14px;
background: #333;
border-radius: 30px;
overflow: hidden;
margin-top: 5px;
box-shadow: inset 0 0 5px #000;
transition: all 5s ease-in-out;
}

.progress {
animation: fadeInRight 2s ease forwards;
height: 100%;
background: linear-gradient(90deg, #5ded97, #1e7f4f);
width: 0%;
transition: all 3s ease-in-out;
border-radius: 8px;
}

.skills-grid {
position: relative;
margin-top: 1rem;
padding-left: 2rem;
padding-right: 1rem;
max-height: 90vh;
overflow-y: auto;
scroll-behavior: smooth;
}

.skills-grid::-webkit-scrollbar {
width: 6px;
}

.skills-grid::-webkit-scrollbar-thumb {
background-color: #2e383275;
border-radius: 3px;
}

.projects-grid {
position: relative;
margin-top: 1rem;
padding-left: 2rem;
padding-right: 1rem;
max-height: 90vh;
overflow-y: auto;
scroll-behavior: smooth;
}

.projects-grid::-webkit-scrollbar {
width: 6px;
}

.projects-grid::-webkit-scrollbar-thumb {
background-color: #2e383275;
border-radius: 3px;
}

.projects-section {
width: 90%;
height: 90%;
animation: fadeInUp 0.6s ease forwards;
background-color: #366d4b;
padding: 2rem;
border-radius: 12px;
margin: 2rem 1rem;
color: #fff;
}

.projects-card img {
margin-bottom: 5%;
display: flex;
justify-self: center;
border-radius: 5%;
width: 100%;
max-width: 300px;
}

.skill-card {
margin-bottom: 3rem;
width: 100%;
box-sizing: border-box;
}

.projects-card {
margin-bottom: 5rem;
width: 100%;
background-color: #44865B;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
}

.projects-card:hover {
transform: scale(1.03);
}

.projects-card h4 {
margin-bottom: 0.5rem;
font-size: 1.6rem;
color: #caffca;
}

.projects-card p {
font-size: 1.3rem;
color: #f0fff0;
}

.projects-title {
margin-left: 0.5rem;
animation: fadeInUp 0.6s ease forwards;
font-size: 2rem;
color: #caffca;
transition: all 3s ease-in-out;
}

.bahasaTitleFirst {
margin-left: 0.5rem;
animation: fadeInUp 0.6s ease forwards;
font-size: 2rem;
color: #caffca;
transition: all 3s ease-in-out;
}

.bahasaTitle {
font-weight: bold;
font-size: 1.5rem;
color: #caffca;
}

.skill-section {
width: 90%;
height: 90%;
animation: fadeInUp 0.6s ease forwards;
background-color: #366d4b;
padding: 2rem;
border-radius: 12px;
margin: 2rem 1rem;
color: #fff;
}

.skill-card {
background-color: #44865B;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
}

.skill-card img {
width: 50px;
}

.skill-card:hover {
transform: scale(1.03);
}

.allPeople-names button {
color: #3b443a3b;
width: auto;
display: flex;
margin: auto;
text-align: center;
transition: all 1s ease-in-out;
}

.allPeople-names button:hover {
color: #21FF00;
}

.allPeople-section {
width: 96%;
height: 90%;
animation: fadeInUp 0.6s ease forwards;
background-color: #366d4b;
padding: 2rem;
border-radius: 12px;
margin: 2rem 1rem;
color: #fff;
}

.allPeople-names {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px 24px;
justify-items: center;
margin: 24px 0;
}

.allPeople-names a {
display: inline-block;
padding: 8px 18px;
background: #f3f3f3;
border-radius: 8px;
color: #222;
text-decoration: none;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
transition: background 0.2s, color 0.2s;
cursor: pointer;
}

.allPeople-names a:hover {
background: #ffe066;
color: #222;
}

.allPeople-grid {
position: relative;
margin-top: 1rem;
padding-left: 2rem;
padding-right: 1rem;
max-height: 90vh;
overflow-y: auto;
scroll-behavior: smooth;
}

.allPeople-grid::-webkit-scrollbar {
width: 6px;
}

.allPeople-grid::-webkit-scrollbar-thumb {
background-color: #2e383275;
border-radius: 3px;
}


/* ===================================== */
/*         TEMA DEFAULT (TERANG)         */
/* ===================================== */


body.terang {
  --primary: #216038;
  --secondary: #44865B;
  --accent: #21FF00;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  background: linear-gradient(135deg, #2D3B32 0%, #1C2C24 100%);
  transition: all 3s ease-in-out;
}

body.terang .firstAlas,
body.terang .namePage,
body.terang .descriptionPage,
body.terang .card-item-title,
body.terang .card-item-desc,
body.terang .yearTime,
body.terang .achievements-section,
body.terang .achievement-card-certificate,
body.terang .skill-section,
body.terang .skill-card,
body.terang .projects-section,
body.terang .projects-card,
body.terang .achievement-card,
body.terang .allPeople-section,
body.terang button,
body.terang .page-tabs,
body.terang .progress {
  transition: all 0.5s ease-in-out;
}

body.terang .nameTop:hover {
  color: var(--accent);
  text-shadow: 0 0 10px #21FF00;
}

body.terang .topImage img {
  border: 3px solid #21FF0055;
  transition: border-color 1s ease;
}

body.terang .progress {
  transition: background 3s ease, width 3s ease-in-out;
}

body.terang .page-tabs button {
  transition: all 0.6s ease-in-out;
}

body.terang .card-item:hover {
  transition: all 0.2s ease;
}

body.terang .achievement-card:hover,
body.terang .skill-card:hover {
  transition: transform 0.2s ease;
}



/* ===================================== */
/*           TEMA PAGI                   */
/* ===================================== */

body.pagi {
  background: #CC9C00;
  transition: all 11s ease-in-out;
}

body.pagi .firstAlas {
  background: #9C7700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: all 11s ease-in-out;
}

body.pagi .namePage {
  background-color: #755A00;
  color: #e8e8e8;
  transition: all 11s ease-in-out;
}

body.pagi .descriptionPage {
  background-color: #9C7700;
  transition: all 11s ease-in-out;
}

body.pagi .certificateTitle,
body.pagi .card-item-title,
body.pagi .achievements-title,
body.pagi h4,
body.pagi .card-item-desc,
body.pagi .bahasaTitle,
body.pagi .bahasaTitleFirst,
body.pagi .yearTime {
  color: #e8e8e8;
  transition: all 11s ease-in-out;
}

body.pagi .page-tabs button.active {
  color: #e8e8e8;
  background-color: #755A00;
}

body.pagi .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

body.pagi .achievements-section,
body.pagi .achievement-card-certificate,
body.pagi .skill-section,
body.pagi .skill-card,
body.pagi .projects-section,
body.pagi .allPeople-section,
body.pagi .projects-card,
body.pagi .achievement-card {
  background-color: #755A00;
  transition: all 11s ease-in-out;
}

body.pagi .bar {
  background: #A06F00;
  transition: all 11s ease-in-out;
}

body.pagi .progress {
  background: #FF9900;
  transition: all 11s ease-in-out;
}

body.pagi .topImage img {
  border: 3px solid #ff8c4255;
  transition: all 11s ease-in-out;
}

body.pagi .nameTop:hover {
  color: #FFCF00;
  text-shadow: 0 0 10px #ff8c42;
}

body.pagi button {
  background: #9C7700;
  transition: all 11s ease-in-out;
}



/* ===================================== */
/*.         TEMA PAGI-SIANG              */
/* ===================================== */

body.pagi-siang {
  background: #FFF5C3;
  transition: all 11s ease-in-out;
}

body.pagi-siang .firstAlas {
  background: #CFC387;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: all 11s ease-in-out;
}

body.pagi-siang .namePage {
  background-color: #B4A663;
  color: #e8e8e8;
  transition: all 11s ease-in-out;
}

body.pagi-siang .descriptionPage {
  background-color: #CFC387;
  transition: all 11s ease-in-out;
}

body.pagi-siang .certificateTitle,
body.pagi-siang .card-item-title,
body.pagi-siang .achievements-title,
body.pagi-siang h4,
body.pagi-siang .card-item-desc,
body.pagi-siang .bahasaTitle,
body.pagi-siang .bahasaTitleFirst,
body.pagi-siang .card-desc,
body.pagi-siang .card-subtitle,
body.pagi-siang .card-subtitle-header,
body.pagi-siang .yearTime {
  color: #e8e8e8;
  transition: all 11s ease-in-out;
}

body.pagi-siang .page-tabs button.active {
  color: #e8e8e8;
  background-color: #B59A3F;
}

body.pagi-siang .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.pagi-siang .achievements-section,
body.pagi-siang .achievement-card-certificate,
body.pagi-siang .skill-section,
body.pagi-siang .skill-card,
body.pagi-siang .projects-section,
body.pagi-siang .allPeople-section,
body.pagi-siang .projects-card,
body.pagi-siang .achievement-card {
  background-color: #B59A3F;
  transition: all 11s ease-in-out;
}

body.pagi-siang .bar {
  background: #8B774B;
  transition: all 11s ease-in-out;
}

body.pagi-siang .progress {
  background: #C3AC8B;
  transition: all 11s ease-in-out;
}

body.pagi-siang .topImage img {
  transition: all 11s ease-in-out;
  border: 3px solid #88704E;
}

body.pagi-siang .nameTop:hover {
  color: #FFCF00;
  text-shadow: 0 0 10px #ff8c42;
}

body.pagi-siang button {
  background: #E0C56D;
  transition: all 11s ease-in-out;
}

/* ===================================== */
/*.             TEMA SIANG               */
/* ===================================== */

body.siang {
  background: #5D9CEC;
  transition: all 5.5s ease-in-out;
}

body.siang .firstAlas {
  background: #A5C7F5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 5.5s ease-in-out;
}

body.siang .namePage {
  background-color: #2362B3;
  color: #FFFFFF;
  transition: all 5.5s ease-in-out;
}

body.siang .descriptionPage {
  background-color: #A5C7F5;
  transition: all 5.5s ease-in-out;
}

body.siang .certificateTitle,
body.siang .card-item-title,
body.siang .achievements-title,
body.siang h4,
body.siang .card-item-desc,
body.siang .bahasaTitle,
body.siang .bahasaTitleFirst,
body.siang .card-desc,
body.siang .card-subtitle,
body.siang .card-subtitle-header,
body.siang .yearTime {
  color: #FFFFFF;
  transition: all 5.5s ease-in-out;
}

body.siang .page-tabs button.active {
  color: #FFFFFF;
  background-color: #4A89DC;
}

body.siang .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

body.siang .achievements-section,
body.siang .achievement-card-certificate,
body.siang .skill-section,
body.siang .skill-card,
body.siang .projects-section,
body.siang .allPeople-section,
body.siang .projects-card,
body.siang .achievement-card {
  background-color: #5D9CEC;
  transition: all 5.5s ease-in-out;
}

body.siang .bar {
  background: #3B7DDD;
  transition: all 5.5s ease-in-out;
}

body.siang .progress {
  background: #89B3F5;
  transition: all 5.5s ease-in-out;
}

body.siang .topImage img {
  border: 3px solid #4A89DC;
  transition: all 5.5s ease-in-out;
}

body.siang .nameTop:hover {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

body.siang button {
  background: #4A89DC;
  transition: all 5.5s ease-in-out;
}



/* ===================================== */
/*            TEMA SIANG-SORE            */
/* ===================================== */

body.siang-sore {
  background: #BDA680;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .firstAlas {
  background: #DDC290;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 5.5s ease-in-out;
}

body.siang-sore .namePage {
  background-color: #DDAE61;
  color: #FFF8DC;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .descriptionPage {
  background-color: #E1CAA5;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .certificateTitle,
body.siang-sore .card-item-title,
body.siang-sore .achievements-title,
body.siang-sore h4,
body.siang-sore .card-item-desc,
body.siang-sore .bahasaTitle,
body.siang-sore .bahasaTitleFirst,
body.siang-sore .card-desc,
body.siang-sore .card-subtitle,
body.siang-sore .card-subtitle-header,
body.siang-sore .yearTime {
  color: #FFFFFF;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .page-tabs button.active {
  color: #FFF8DC;
  background-color: #C8A268;
}

body.siang-sore .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

body.siang-sore .achievements-section,
body.siang-sore .achievement-card-certificate,
body.siang-sore .skill-section,
body.siang-sore .skill-card,
body.siang-sore .projects-section,
body.siang-sore .allPeople-section,
body.siang-sore .projects-card,
body.siang-sore .achievement-card {
  background-color: #B58E4E;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .bar {
  background: #9B8258;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .progress {
  background: #DCB887;
  transition: all 5.5s ease-in-out;
}

body.siang-sore .topImage img {
  border: 3px solid #FFD98D;
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
  transition: all 5.5s ease-in-out;
}

body.siang-sore .nameTop:hover {
  color: #939393;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.siang-sore button {
  background-color: #FFD287;
  transition: all 5.5s ease-in-out;
}

body.siang-sore button:hover {
  background-color: #FFD897;
}



/* ===================================== */
/*           TEMA SORE                   */
/* ===================================== */

body.sore {
  background: #FFA51F;
  transition: all 10.5s ease-in-out;
}

body.sore .firstAlas {
  background: #FFA51F;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 10.5s ease-in-out;
}

body.sore .namePage {
  background-color: #DC8400;
  color: #FFF8DC;
  transition: all 10.5s ease-in-out;
}

body.sore .descriptionPage {
  background-color: #ECB25B;
  transition: all 10.5s ease-in-out;
}

body.sore .certificateTitle,
body.sore .card-item-title,
body.sore .achievements-title,
body.sore h4,
body.sore .card-item-desc,
body.sore .bahasaTitle,
body.sore .bahasaTitleFirst,
body.sore .card-desc,
body.sore .card-subtitle,
body.sore .card-subtitle-header,
body.sore .yearTime {
  color: #FFFFFF;
  transition: all 10.5s ease-in-out;
}

body.sore .page-tabs button.active {
  color: #FFF8DC;
  background-color: #B57413;
}

body.sore .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.sore .achievements-section,
body.sore .achievement-card-certificate,
body.sore .skill-section,
body.sore .skill-card,
body.sore .projects-section,
body.sore .allPeople-section,
body.sore .projects-card,
body.sore .achievement-card {
  background-color: #D48817;
  transition: all 10.5s ease-in-out;
}

body.sore .bar {
  background: #9D6A1D;
  transition: all 10.5s ease-in-out;
}

body.sore .progress {
  background: #FF9900;
  transition: all 10.5s ease-in-out;
}

body.sore .topImage img {
  border: 3px solid #FF9900;
  transition: all 10.5s ease-in-out;
}

body.sore .nameTop:hover {
  color: #BD7100;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.sore button {
  background-color: #C47E14;
  transition: all 10.5s ease-in-out;
}

body.sore button:hover {
  background-color: #FFA51F;
}


/* ===================================== */
/*           TEMA SORE-MALAM             */
/* ===================================== */

body.sore-malam {
  background: #FFA07A;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .firstAlas {
  background: #FFA07A;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 5.5s ease-in-out;
}

body.sore-malam .namePage {
  background-color: #E6774A;
  color: #FFF8DC;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .descriptionPage {
  background-color: #D69479;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .certificateTitle,
body.sore-malam .card-item-title,
body.sore-malam .achievements-title,
body.sore-malam h4,
body.sore-malam .card-item-desc,
body.sore-malam .bahasaTitle,
body.sore-malam .bahasaTitleFirst,
body.sore-malam .card-desc,
body.sore-malam .card-subtitle,
body.sore-malam .card-subtitle-header,
body.sore-malam .yearTime {
  color: #FFFFFF;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .page-tabs button.active {
  color: #FFF8DC;
  background-color: #D3896B;
}

body.sore-malam .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.sore-malam .achievements-section,
body.sore-malam .achievement-card-certificate,
body.sore-malam .skill-section,
body.sore-malam .skill-card,
body.sore-malam .projects-section,
body.sore-malam .allPeople-section,
body.sore-malam .projects-card,
body.sore-malam .achievement-card {
  background-color: #FF8D5F;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .bar {
  background: #CD5221;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .progress {
  background: #FF8B5C;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .topImage img {
  border: 3px solid #FA7F4E;
  transition: all 5.5s ease-in-out;
}

body.sore-malam .nameTop:hover {
  color: #FF692E;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.sore-malam button {
  background-color: #E86F3E;
  transition: all 5.5s ease-in-out;
}

body.sore-malam button:hover {
  background-color: #FFA07A;
}


/* ===================================== */
/*           TEMA SORE-MALAM2             */
/* ===================================== */

body.sore-malam2 {
  background: #3F3E7D;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .firstAlas {
  background: #3F3E7D;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .namePage {
  background-color: #2A2883;
  color: #FFF8DC;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .descriptionPage {
  background-color: #6261A6;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .certificateTitle,
body.sore-malam2 .card-item-title,
body.sore-malam2 .achievements-title,
body.sore-malam2 h4,
body.sore-malam2 .card-item-desc,
body.sore-malam2 .bahasaTitle,
body.sore-malam2 .bahasaTitleFirst,
body.sore-malam2 .card-desc,
body.sore-malam2 .card-subtitle,
body.sore-malam2 .card-subtitle-header,
body.sore-malam2 .yearTime {
  color: #FFFFFF;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .page-tabs button.active {
  color: #FFF8DC;
  background-color: #4340D1;
}

body.sore-malam2 .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.sore-malam2 .achievements-section,
body.sore-malam2 .achievement-card-certificate,
body.sore-malam2 .skill-section,
body.sore-malam2 .skill-card,
body.sore-malam2 .projects-section,
body.sore-malam2 .allPeople-section,
body.sore-malam2 .projects-card,
body.sore-malam2 .achievement-card {
  background-color: #25244D;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .bar {
  background: #262560;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .progress {
  background: #5856B0;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .topImage img {
  border: 3px solid #3F3E7D;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 .nameTop:hover {
  color: #3F3E7D;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.sore-malam2 button {
  background-color: #3F3E7D;
  transition: all 8.5s ease-in-out;
}

body.sore-malam2 button:hover {
  background-color: #3F3E7D;
}


/* ===================================== */
/*            TEMA MALAM                 */
/* ===================================== */

body.malam {
  background: #0A2C55;
  transition: all 11s ease-in-out;
}

body.malam .firstAlas {
  background: #0A2C55;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 11s ease-in-out;
}

body.malam .namePage {
  background-color: #1A2D43;
  color: #FFF8DC;
  transition: all 11s ease-in-out;
}

body.malam .descriptionPage {
  background-color: #134786;
  transition: all 11s ease-in-out;
}

body.malam .certificateTitle,
body.malam .card-item-title,
body.malam .achievements-title,
body.malam h4,
body.malam .card-item-desc,
body.malam .bahasaTitle,
body.malam .bahasaTitleFirst,
body.malam .card-desc,
body.malam .card-subtitle,
body.malam .card-subtitle-header,
body.malam .yearTime {
  color: #FFFFFF;
  transition: all 11s ease-in-out;
}

body.malam .page-tabs button.active {
  color: #FFF8DC;
  background-color: #234063;
}

body.malam .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


body.malam .achievements-section,
body.malam .achievement-card-certificate,
body.malam .skill-section,
body.malam .skill-card,
body.malam .projects-section,
body.malam .allPeople-section,
body.malam .projects-card,
body.malam .achievement-card {
  background-color: #003575;
  transition: all 11s ease-in-out;
}

body.malam .bar {
  background: #021E41;
  transition: all 11s ease-in-out;
}

body.malam .progress {
  background: #145098;
  transition: all 11s ease-in-out;
}

body.malam .topImage img {
  border: 3px solid #20518C;
  transition: all 11s ease-in-out;
}

body.malam .nameTop:hover {
  color: #0A2C55;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.malam button {
  background-color: #0A2C55;
  transition: all 11s ease-in-out;
}

body.malam button:hover {
  background-color: #0A2C55;
}


/* ===================================== */
/*           TEMA MALAM2                 */
/* ===================================== */

body.malam2 {
  background: #000F22;
  transition: all 11s ease-in-out;
}

body.malam2 .firstAlas {
  background: #031B39;
  box-shadow: 0 6px 12px rgba(139, 137, 112, 0.3);
  transition: all 11s ease-in-out;
}

body.malam2 .namePage {
  background-color: #0A274B;
  color: #FFF8DC;
  transition: all 11s ease-in-out;
}

body.malam2 .descriptionPage {
  background-color: #003270;
  transition: all 11s ease-in-out;
}

body.malam2 .certificateTitle,
body.malam2 .card-item-title,
body.malam2 .achievements-title,
body.malam2 h4,
body.malam2 .card-item-desc,
body.malam2 .bahasaTitle,
body.malam2 .bahasaTitleFirst,
body.malam2 .card-desc,
body.malam2 .card-subtitle,
body.malam2 .card-subtitle-header,
body.malam2 .yearTime {
  color: #FFFFFF;
  transition: all 11s ease-in-out;
}

body.malam2 .page-tabs button.active {
  color: #FFF8DC;
  background-color: #002A5F;
}

body.malam2 .page-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.malam2 .achievements-section,
body.malam2 .achievement-card-certificate,
body.malam2 .skill-section,
body.malam2 .skill-card,
body.malam2 .projects-section,
body.malam2 .allPeople-section,
body.malam2 .projects-card,
body.malam2 .achievement-card {
  background-color: #0F2E55;
  transition: all 11s ease-in-out;
}

body.malam2 .bar {
  background: #001229;
  transition: all 11s ease-in-out;
}

body.malam2 .progress {
  background: #0C3366;
  transition: all 11s ease-in-out;
}

body.malam2 .topImage img {
  border: 3px solid #183E6D;
  transition: all 11s ease-in-out;
}

body.malam2 .nameTop:hover {
  color: #144178;
  text-shadow: 0 0 8px rgba(205, 133, 63, 0.4);
}

body.malam2 button {
  background-color: #12345F;
  transition: all 11s ease-in-out;
}

body.malam2 button:hover {
  background-color: #0A2C55;
}




/*  KUNANG-KUNANG */
#fireflies-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.firefly {
  position: absolute;
  border-radius: 50%;
  background-color: #f5f3a2;
  transform: translate(0, 0);
  opacity: 0;
  will-change: transform, opacity;
}

.firefly.type-a {
  width: 6px;
  height: 6px;
  box-shadow:
    0 0 8px 3px rgba(255, 248, 160, 0.8),
    0 0 18px 6px rgba(255, 248, 160, 0.4);
}

.firefly.type-b {
  width: 5px;
  height: 5px;
  box-shadow:
    0 0 6px 2px rgba(255, 240, 180, 0.7),
    0 0 15px 4px rgba(255, 240, 180, 0.3);
}

.firefly.type-c {
  width: 7px;
  height: 7px;
  box-shadow:
    0 0 10px 4px rgba(255, 245, 170, 0.9),
    0 0 22px 8px rgba(255, 245, 170, 0.5);
}


/* Untuk Versi Mobile */

@media (max-width: 768px) {
.firefly {
  width: 4px !important;
  height: 4px !important;
}
  
.firefly.type-a, 
.firefly.type-b, 
.firefly.type-c {
width: 4px;
 height: 4px;
  }  

.nameTop {
display: flex;
justify-content: center;
margin-left: 35px;
}

.firstAlas {
flex-direction: column;
margin: 10px;
}
.namePage {
width: 100%;
border-radius: 0;
text-align: center;
}
.descriptionPage {
padding: 10px 10px 40px 20px;
}
.card-content {
padding-left: 40px;
}
.card-timeline {
left: 20px;
}
.card-item {
padding-left: 20px;
}

.certificate-slider img {
    max-width: 90vw;
  }
}
