html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ---- Portfolio theme ------------------------------------------------ */
.hero {
  background: linear-gradient(160deg, #1f2430 0%, #2b3242 100%);
  color: #f3f5f9;
  border-radius: 16px;
  padding: 3.5rem 2rem;
}
.hero .text-muted { color: #c4ccda !important; }

.project-card {
  border: 1px solid #e6e8ec;
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
  transition: box-shadow .12s ease, transform .12s ease;
}
.project-card:hover { box-shadow: 0 6px 18px rgba(31,36,48,.12); transform: translateY(-2px); }

.badge {
  background: #2b3242;
  color: #fff;
  font-weight: 500;
  margin: 0 .15rem .3rem 0;
}

.footer { background: #f7f8fa; }