/*
  Lake Bosse Oaks HOA — site theme
  Everything visual lives here on purpose: colors, fonts, header, buttons,
  page layout. Change the variables below to re-skin the whole site from
  one place, no HTML edits required.
*/

:root {
  --bg: #faf8f4;
  --text: #2b2b28;
  --muted: #6b6b63;
  --accent: #b8922f;
  --accent-dark: #3f5d4f;
  --border: #e6ddc7;
  --header-bg: #151515;
  --button-bg: #86a4a2;
  --button-bg-hover: #729290;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

/* Header / nav */

header.site-header {
  background: var(--header-bg);
  padding: 0.6rem 2rem;
}
.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}
.logo-link {
  flex-shrink: 0;
  line-height: 0;
}
.logo-link img {
  height: 56px;
  width: auto;
}
nav.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  flex: 1 1 auto;
}
nav.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.site-nav a.current,
nav.site-nav a:hover {
  border-bottom-color: #fff;
}
.contact-btn {
  background: var(--button-bg);
  color: #fff !important;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  white-space: nowrap;
  border-bottom: none !important;
}
.contact-btn:hover {
  background: var(--button-bg-hover);
}

/* Hero (home page) */

.hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Generic content pages */

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
main.centered {
  text-align: center;
}
main h1 {
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
main.centered h1 {
  margin-bottom: 0.5rem;
}
main p {
  color: #55554e;
}
main section + section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
main h2 {
  color: var(--accent-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--header-bg);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}
.btn:hover {
  background: #333;
}
.btn-accent {
  background: var(--button-bg);
}
.btn-accent:hover {
  background: var(--button-bg-hover);
}

/* Document download rows */

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.doc-row .doc-text {
  flex: 1 1 380px;
}
.doc-row .doc-text h2 {
  margin-bottom: 0.4rem;
}
.doc-row .btn {
  flex-shrink: 0;
}

/* ARB step screenshots */

.arb-steps img {
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 1rem 0;
  display: block;
}

/* Board of Directors grid */

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-top: 2rem;
}
.board-grid .member h2 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.board-grid .member .title {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Journal accordion */

.entry {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
}
.entry summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-weight: 600;
  list-style: none;
}
.entry summary::-webkit-details-marker { display: none; }
.entry summary::before {
  content: "+";
  font-weight: 700;
  color: var(--accent);
  margin-right: 0.5rem;
}
.entry[open] summary::before {
  content: "\2212";
}
.entry summary .entry-date {
  font-weight: 400;
  color: #8a8a80;
  font-size: 0.85rem;
  white-space: nowrap;
}
.entry-body {
  padding: 0 1.25rem 1.25rem;
}
.entry-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: block;
}
.entry-body p {
  margin: 0 0 0.9rem;
}
.entry-body a { color: var(--accent-dark); }

/* Footer */

footer {
  text-align: center;
  padding: 1.5rem;
  color: #8a8a80;
  font-size: 0.85rem;
}
footer a {
  color: #8a8a80;
}
