@charset "UTF-8";

/* CSS Variables */
:root {
  --bs-blue: #0d6efd;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-100: #f8f9fa;
  --bs-body-font-family: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

/* Typography */
h1,
h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.small {
  font-size: 0.875em;
}

/* Container */
.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-lg-6 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
}

.col-xl-8 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 1200px) {
  .col-xl-8 {
    width: 66.66666667%;
  }
}

/* Utilities */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-lg-0 {
  margin-bottom: 1.5rem !important;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: rgba(255, 255, 255, 1) !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-lg-start {
  text-align: center !important;
}

.text-lg-end {
  text-align: center !important;
}

@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }
}

.justify-content-center {
  justify-content: center !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.d-none {
  display: none !important;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  appearance: none;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control-lg {
  min-height: calc(1.5em + 2rem + 2px);
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background-color: transparent;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-lg {
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

/* Navbar */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.static-top {
  position: static;
}

/* Lists */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* Masthead */
header.masthead {
  position: relative;
  background-color: #343a40;
  background: url("../assets/img/woodback.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

header.masthead:before {
  content: "";
  position: absolute;
  background-color: #1c375e;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}

header.masthead h1 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  header.masthead {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  header.masthead h1 {
    font-size: 3rem;
  }
}

/* Footer */
footer.footer {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #f8f9fa;
  /* Ensure background is visible if bg-light fails or is overridden */
}

/* ===========================
   Firefox-safe footer fix
   =========================== */

/* Make body a column flex container */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Grow main content so footer sits at the bottom */
body>main,
body>#root,
body>.app {
  flex: 1 1 auto;
  min-height: 0;
}

/* =============================
   Cross-browser footer fix
   ============================= */

footer.footer {
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: center;
  /* horizontal centering */
  padding: 0.75rem 1rem;
  /* gives text vertical breathing room */
  min-height: auto;
  /* let the content define minimum height */
  line-height: normal;
  /* Firefox text metrics safe */
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #f8f9fa;
}


/* =========================================
   FINAL cross-browser footer solution
   ========================================= */

html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

/* Page layout */
body {
  display: flex;
  flex-direction: column;
}

/* Main content fills remaining space */
main {
  flex: 1 1 auto;
  min-height: 0;
  /* Firefox flex fix */
  overflow: hidden;
  /* absorbs rounding overflow */
}

/* Footer */
footer.footer {
  flex-shrink: 0;

  /* Use min-height instead of height */
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Firefox text clipping fix */
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;

  /* Chrome scrollbar fix */
  line-height: 1.2;

  box-sizing: border-box;
  background-color: #f8f9fa;
}