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;
  background-color: #f0f0f0; /* light grey */
  /* background-color: #d3d3d3; /* grey */
}

.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;
}

.hero-banner {
  height: 45vh; /* Up from 20vh */
  position: relative;
  overflow: hidden;
   margin-top: 56px; /* Prevent overlap with navbar if fixed */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 4px #000;
}

.footer a:hover {
  text-decoration: underline;
  color: #0d6efd; /* Bootstrap primary color */
}

.office-image {
  width: 50%;
  height: 45vh;
  object-fit: cover;
  filter: brightness(70%);
}

.office-image {
  height: 50vh; /* Adjust as needed */
}

.github-image {
  width: 50%;
  height: 45vh;
  object-fit: cover;
  filter: brightness(70%);
}

.github-image {
  height: 50vh; /* Adjust as needed */
}

.github-image-sm {
  width: 150px; /* Smaller width */
  height: auto;
  object-fit: contain;
  filter: brightness(90%);
}

.container-fluid {
  width: 100vw;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  background-color: transparent;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.card {
  background-color: #f0f0f0; /* light grey */
  /* background-color: #d3d3d3; /* grey */
  color: black;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card a.btn {
  background-color: #0d6efd;
  color: white;
}

.card a.btn:hover {
  background-color: #0056b3;
}

/* =========================== */
/* Additional Styling for Blog */
/* =========================== */

.blog-post-card {
  background-color: #f0f0f0; /* light grey */
  border-bottom: 2px solid #d3d3d3;
  /* border: none; */
  /* border-radius: 10px; */
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
  padding: 1.5rem;
}

.blog-post-card h2,
.blog-post-card p {
  margin-bottom: 0.5rem;
}

.blog-post-card .btn-sm {
  margin-right: 0.5rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: #555;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.5;
}

/* Align credit text consistently */
.photo-credit {
  font-size: 0.85rem;
  color: #666;
}

