
/* Base navbar look */
.navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  font-weight: 500;
}

/* Brand logo */
.navbar-brand {
  font-weight: 700;
  color: #dc3545 !important; /* your red */
}
.navbar-brand:hover {
  color: #b72d38 !important;
}
.brand-logo {
  height: 28px;
  width: auto;
}

/* Turn nav links into modern text links */
.navbar-nav .btn-outline-secondary {
  border: none !important;
  background: transparent !important;
  color: #374151 !important; /* gray-700 */
  font-weight: 500;
  border-radius: 0;
  padding: .5rem .75rem;
  position: relative;
}
.navbar-nav .btn-outline-secondary:hover,
.navbar-nav .btn-outline-secondary:focus {
  color: #dc3545 !important;
}
.navbar-nav .btn-outline-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #dc3545;
  transition: width 0.2s ease;
}
.navbar-nav .btn-outline-secondary:hover::after {
  width: 100%;
}

/* Keep New Post as standout pill */
.navbar .btn-primary {
  border-radius: 9999px;
  padding: .45rem 1rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

/* Admin badge */
.navbar .badge {
  background: #f3f4f6 !important; /* light gray */
  color: #374151 !important;
  border-radius: 9999px;
  padding: .25rem .6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Dropdown menu */
.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: .5rem;
}
.navbar .dropdown-item {
  border-radius: 8px;
}
.navbar .dropdown-item:hover {
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

/* Optional: tighter prose spacing for blog content */
.prose p { margin-bottom: 0.9rem; }

/* Make flash container spacing consistent (if you want extra spacing) */
.container .alert { margin-top: .5rem; }
/* === Brand logo (inline SVG) === */
.brand-logo {
  width: 28px;
  height: 28px;
}


.theme-redlight {
  background: #fff;           /* page stays white */
  color: #212529;             /* standard body text */
}


/* Card styling */
.theme-redlight .card {
  background-color: #ffffff;
  border: 1px solid rgba(220, 53, 69, 0.12); /* subtle red-tinted border */
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  color: inherit;
}
.theme-redlight .card .card-body { padding: 1.5rem; }

/* Muted text */
.theme-redlight .text-muted { color: #6c757d !important; }

/* Buttons that fit the light theme */
.theme-redlight .btn-outline-secondary { border-color: #6c757d; color: #6c757d; }
.theme-redlight .btn-outline-secondary:hover { background: #6c757d; color: #fff; }

.theme-redlight .btn-danger { background-color: black; border-color: black; }
.theme-redlight .btn-outline-danger { color: black; border-color: black; }
.theme-redlight .btn-outline-danger:hover { background: black; color: #fff; }

/* Readable body copy */
.content-prose p { line-height: 1.75; margin-bottom: 1rem; }
.content-prose h2, .content-prose h3 { margin-top: 1.25rem; }

/* --- Hero subscribe bar polish --- */
.hero-subscribe .input-group > .form-control,
.hero-subscribe .input-group > .btn {
  height: 3.25rem;                 /* taller, friendlier */
}

/* Make it one smooth “pill” */
.rounded-start-pill { border-top-left-radius: 50rem !important; border-bottom-left-radius: 50rem !important; }
.rounded-end-pill   { border-top-right-radius: 50rem !important; border-bottom-right-radius: 50rem !important; }

/* Join the two pieces cleanly */
.hero-subscribe .form-control { border-right: 0; }
.hero-subscribe .btn { border-left: 0; }

/* Focus state with subtle red glow to match brand */
.hero-subscribe .form-control:focus {
  border-color: black;
  box-shadow: 0 0 0 .2rem rgba(220,53,69,.15);
}

/* On very small screens, let it go full width */
@media (max-width: 420px) {
  .hero-subscribe { max-width: 100% !important; }
}

.auth-wrap { min-height: 70vh; }
.auth-card { border: 1px solid rgba(220, 53, 69, 0.12); border-radius: .75rem; }
.auth-card .form-control:focus {
  border-color: black;
  box-shadow: 0 0 0 .2rem rgba(220,53,69,.15);
}
* The style for your new transparent banner */
.hero-banner-transparent {
  /* This creates the "frosted glass" effect */
  background-color: rgba(10, 10, 20, 0.6); /* Semi-transparent dark blue/black */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari support */
}
