/* getwellrobford.com — memorial site, minimal clean CSS inspired by BeTheme look */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  -webkit-font-smoothing: antialiased;
}
a { color: #c23b22; text-decoration: none; transition: color 0.2s; }
a:hover { color: #8b2817; }

/* Header */
.site-header {
  background: #1a1a1a;
  color: #fff;
  padding: 1.2rem 0;
  border-bottom: 4px solid #c23b22;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-title {
  font-family: 'Patua One', Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.site-title a { color: #fff; }
.site-title small { display: block; font-size: 0.75rem; font-weight: 400; color: #bbb; margin-top: 2px; letter-spacing: 1px; text-transform: uppercase; font-family: 'Lato', sans-serif; }

.site-nav ul { list-style: none; display: flex; gap: 1.5rem; }
.site-nav a {
  color: #e8e8e8;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover, .site-nav a.active { color: #c23b22; border-bottom-color: #c23b22; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  color: #fff;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-family: 'Patua One', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero .dates {
  font-size: 1.1rem;
  color: #c6c6c6;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  color: #e0e0e0;
}
.hero .ribbon {
  display: inline-block;
  background: #c23b22;
  color: #fff;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
}
.main-content { background: #fff; padding: 2.5rem; border: 1px solid #e5e5e5; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.widget { background: #fff; padding: 1.5rem; border: 1px solid #e5e5e5; }
.widget h3 {
  font-family: 'Patua One', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #c23b22;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.widget ul { list-style: none; }
.widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px dotted #ddd;
  font-size: 0.95rem;
}
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a { display: block; }

/* Content */
.main-content h1, .main-content h2, .main-content h3 {
  font-family: 'Patua One', Georgia, serif;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.main-content h1 { font-size: 2rem; }
.main-content h2 { font-size: 1.5rem; margin-top: 2rem; border-bottom: 2px solid #c23b22; padding-bottom: 0.5rem; }
.main-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.main-content p { margin-bottom: 1.2rem; font-size: 1rem; }
.main-content blockquote {
  border-left: 4px solid #c23b22;
  padding: 0.8rem 1.2rem;
  margin: 1.5rem 0;
  background: #fafafa;
  font-style: italic;
  color: #555;
}

/* Comments */
.comments-title {
  font-family: 'Patua One', Georgia, serif;
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #1a1a1a;
}
.comment {
  border-top: 1px solid #eee;
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
}
.comment:first-of-type { border-top: none; }
.comment .avatar {
  width: 50px;
  height: 50px;
  background: #c23b22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Patua One', Georgia, serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}
.comment-author { font-weight: 700; color: #1a1a1a; font-size: 0.95rem; }
.comment-date { color: #888; font-size: 0.85rem; margin-left: 0.6rem; }
.comment-text { margin-top: 0.3rem; color: #444; font-size: 0.97rem; }
.comment-text p { margin-bottom: 0.5rem; }
.comment img.attached {
  max-width: 220px;
  margin-top: 0.5rem;
  display: block;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 2rem 0 1rem;
  justify-content: center;
}
.pagination a, .pagination span {
  min-width: 44px;
  height: 44px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d0d0d0;
  color: #444;
  font-size: 0.95rem;
  font-weight: bold;
}
.pagination a:hover { background: #c23b22; color: #fff; border-color: #c23b22; }
.pagination .current { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 2.5rem 1.5rem 1rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'Patua One', Georgia, serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p, .footer-col li { font-size: 0.9rem; margin-bottom: 0.4rem; color: #999; }
.footer-col ul { list-style: none; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: #c23b22; }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.82rem;
  color: #777;
}

@media (max-width: 900px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav ul { gap: 1rem; }
  .main-content { padding: 1.5rem; }
  .hero { padding: 2.5rem 1rem; }
}
@media (max-width: 480px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav ul { flex-wrap: wrap; gap: 0.8rem 1.2rem; }
  .comment { grid-template-columns: 1fr; }
  .comment .avatar { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* fonts */
@import url('https://fonts.googleapis.com/css?family=Lato:400,700|Patua+One&display=swap');
