
/* custom override: black/dark theme with blue technology accent */
body {
background-color: #000000;
/* solid black background */
color: #e0e0e0;
/* soft white text */
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

p {
color: #e0e0e0;
}


a {
color: #0d6efd;
/* bootstrap primary blue */
text-decoration: none;
transition: color 0.2s ease-in-out;
}

a:hover {
color: #3b8eff;
/* brighter blue */
text-decoration: underline;
}

.bg-black-custom {
background-color: #0a0a0a;
/* slightly off-black for cards/navbar */
}

.navbar,
.card,
footer section {
background-color: #111111;
/* deep dark gray, almost black */
border: none;
box-shadow: 0 4px 12px rgba(0, 100, 255, 0.2);
/* subtle blue glow */
}

.btn-outline-primary {
border-color: #0d6efd;
color: #0d6efd;
}

.btn-outline-primary:hover {
background-color: #0d6efd;
color: #000;
border-color: #0d6efd;
}

.btn-primary {
background-color: #0d6efd;
border-color: #0d6efd;
color: #000;
font-weight: 500;
}

.btn-primary:hover {
background-color: #3b8eff;
border-color: #3b8eff;
color: #000;
}

.card {
background-color: #111111;
border-left: 4px solid #0d6efd;
/* blue tech accent */
border-radius: 1rem;
transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(13, 110, 253, 0.3);
}

.card-title a {
color: #ffffff;
font-weight: 600;
}

.card-title a:hover {
color: #0d6efd;
}

hr {
border-color: #0d6efd;
opacity: 0.3;
}

.section-header h2 {
color: #ffffff;
border-bottom: 2px solid #0d6efd;
display: inline-block;
padding-bottom: 0.5rem;
margin-bottom: 1.5rem;
}

footer {
border-top: 2px solid #0d6efd;
background-color: #0a0a0a;
}

footer a {
color: #adb5bd;
}

footer a:hover {
color: #0d6efd;
}

.navbar-toggler {
border-color: #0d6efd;
}

.text-accent {
color: #0d6efd;
}

.bg-accent-soft {
background-color: rgba(13, 110, 253, 0.1);
}

/* Style untuk logo gambar */
img {
max-height: 40px;
/* Atur tinggi maksimal logo */
width: auto;
/* Lebar menyesuaikan agar proporsional */
transition: filter 0.2s;
}

/* Pastikan logo tidak terlalu besar di mobile */
@media (max-width: 576px) {
img {
max-height: 35px;
}
}

.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath
stroke='%230d6efd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4
23h22'/%3e%3c/svg%3e");
}