/* 1. Font families */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@700&family=Inter:wght@400;500;600&display=swap');

/* 2. Colors */
:root {
  --heading-color: #22212A;
  --link-color:   #BF1F22;
  --link-hover:   #A2181C; /* darken 10% */
  --navlink-color: #161616;
  --navlink-hover: #0D0D0D; /* darken 10% */
  --btn-primary-bg:   #BF1F22;
  --btn-primary-bg-hover: #AD1D20; /* darken 5% */
  --btn-primary-color: #ffffff;
  --placeholder-color: #6C757D; /* Bootstrap gray-500 */
}

/* 3. Typography */
h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0;
  color: var(--heading-color);
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0;
  color: var(--heading-color);
}

h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--heading-color);
}

h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--heading-color);
}

h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--heading-color);
}

h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: var(--heading-color);
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}

a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--link-color);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--link-hover);
}

hr {
  border-color: #9fa1a5;
}

/* 4. Form controls */
input.form-control, .select2-container .select2-selection--single {
  width: 100%;
  /* max-width: 400px; */
  height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: inherit;
  background-color: #fff;
}

.form-control::placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--placeholder-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #818181;
    line-height: 23px;
    text-align: start;
}

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-color);
  border-color: transparent;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--btn-primary-bg-hover);
}

/* 6. Navbar-specific button and links */
.navbar-nav .nav-link {
  color: var(--navlink-color) !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--navlink-hover) !important;
}

.navbar .btn {
  width: 100px;
  /* height, padding, border-radius, etc., inherited from .btn */
}

/* 7. Utility: gap between form elements */
.form-group {
  margin-bottom: 1rem; /* 16px */
}