/* Ensure homepage CTA button text is white */
.btn-primary {
  color: #fff !important;
}
html, body, * {
  font-family: 'Georgia', 'Times New Roman', Times, serif !important;
  color: #222 !important;
  font-size: 18px;
  line-height: 1.7;
  box-sizing: border-box;
}

/* UnwroteTales story text style match */
.content {
  font-family: 'Georgia', 'Times New Roman', Times, serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #222 !important;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.content p {
    font-size: 18px !important;
    line-height: 1.7 !important;
}
/* Papyrus theme-inspired base styles */
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif !important;
  color: #222;
  font-size: 18px;
  line-height: 1.7;
}

a, a:visited {
  color: #268bd2;
  text-decoration: none;
}
a:hover, a:focus {
  color: #005999;
  text-decoration: underline;
}
/* FaunaNest Custom Styles */

/* Navbar styling */
.navbar {
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

/* Home page navbar - dark with white text */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* Other pages navbar - light with dark text */
.navbar-light .navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #DC143C !important;
}

.navbar-light {
  background-color: #fff !important;
}

/* Navbar brand styling */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  margin-right: 8px;
}

/* Sticky navbar shadow */
.sticky-top.shadow-bottom {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Home page hero section */
.banner {
  position: relative;
  background: #02007e !important; /* strong blue, matches config search.primary_color */
  background-size: cover;
  background-position: center;
}

.banner.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Responsive logo */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
}
