/* quamash.town -- small town site */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3a2e1f;
  background: #faf8f0;
  line-height: 1.6;
}

a { color: #2d5016; }
a:hover { color: #1a3a0a; }

/* Header */
.site-header {
  background: #2d5016;
  color: #faf8f0;
  padding: 0;
}

.header-top {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 16px;
  text-align: center;
}

.site-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.site-subtitle {
  font-size: 13px;
  opacity: 0.8;
  font-style: italic;
}

/* Nav */
.site-nav {
  background: #234010;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-nav ul {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
}

.site-nav li { }

.site-nav a {
  display: block;
  padding: 10px 18px;
  color: #d4ccb8;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Hero image placeholder */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-image {
  width: 100%;
  height: 260px;
  background: #c8d4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7a5a;
  font-style: italic;
  font-size: 14px;
  margin-top: 20px;
  border: 1px solid #b8c4a8;
}

/* Main content */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.content h2 {
  font-size: 20px;
  color: #2d5016;
  margin-bottom: 12px;
  border-bottom: 2px solid #d4ccb8;
  padding-bottom: 6px;
}

.content p {
  margin-bottom: 14px;
  font-size: 15px;
}

.content p + h2 {
  margin-top: 30px;
}

/* Quick facts sidebar-style box */
.quick-facts {
  float: right;
  width: 240px;
  margin: 0 0 20px 24px;
  background: #f0ece0;
  border: 1px solid #d4ccb8;
  padding: 16px;
  font-size: 13px;
}

.quick-facts h3 {
  font-size: 14px;
  color: #2d5016;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-facts dt {
  font-weight: 600;
  margin-top: 6px;
}

.quick-facts dd {
  margin-left: 0;
  color: #5a4e3f;
}

/* Two column layout for visit page */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 16px;
}

/* Footer */
.site-footer {
  background: #3a2e1f;
  color: #a89878;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  margin-top: 40px;
}

.site-footer a {
  color: #c8b898;
}

/* Photo gallery - started but not done yet */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.photo-gallery img {
  width: 100%;
  border: 1px solid #d4ccb8;
}
.photo-caption {
  font-size: 11px;
  color: #8a7e6a;
  margin-top: 3px;
}

/* Responsive -- works but wasn't carefully tested */
@media (max-width: 640px) {
  .site-nav ul {
    flex-wrap: wrap;
  }
  .site-nav a {
    padding: 8px 14px;
    font-size: 13px;
  }
  .quick-facts {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-image {
    height: 180px;
  }
}
