/*
Theme Name: Tech Tracers
Theme URI: https://techtracers.com
Author: Wessel de Heus
Author URI: https://techtracers.com
Description: Custom thema voor de Tech Tracers blog.
Version: 1.0
*/

body {
  background: #f8f9fa;
  color: #222;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.card {
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.card-title a {
  color: #222;
  text-decoration: none;
}
.card-title a:hover {
  color: #0d6efd;
}

.badge.bg-primary {
  background: linear-gradient(90deg, #0d6efd 60%, #6610f2 100%);
}

footer {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.navbar-brand img {
  vertical-align: middle;
}

::-webkit-scrollbar {
  width: 8px;
  background: #e9ecef;
}
::-webkit-scrollbar-thumb {
  background: #adb5bd;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .navbar-brand span {
    font-size: 1.2rem;
  }
  .container.mt-5 {
    margin-top: 2rem !important;
  }
}