/* Floating "popout" navbar — detached from the edges, rounded, elevated with
   a shadow, and slightly translucent so it reads as a pill floating over
   whatever's beneath it (the hero photo on the homepage, page content
   elsewhere) instead of a bar docked flush to the top. */
nav.navbar-custom.fixed-top {
  top: 1rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 100rem;
  border-radius: 1rem;
  border-bottom: none;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  background-color: rgba(250, 250, 248, 0.85);
  -webkit-backdrop-filter: blur(0.625rem);
  backdrop-filter: blur(0.625rem);
}

/* Logo + site title side by side in the navbar brand link */
.navbar-custom .navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar-brand-title {
  font-family: 'Gamja Flower', 'Lora', 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

/* Footer wave divider */
.footer-wave {
  display: block;
  width: 100%;
  height: 0.9rem;
  color: #DDD6C4;
  stroke: currentColor;
}

/* Project preview — match blog post list styling */
.project-preview {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .project-preview {
    padding: 2.1875rem 0;
  }
}

.project-preview:last-child {
  border-bottom: 0;
}

/* Project preview titles — match blog post title color */
.project-preview a {
  text-decoration: none;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #2B2A27;
}

.project-preview a:focus,
.project-preview a:hover {
  text-decoration: none;
  color: #1C5872;
}

.project-preview .project-title {
  font-size: 1.875rem;
  margin-top: 0;
}

.project-preview .project-subtitle {
  margin: 0;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 0.625rem;
}

.project-preview .project-meta {
  color: #6B6558;
  font-size: 1.125rem;
  font-style: italic;
  margin: 0 0 0.625rem;
  font-family: 'Lora', 'Times New Roman', serif;
}

@media (min-width: 768px) {
  .project-preview .project-title {
    font-size: 2.25rem;
  }
}

.project-preview .project-read-more {
  font-weight: 800;
}
