/* ==========================================================================
   Braggs Corner Halal Slaughterhouse — styles.css
   Palette: charcoal ink #2a2a2a · paper #fdfdfb · stone #6b6660
            halal green #1c4532 · hairline #e4e1db
   Type:    Cormorant Garamond (display, letterspaced small caps)
            Jost (body / labels)
   ========================================================================== */

:root {
  --ink: #2a2a2a;
  --paper: #fdfdfb;
  --stone: #6b6660;
  --green: #1c4532;
  --line: #e4e1db;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- type helpers ---------- */

.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.25;
}

.eyebrow {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--green);
}

/* ---------- double rule motif (echoes the logo's formality) ---------- */

.rule {
  width: 64px;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  height: 5px;
  margin: 1.6rem auto;
}

/* ---------- header (interior pages) ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
}

.site-header .brand img { height: 40px; width: auto; }

.site-header .brand span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.site-header nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  text-decoration: none;
  color: var(--stone);
  margin-left: 2rem;
  transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--green); }

/* ---------- hero (home) ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  position: relative;
}

.hero .mark {
  width: clamp(120px, 18vw, 190px);
  margin-bottom: 2.2rem;
  animation: rise 0.9s ease both;
}

.hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  animation: rise 0.9s 0.15s ease both;
}

.hero h1 small {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.42em;
  color: var(--stone);
  margin-top: 0.9rem;
  font-weight: 500;
}

.hero .arabic {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green);
  margin-top: 2rem;
  animation: rise 0.9s 0.3s ease both;
}

.hero p.tagline {
  max-width: 34rem;
  color: var(--stone);
  margin: 1rem auto 2.6rem;
  animation: rise 0.9s 0.4s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-decoration: none;
  color: var(--paper);
  background: var(--green);
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--green);
  transition: background 0.25s, color 0.25s;
  animation: rise 0.9s 0.5s ease both;
}

.btn:hover, .btn:focus-visible { background: transparent; color: var(--green); }

.btn.ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn.ghost:hover, .btn.ghost:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- generic sections ---------- */

section.band { padding: clamp(4rem, 9vw, 7rem) 1.5rem; }

.narrow { max-width: 44rem; margin: 0 auto; text-align: center; }

.band h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }

.band p { color: var(--stone); }

.band.tint { background: #f6f4ef; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- promise grid ---------- */

.promise-grid {
  max-width: 62rem;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.promise-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.promise-grid p { font-size: 0.95rem; }

.promise-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 50rem;
}

.promise-grid.two > div {
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem;
  background: var(--paper);
}

@media (max-width: 720px) {
  .promise-grid, .promise-grid.two { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* slim note band on the meats page */
.serve-note {
  text-align: center;
  padding: 1.1rem 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--green);
  border-bottom: 1px solid var(--line);
  background: #f6f4ef;
}

/* ==========================================================================
   MEAT SECTIONS  (meats.html)
   --------------------------------------------------------------------------
   ADD YOUR BACKGROUND PHOTOS HERE.
   Drop your images into the /images folder, then un-comment the
   background-image line in each block below and update the filename.
   The dark overlay is already in place so white text stays readable.
   ========================================================================== */

.meat {
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--paper);
  background-color: var(--ink);          /* fallback until photos are added */
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem;
}

.meat::before {                           /* readability tint over the photo */
  content: "";
  position: absolute;
  inset: 0;
}

.meat > div { position: relative; max-width: 40rem; }

/* --- GOAT --- same section color, made transparent over the photo */
.meat--goat { background-image: url("images/goat.jpg"); }
.meat--goat::before { background: rgba(51, 50, 46, 0.62); }

/* --- LAMB --- */
.meat--lamb { background-image: url("images/lamb.jpg"); }
.meat--lamb::before { background: rgba(44, 50, 48, 0.62); }

/* --- BEEF --- */
.meat--beef { background-image: url("images/beef.jpg"); }
.meat--beef::before { background: rgba(47, 43, 42, 0.62); }

.meat .eyebrow { color: #cfe3d6; }

.meat h2 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 0.8rem 0 0.4rem;
}

.meat .rule { border-color: #cfe3d6; }

.meat p { color: #e8e6e0; }

.meat ul {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
}

.meat ul li {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid rgba(253, 253, 251, 0.4);
  padding: 0.45rem 1rem;
}

/* ---------- visit / footer ---------- */

.visit {
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
}

.visit .details {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: left;
}

.visit .details > div { min-width: 200px; }

.visit h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.visit p { color: var(--stone); font-size: 0.95rem; }

.visit a { color: var(--green); text-decoration: none; }
.visit a:hover, .visit a:focus-visible { text-decoration: underline; }

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

footer img { height: 34px; margin: 0 auto 0.9rem; opacity: 0.85; }
