/* Keep this file for future “small changes” so styles.css stays stable */

/* Slightly stronger orange focus and nicer badge hover */
.badge{
  transition: border-color .15s ease, background .15s ease, transform .08s ease;
}
.badge:hover{
  border-color: rgba(255,122,24,.28);
  background: rgba(255,122,24,.06);
  transform: translateY(-1px);
}

/* Make primary buttons feel premium */
.btn-primary{
  box-shadow: 0 14px 34px rgba(255,122,24,.18);
}

/* Improve select arrow visibility a bit on dark backgrounds */
select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.55) 50%),
    linear-gradient(135deg, rgba(255,255,255,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

/* Optional: slightly more separation between header and hero */
.hero{
  padding-top: 62px;
}
