@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');

/* Perubahan Warna Utama ke Tema Banka Run Fest (Navy Blue / Biru Gelap Sporty) */
:root {
  --primary-color: #0A192F; /* Biru Navy Gelap */
  --secondary-color: #112240; /* Biru Navy Terang */
  --accent-color: #FF6B00; /* Oranye/Kuning Sporty */
}

header {
  background-color: var(--primary-color);
  z-index: 1046 !important;
  color: #fff;
}

footer {
  background-color: var(--primary-color);
  color: #fff;
  border-top: 2px solid var(--accent-color);
}

body {
  background-color: #f8f9fa; /* Latar belakang body diganti ke warna terang bersih */
  font-family: 'Poppins', sans-serif;
}

b, strong {
  font-weight: 700;
}

.thin {
  font-weight: 100;
}

/* Custom Background Themes */
.bg-theme {
  background-color: var(--primary-color) !important;
}

.bg-theme-dark {
  background-color: var(--secondary-color) !important;
}

.text-theme {
  color: var(--primary-color) !important;
}

/* Hero Section Styles */
.hero-section {
  background: url('../img/1.jpg') center center / cover no-repeat;
  min-height: 85vh;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7); /* Overlay biru navy agar teks terbaca jelas */
  z-index: 0;
}

.trapezium {
  transform: skew(-12deg) !important;
  white-space: nowrap;
}

#menuBurger .nav-link {
  padding: .5rem 1.6rem;
  color: #fff !important;
}

#menuBurger .nav-link.active {
  background-color: var(--accent-color);
  color: #fff !important;
  border-radius: 5px;
}

.pointer {
  cursor: pointer;
}

/* Hamburger Menu Icon */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  user-select: none;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham6 .top { stroke-dasharray: 40 172; }
.ham6 .middle { stroke-dasharray: 40 111; }
.ham6 .bottom { stroke-dasharray: 40 172; }
.ham6.active .top { stroke-dashoffset: -132px; }
.ham6.active .middle { stroke-dashoffset: -71px; }
.ham6.active .bottom { stroke-dashoffset: -132px; }

/* Countdown Timer */
.days, .hours, .minutes, .seconds, .tt {
  font-size: 30pt;
  line-height: 1;
  color: var(--accent-color); /* Angka timer berwarna oranye */
}

.timer .small {
  font-size: .7em;
  position: relative;
  margin-top: -1px;
  color: #fff;
}

.fixed-top {
  padding-right: 0 !important;
}