/* Bon Secour Butchers – Static site
   Clean, fast, SEO-friendly recreation for AWS Amplify
*/

:root {
  --bg: #ffffff;
  --bg-alt: #f6f6f6;
  --text: #111111;
  --muted: #555555;
  --accent: #c41e3a;
  --accent-dark: #8b1428;
  --border: #e5e5e5;
  --max: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid #222;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}
.logo img { height: 52px; width: auto; }
.logo span { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
.logo:hover { text-decoration: none; color: inherit; }

nav ul {
  display: flex;
  list-style: none;
  gap: 0.2rem 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  color: #f2f2f2;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.3rem 0;
}
nav a:hover, nav a.active { color: var(--accent); text-decoration: none; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  background: #000;
  padding: 2rem 1rem 4rem;
}
.hero > img {
  max-height: 78vh;
  width: auto;
  max-width: min(100%, 1100px);
}
.hero-overlay {
  background: rgba(0,0,0,0.82);
  color: #fff;
  text-align: center;
  padding: 1.6rem 2rem;
  max-width: 520px;
}
.hero-overlay h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: #e8b4b8;
  font-weight: 700;
}
.hero-overlay p {
  margin-top: 0.8rem;
  color: #f0f0f0;
  font-size: 1.05rem;
}

/* Sections */
section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
h3 { font-size: 1.2rem; margin: 1.2rem 0 0.5rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 720px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: 6px;
}
.card h3 { margin-top: 0; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 0.7rem 1.3rem;
  border-radius: 4px;
  font-weight: 650;
  text-decoration: none !important;
}
.btn:hover { background: var(--accent-dark); }

ul.check { padding-left: 1.2rem; }
ul.check li { margin: 0.35rem 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--border);
}
th { background: var(--bg-alt); }

.page-hero {
  background: var(--bg-alt);
  padding: 2.2rem 0 1.6rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb { font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--accent); }

/* Footer */
footer {
  background: #111;
  color: #ddd;
  padding: 2.5rem 0 1.4rem;
  margin-top: 2rem;
}
footer a { color: #f2c2c6; }
footer h3 { color: #fff; margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
}

form label { display: block; font-weight: 600; margin: 0.8rem 0 0.25rem; }
form input, form textarea, form select {
  width: 100%;
  max-width: 480px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}
form textarea { min-height: 120px; }

@media (max-width: 800px) {
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; padding: 0.5rem 0 0.8rem; }
  .hero { min-height: auto; }
  .hero > img { max-height: 55vh; }
  .menu-toggle { color: #fff; border-color: #444; }
}
