/* ============================================================
   lechner.css  — Shared stylesheet for LechnerLaw.com
   Drop this one file into your site root.
   Each page just needs:
     <link rel="stylesheet" href="lechner.css">
   after the Bootstrap link.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:      #690000;
  --navy-mid:  #8a1a1a;
  --gold:      #b8892f;
  --gold-lt:   #d4aa5a;
  --cream:     #f7f4ef;
  --text:      #2c2c2c;
  --muted:     #6b6b6b;
  --border:    #ddd8cf;
  --white:     #ffffff;
}

/* ── BASE ── */
body {
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .65rem;
}
h1 { font-size: 1.9rem; border-bottom: 3px solid var(--gold); padding-bottom: .4rem; margin-bottom: 1.1rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; color: var(--navy-mid); }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); }

p  { margin-bottom: 1rem; }
em { color: var(--navy-mid); }
strong { color: var(--navy); }

a           { color: var(--gold); }
a:hover     { color: var(--navy); text-decoration: underline; }

/* ── NAVBAR ── */
.navbar {
  border-bottom: 4px solid var(--gold) !important;
  background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding-top: .6rem;
  padding-bottom: .6rem;
}
.navbar-brand strong {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1rem;
  color: var(--navy) !important;
  letter-spacing: .01em;
}
.navbar-brand strong:hover { color: var(--gold) !important; }
.nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy) !important;
  letter-spacing: .03em;
  padding-left: .85rem !important;
  padding-right: .85rem !important;
}
.nav-link:hover, .nav-link:focus { color: var(--gold) !important; }
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.dropdown-item {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  padding: .45rem 1.2rem;
}
.dropdown-item:hover {
  background: var(--cream);
  color: var(--gold);
}

/* ── MAIN CONTENT AREA ── */
main.container {
  max-width: 860px;
  padding-top: 2.2rem;
  padding-bottom: 3rem;
}

/* ── PAGE HEADER BAND ── */
/* Wrap the first h1/h2 in a .page-header div for the accent band,
   or it will just render as a styled heading. Either way looks good. */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2.5rem 0 2rem;
  margin-bottom: 0;
}
.page-header h1,
.page-header h2 {
  color: var(--white);
  border: none;
  margin: 0;
  font-size: 2rem;
}
.page-header .sub {
  color: var(--gold-lt);
  font-size: 1rem;
  margin-top: .4rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
}

/* ── INLINE IMAGES ── */
img.float-right {
  border: 4px solid var(--border);
  border-radius: 3px;
  margin: 0 0 1.25rem 1.75rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
img.float-left {
  border: 4px solid var(--border);
  border-radius: 3px;
  margin: 0 1.75rem 1.25rem 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

/* ── LISTS ── */
ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}
ul li, ol li {
  margin-bottom: .35rem;
}

/* ── BLOCKQUOTE / PULL QUOTE ── */
blockquote, .pullquote {
  border-left: 5px solid var(--gold);
  background: var(--cream);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--navy-mid);
}

/* ── CALL-OUT BOX ── */
.callout {
  background: var(--cream);
  border-left: 5px solid var(--navy);
  padding: 1.1rem 1.4rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}
.callout.gold { border-left-color: var(--gold); }
.callout p:last-child { margin-bottom: 0; }

/* ── SECTION DIVIDERS ── */
.section-rule {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2rem 0;
}

/* ── BUTTONS ── */
.btn-primary,
a.btn-primary {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: .55rem 1.5rem;
  border-radius: 3px;
  transition: background .18s, border-color .18s, transform .15s;
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-outline-primary,
a.btn-outline-primary {
  border: 2px solid var(--navy) !important;
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 3px;
  padding: .5rem 1.4rem;
}
.btn-outline-primary:hover { background: var(--navy) !important; color: var(--white) !important; }

/* ── PHONE CTA LINK ── */
.phone-cta {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--gold);
  padding: .35rem .9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.phone-cta:hover { background: var(--gold); color: var(--white); text-decoration: none; }

/* ── CONTACT STRIP (add at bottom of any page) ── */
.contact-strip {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  margin-top: 2.5rem;
}
.contact-strip p { color: rgba(255,255,255,.8); margin: .3rem 0; font-size: .95rem; }
.contact-strip a { color: var(--gold-lt); }
.contact-strip a:hover { color: var(--white); }
.contact-strip .cta-phone {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin: .5rem 0;
}
.contact-strip .cta-phone:hover { color: var(--gold-lt); text-decoration: none; }

/* ── FOOTER ── */
.footer {
  background: #111827;
  border-top: 4px solid var(--gold);
}
.footer address {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  line-height: 1.9;
}
.footer a {
  color: var(--gold-lt);
}
.footer a:hover { color: var(--white); }

/* ── UTILITY ── */
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.bg-cream    { background: var(--cream) !important; }
.border-gold { border-color: var(--gold) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  img.float-right, img.float-left {
    float: none !important;
    display: block;
    margin: 0 auto 1.25rem;
    max-width: 100%;
    height: auto !important;
  }
  main.container { padding-top: 1.4rem; }
}
