/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

a { color: #0b5bd3; text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 10px 12px;
  background: #111;
  color: #fff;
}
.skip-link:focus { left: 10px; top: 10px; z-index: 9999; }

/* Header */
.site-header {
  border-bottom: 1px solid #e7e7e7;
  padding: 14px 16px;
  z-index: 1000;
  background: rgba(255,255,255,0.95); 
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.site-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.75;
}

/* Hamburger dropdown */
.nav {
  position: relative;  /* already present, but keep it explicit */
  z-index: 1010;
}

.nav-toggle {
  /* visually hide but keep accessible */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.hamburger {
  width: 44px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  user-select: none;
  background: #fff;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(340px, 90vw);
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  display: none;
  z-index: 1020;
}

.dropdown a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: #111;
}

.dropdown a:hover {
  background: #f5f5f5;
  text-decoration: none;
}

/* Show dropdown when checked */
.nav-toggle:checked + .hamburger + .dropdown {
  display: block;
}

/* Disabled placeholder link */
.disabled-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Main content */
.main {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 30px;
}

.hero img {
  display: block;
  margin: 0 auto;     /* centers the image */
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Quote box */
.quote-box {
  margin-top: 22px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 18px 18px 14px;
  background: #fafafa;
}

.quote-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.quote-box blockquote {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 15px;
  color: #222;
}

.quote-links {
  margin: 12px 0 0;
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e7e7e7;
  padding: 18px 16px;
  text-align: center;
  color: #555;
}

.hero.hero-bg{
  background-image: url("../KB12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 40vh;
  display: grid;
  place-items: center;
}

.hero.hero-bg{
  min-height: 55vh;          /* gives you more background real estate */
  display: grid;
  place-items: start center; /* not vertically centered anymore */
  padding: 20px 16px;        /* creates space around the cover */
}

/* Push the cover down so KB12 shows at the top too */
.hero-content{
  margin-top: 20px;          /* adjust to taste */
}

/* Make cover smaller, centered */
.hero-cover{
  display: block;
  width: min(260px, 70vw);   /* smaller than before */
  height: auto;
  margin: 0 auto;
}