@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    margin-bottom: 60px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: #e0dac4;
}

/* Ensure common text-bearing elements follow the same rules */
p, a, span, div, label, button, input, textarea, select, h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  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;
}

.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;
}

/* Contact page specific */
.contact-container {
  max-width: 560px;
  margin: 48px auto;
  padding: 0 12px;
}

@media (min-width: 992px) {
  .contact-container {
    max-width: 720px;
  }
}

/* Button color class (from previous change) */
.btn-green {
  background-color: #00ab00;
  border-color: #00ab00;
  color: #ffffff;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active {
  background-color: #009900;
  border-color: #009900;
  color: #ffffff;
}

/* site.css - project styles */

/* Make form labels bold for better readability */
.form-label {
    font-weight: 700; /* bold */
}

h1 {
    color: rgb(0, 0, 0);
    font-family: Open Sans, sans-serif;
    font-size: 32px;
    font-weight: 700
}

h2 {
    color: rgb(45, 80, 143);
    font-family: Open Sans, sans-serif;
    font-size: 24px;
    font-weight: 400
}

.strong {
    font-weight: 600;
}