/* =================================================================
   JenniBerz.com — Static HTML rebuild
   Faithfully matches Helix Ultimate Joomla layout
   Colors: #0056a3 (header/buttons), #c58b3f (accordion), Roboto
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* --- Container -------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =================================================================
   HEADER
   ================================================================= */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #0056a3;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-desktop { height: 80px; width: auto; }
.logo-mobile  { display: none; height: 52px; width: auto; }

/* Nav */
#site-nav { display: flex; align-items: center; }
#site-nav > ul {
  display: flex; align-items: center; gap: 2px;
}
#site-nav > ul > li { position: relative; }
#site-nav > ul > li > a {
  display: block;
  padding: 0 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 90px;
  white-space: nowrap;
  transition: color .18s;
}
#site-nav > ul > li > a:hover,
#site-nav > ul > li.active > a { color: #ffd166; }
#site-nav > ul > li > a .nav-caret {
  font-size: 0.65em; margin-left: 3px;
  display: inline-block;
  transition: transform .2s;
}
#site-nav > ul > li:hover > a .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 195px;
  background: #fff;
  border-top: 3px solid #0056a3;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  z-index: 200;
}
#site-nav > ul > li:hover .dropdown,
#site-nav > ul > li.open .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 11px 16px;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f4f8ff; color: #0056a3; }

/* Social icons in nav */
.nav-social {
  display: flex; align-items: center; gap: 8px;
  padding-left: 8px;
}
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: .85; transition: opacity .18s;
}
.nav-social a:hover { opacity: 1; }
.nav-social svg { width: 18px; height: 18px; fill: currentColor; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}

/* =================================================================
   HERO (home)
   ================================================================= */
.hero-section {
  width: 100%; height: 734px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section       { padding: 70px 0; }
.section-gray  { background: #f8f9fa; }
.section-white { background: #fff; }

/* =================================================================
   TWO-COLUMN LAYOUT
   ================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
  align-items: center;
}

/* Circle photo */
.circle-wrap { display: flex; justify-content: center; }
.circle-photo {
  width: 360px; height: 360px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

/* Content */
.col-content p { margin-bottom: 1.1em; font-size: 1rem; line-height: 1.78; color: #444; }
.col-content p:last-child { margin-bottom: 0; }

/* =================================================================
   SECTION HEADING
   ================================================================= */
.section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
}

/* Breadcrumb label */
.breadcrumb-label {
  display: block; text-align: center;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #0056a3; margin-bottom: 10px;
}
.breadcrumb-label::after {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: #0056a3;
  margin: 6px auto 0;
}

/* =================================================================
   BUTTON
   ================================================================= */
.btn {
  display: inline-block;
  background: #0056a3;
  color: #fff;
  padding: 13px 28px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn:hover { background: #00408a; color: #fff; }
.btn-right { text-align: right; margin-top: 28px; }

/* =================================================================
   ACCORDION
   ================================================================= */
.accordion { width: 100%; }
.acc-item { border-bottom: 1px solid #e0e0e0; }
.acc-item:first-child { border-top: 1px solid #e0e0e0; }

.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  cursor: pointer;
  color: #c58b3f;
  font-size: 1.02rem; font-weight: 600;
  user-select: none; transition: color .18s;
}
.acc-header:hover { color: #a06c28; }

.acc-caret {
  width: 24px; height: 24px;
  border: 1px solid #ccc; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .28s;
  color: #999; font-size: .7rem;
}
.acc-header.open .acc-caret { transform: rotate(180deg); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  padding: 0;
}
.acc-body.open {
  max-height: 2000px;
  padding: 0 0 22px 0;
}
.acc-body p { margin-bottom: .9em; font-size: .97rem; color: #444; }
.acc-body ul { list-style: disc; padding-left: 1.4em; margin-top: .4em; }
.acc-body ul li { margin-bottom: .4em; font-size: .97rem; }

/* =================================================================
   HOME — sworn-in section
   ================================================================= */
.quote-section .signature {
  font-style: italic; font-weight: 500;
  margin-top: 1em; color: #333;
}

/* =================================================================
   HOME — focus cards
   ================================================================= */
.focus-section { background: #fff; padding: 60px 0 80px; }
.focus-heading {
  text-align: center;
  font-size: 2.1rem; font-weight: 400;
  color: #222; margin-bottom: 36px;
}
.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.focus-card { overflow: hidden; }
.focus-card img {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  transition: transform .4s;
}
.focus-card:hover img { transform: scale(1.04); }

/* =================================================================
   ABOUT
   ================================================================= */
.about-h2 {
  font-size: 1.85rem; font-weight: 400;
  color: #222; margin-bottom: 8px; line-height: 1.3;
}
.heading-rule {
  width: 48px; height: 3px;
  background: #0056a3; margin-bottom: 26px;
}
.about-values { margin-top: 36px; }
.about-values h3 {
  font-size: .95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #333; margin-bottom: 14px;
}
.values-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.values-list li {
  font-size: .9rem; color: #555;
  padding: 5px 0; border-bottom: 1px solid #f0f0f0;
}
.dates-box {
  margin-top: 28px; padding: 16px 20px;
  background: #f4f8ff; border-left: 4px solid #0056a3;
  font-size: .9rem; line-height: 1.8; color: #333;
}

/* =================================================================
   ABOUT — gallery
   ================================================================= */
.gallery-section { background: #f8f9fa; padding: 50px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; }

/* =================================================================
   DISTRICT
   ================================================================= */
.district-map-wrap { margin-bottom: 32px; }
.district-map-wrap img { width: 100%; height: auto; display: block; }
.district-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  padding: 28px 0;
}

/* =================================================================
   CITY RESOURCES
   ================================================================= */
.chatt311-wrap { display: flex; align-items: center; gap: 16px; margin: 16px 0; }
.chatt311-wrap img { width: 60px; height: 60px; border-radius: 50%; }
.res-phone { font-weight: 600; font-size: 1rem; }

/* =================================================================
   NEWS
   ================================================================= */
.media-logos {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; margin: 16px 0;
}
.media-logos a { display: block; opacity: .75; transition: opacity .2s; }
.media-logos a:hover { opacity: 1; }
.media-logos img { height: 38px; width: auto; object-fit: contain; }

.article-links { margin: 10px 0; }
.article-links li { margin-bottom: 10px; }
.article-links li a {
  color: #0056a3; font-size: .94rem; font-weight: 500;
  text-decoration: underline; transition: color .18s;
}
.article-links li a:hover { color: #004080; }

.press-info {
  margin: 12px 0; font-size: .88rem;
  color: #555; line-height: 1.9;
}
.press-info strong { color: #333; display: block; margin-bottom: 2px; }
.press-info a { color: #0056a3; }

.news-release-head {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #999; margin-bottom: 8px;
}
.endorsement p { font-size: .95rem; line-height: 1.8; margin-bottom: .9em; }
.endorsement .sig { font-weight: 600; font-size: .95rem; margin-top: 12px; color: #333; }

.d6-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 14px;
}
.d6-gallery img { width: 100%; height: 140px; object-fit: cover; }

.news-left-link {
  display: block; margin-top: 16px; padding-top: 14px;
  color: #0056a3; font-style: italic; font-size: .9rem;
  font-weight: 500; border-top: 1px solid #eee; text-decoration: underline;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-wrap {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 50px 0;
}
.contact-placeholder {
  background: #f8f9fa; border: 1px solid #e0e0e0;
  border-radius: 4px; padding: 60px 24px;
  text-align: center; color: #aaa; font-size: .9rem;
}

/* Contact form */
.contact-form { }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 5px; color: #333; }
.field input,
.field textarea,
.field select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid #dde1e8; border-radius: 3px;
  background: #fff; font-size: .97rem; color: #333;
  font-family: inherit; transition: border-color .18s;
}
.field input:focus,
.field textarea:focus { outline: 0; border-color: #0056a3; }
.field textarea { resize: vertical; min-height: 110px; }

/* =================================================================
   DONATE
   ================================================================= */
.donate-info { font-size: 1rem; line-height: 1.8; color: #444; margin-bottom: 24px; }
.qr-wrap { margin-top: 24px; padding-top: 22px; border-top: 1px solid #e0e0e0; text-align: center; }
.qr-wrap img { width: 180px; height: auto; margin: 0 auto; }

/* =================================================================
   FOOTER
   ================================================================= */
#site-footer {
  background: #1a2136;
  color: #fff;
  padding: 28px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12); border-radius: 50%;
  color: #fff; transition: background .18s;
}
.footer-social a:hover { background: rgba(255,255,255,.25); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 5px;
}
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.7); }
.footer-credit {
  display: flex; align-items: center; gap: 6px;
  font-size: .76rem; color: rgba(255,255,255,.5);
}
.footer-credit img { height: 16px; width: auto; opacity: .75; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1050px) {
  .two-col { grid-template-columns: 300px 1fr; gap: 40px; }
  .circle-photo { width: 270px; height: 270px; }
  #site-nav > ul > li > a { padding: 0 9px; font-size: .76rem; }
  .logo-desktop { height: 68px; }
}

@media (max-width: 820px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; }
  .header-inner { height: 68px; }
  #site-nav > ul > li > a { line-height: 68px; }
  .nav-toggle { display: flex; }

  #site-nav {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: #0056a3;
    flex-direction: column; overflow-y: auto;
    padding: 16px 0 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 999;
  }
  #site-nav.open { display: flex; }
  #site-nav > ul { flex-direction: column; width: 100%; gap: 0; }
  #site-nav > ul > li > a { line-height: 1; padding: 14px 24px; }
  .dropdown {
    position: static; box-shadow: none;
    border-top: none; border-left: 3px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.1); margin-left: 24px;
  }
  .dropdown li a { color: rgba(255,255,255,.85); }
  .nav-social { padding: 14px 24px 0; border-left: none; }

  .hero-section { height: 380px; }

  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .circle-photo { width: 240px; height: 240px; margin: 0 auto; }
  .circle-wrap { justify-content: center; }

  .section-heading { font-size: 1.75rem; }
  .focus-heading   { font-size: 1.75rem; }
  .section { padding: 50px 0; }

  .focus-cards { grid-template-columns: 1fr; }
  .focus-card img { height: 220px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 32px; padding: 36px 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .district-buttons { flex-direction: column; align-items: center; }
  .footer-right { align-items: flex-start; }
  .about-h2 { font-size: 1.5rem; }
  .values-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .d6-gallery { grid-template-columns: repeat(2, 1fr); }
  .media-logos img { height: 30px; }
}
