/* LancasterCateringDeals — warm, clean, proper design */

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #f4f1ec;
}

a {
  color: #b8602a;
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: #8a4520;
  text-decoration: underline;
}

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

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4f1ec;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-title:hover {
  color: #e8a87c;
  text-decoration: none;
}

.site-nav a {
  margin-left: 1.8rem;
  font-size: 0.9rem;
  color: #b0aaa0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a:hover {
  color: #e8a87c;
}

/* ——— Container ——— */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ——— Hero / Intro ——— */
.site-hero {
  background-color: #3a3532;
  color: #f4f1ec;
  padding: 3rem 0;
  margin-bottom: 2.5rem;
}

.site-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f4f1ec;
  letter-spacing: -0.02em;
}

.site-hero .tagline {
  font-size: 1.1rem;
  color: #c4b8a8;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.site-hero .intro-text {
  font-size: 1rem;
  color: #d4cec4;
  line-height: 1.7;
  max-width: 620px;
}

/* ——— Section headings ——— */
.section-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #d8d3cb;
}

/* ——— Post cards ——— */
.post-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.post-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  border-color: #c4b8a8;
}

.post-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.post-card h2 a {
  color: #2d2d2d;
}

.post-card h2 a:hover {
  color: #b8602a;
  text-decoration: none;
}

.post-card .post-date {
  font-size: 0.8rem;
  color: #9a9a9a;
  margin-bottom: 0.6rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-card .post-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ——— Blog post page ——— */
.post-page {
  background: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  padding: 2.5rem 2.5rem 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #e8e4df;
}

.post-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  color: #2d2d2d;
}

.post-header .post-date {
  font-size: 0.8rem;
  color: #9a9a9a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-content p {
  margin-bottom: 1.3rem;
}

.post-content p:first-child::first-letter {
  font-size: 2.8em;
  float: left;
  line-height: 1;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: #b8602a;
  font-weight: 700;
}

/* ——— Post navigation ——— */
.post-nav {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e8e4df;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.post-nav a {
  color: #777;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ddd8d0;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.post-nav a:hover {
  background: #f4f1ec;
  color: #b8602a;
  text-decoration: none;
  border-color: #c4b8a8;
}

/* ——— About page ——— */
.about-page {
  background: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  padding: 2.5rem 2.5rem 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.about-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e8e4df;
  color: #2d2d2d;
}

.about-content p {
  margin-bottom: 1.2rem;
}

/* ——— Posts listing page ——— */
.listing-page {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.listing-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #d8d3cb;
  color: #2d2d2d;
}

/* ——— Footer ——— */
.site-footer {
  background-color: #2d2d2d;
  margin-top: 0;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #7a756d;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ——— Responsive ——— */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .site-header .container {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }

  .site-nav a:first-child {
    margin-left: 0;
  }

  .site-hero {
    padding: 2rem 0;
  }

  .site-hero h1 {
    font-size: 1.6rem;
  }

  .post-page, .about-page {
    padding: 1.5rem 1.2rem 1.2rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .post-card {
    padding: 1.2rem 1rem;
  }

  .post-header h1 {
    font-size: 1.4rem;
  }

  .post-nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .post-content p:first-child::first-letter {
    font-size: 2.2em;
  }
}
