html, body {
  overflow-x: hidden;
}

/**
 * Enable smooth scrolling on the whole document
 */
html {
  scroll-behavior: smooth;
}

/**
 * Disable smooth scrolling when users have prefers-reduced-motion enabled
 */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/**
 * Add .section to every anchored element for scroll margin
 */
.section {
  scroll-margin-top: 2rem;
}

/* Header */
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3rem;
  text-decoration: none;
}

@media (min-width: 48em) {
  .site-title {
    float: left;
  }
}

.nav-link {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8) !important;
}

.social-nav .nav-link {
  padding: 0 0.5rem;
  font-size: 1.1rem;
  line-height: 2.5rem;
}

.nav-link:hover,
.nav-link:focus,
.active .nav-link {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Hero (intro) section */
.intro-title {
  font-weight: 800;
}

@-webkit-keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.wave-bg {
  display: block;
  height: 220px;
  width: 100%;
  min-width: 600px;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/wave-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
}

img.avatar {
  border-radius: 30px;
}

/* Masonary grid for portfolio */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* Grid Item */
.grid-sizer,
.grid-item {
  width: 100%;
}

.grid-item {
  padding-bottom: 12px;
}

@media (min-width: 48em) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
  .grid-item {
    float: left;
    padding: 6px;
  }
}

.grid-item img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Portfolio */
.portolio-section .container {
  padding: 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

.portfolio-item figcaption {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.35s;
  transform: translate3d(0, 100%, 0);
}

.portfolio-item figcaption h4 {
  color: #222;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}

.portfolio-item figcaption p {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.portfolio-item:hover figcaption {
  transform: translate3d(0, 0, 0);
}

/* Portolio Caption */
#bp_container .bp-xc {
  background: #F6E05E !important;
}

#bp_caption a {
  text-decoration: none;
}

/* Footer section */
footer a:not(.nav-link) {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Scroll Top */
#scrolltop {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-in;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#scrolltop .btn {
  padding: 3px 11px;
  border-radius: 50%;
}

/* Additional utility styles */
.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
}

.text-small {
  font-size: 0.875rem;
}

.text-uppercase {
  letter-spacing: 0.05em;
}

.hover-effect {
  transition: transform .18s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-2px);
}

.marker {
  position: relative;
  display: inline;
  width: auto;
}

.marker-center {
  padding-right: 0;
}

.marker:after {
  content: "";
  width: 125px;
  height: 30px;
  position: absolute;
  bottom: -25px;
  right: -30px;
  background-image: url("../images/marker.svg");
  background-repeat: no-repeat;
}

.marker-center:after {
  bottom: -30px;
  left: 50%;
  margin-left: -60px;
}

@media (max-width: 575.98px) {
  .marker {
    padding-right: 0;
  }
  .marker:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
  }
}

.entry-title a {
  text-decoration: none;
}
/* --- DARK MODE IMPLEMENTATION --- */

/* Efek transisi halus untuk seluruh elemen */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Warna Dasar Dark Mode */
body.dark-mode {
  background-color: #121212;
  color: #f8f9fa;
}

/* Override Background Light */
.dark-mode .bg-light,
.dark-mode header,
.dark-mode footer.bg-light,
.dark-mode nav.navbar.bg-light {
  background-color: #1e1e1e !important;
  color: #f8f9fa !important;
}

/* Navigasi (Menangani !important dari main.css asli) */
.dark-mode .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.dark-mode .nav-link:hover,
.dark-mode .active .nav-link {
  color: #F6E05E !important; /* Warna kuning marker kamu agar kontras */
}

/* Kartu & Portfolio */
.dark-mode .card {
  background-color: #252525;
  border-color: #333;
  color: #f8f9fa;
}

.dark-mode .card-header {
  background-color: #2d2d2d;
  border-bottom: 1px solid #444;
}

.dark-mode .portfolio-item figcaption {
  background: rgba(30, 30, 30, 0.9);
}

.dark-mode .portfolio-item figcaption h4 {
  color: #F6E05E;
}

/* Teks & Deskripsi */
.dark-mode .text-muted,
.dark-mode .text-secondary {
  color: #adb5bd !important;
}

.dark-mode .intro-title.marker {
  color: #ffffff;
}

/* Perbaikan Kontras Tabel Market di Dark Mode */
.dark-mode .table {
  color: #f8f9fa !important; /* Warna teks utama tabel */
}

.dark-mode .table thead th {
  background-color: #2d2d2d !important; /* Warna latar header tabel */
  color: #F6E05E !important; /* Warna kuning marker agar Ticker & Price sangat menonjol */
  border-bottom: 2px solid #444 !important;
}

.dark-mode .table td {
  color: #e0e0e0 !important;
  border-color: #333 !important;
}

/* Warna saat baris tabel di-hover */
.dark-mode .table-hover tbody tr:hover {
  background-color: #333 !important;
  color: #ffffff !important;
}

/* Pastikan teks di dalam badge tetap terbaca */
.dark-mode .badge.bg-success {
  background-color: #198754 !important;
  color: #ffffff !important;
}

/* Custom Badges untuk tampilan Stockbit-look */
.badge-dt {
    background-color: #f39c12;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.badge-tl {
    background-color: #2980b9;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

/* Efek Hover baris tabel */
.hover-effect:hover {
    background-color: rgba(0, 123, 255, 0.05) !important;
    transform: scale(1.01);
    transition: all 0.2s ease-in-out;
}

.dark-mode .hover-effect:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Animasi Pulse untuk Loader */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    height: 20px;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
