/*
Theme Name: Bootstrap Starter (No Menus)
Theme URI: https://example.com
Author: You
Version: 1.0.0
Description: Minimal Bootstrap 5 theme with fixed header (logo left) and dark footer. No WP menus.
Text Domain: bootstrap-starter
*/

:root{
  --header-bg: #ffffff;
  --footer-bg: #111318;
  --footer-color: #e8e8e8;
}

/* Sticky header that behaves like fixed without layout hacks */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1030; /* above content, below modals */
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Space around main content */
.site-main{
  padding: 2rem 0;
}

.site-footer{
  background: var(--footer-bg);
  color: var(--footer-color);
  padding: 2rem 0;
}

.site-footer a{
  color: #cfd3ff;
  text-decoration: none;
}
.site-footer a:hover{
  text-decoration: underline;
}

/* Post/card tweaks */
.entry-card{
  transition: box-shadow .2s ease;
}
.entry-card:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.entry-meta{
  font-size: .875rem;
  color: #6c757d;
}
/* Sidebar menu look */
.sidebar-menu { gap: .25rem; }
.sidebar-menu li { list-style: none; }
.sidebar-menu a {
  display: block;
  padding: .25rem 0;
  color: #0d6efd;
  text-decoration: none;
}
.sidebar-menu a:hover { text-decoration: underline; }