/* Lekker 2B Lekker — recreated static site
   Colors and type pulled from the FlutterFlow project's dark theme
   (lib/flutter_flow/flutter_flow_theme.dart, LightModeTheme — the theme
   actually used across the app's dark UI). */

:root {
  --primary: #A93A31;         /* red */
  --secondary: #B58A49;       /* tan/gold */
  --tertiary: #D3AE67;        /* light gold */
  --alternate: #922D26;       /* deep red */
  --primary-text: #F3F3F3;    /* near-white */
  --secondary-text: #9D9D9D;  /* grey */
  --primary-bg: #080808;      /* near-black page background */
  --secondary-bg: #141414;    /* card background */
  --success: #249689;         /* teal CTA */
  --error: #FF5963;           /* red accents/arrows */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--primary-bg);
  color: var(--primary-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, .heading {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  width: 92%;
  max-width: 1360px;
  margin: 0 auto;
}

/* ---------- Top bar ---------- */
.topbar {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--tertiary);
  letter-spacing: 0.5px;
}

/* ---------- Hero ---------- */
.hero-image {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  margin: 40px 0 56px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
}
.hero-image img { width: 100%; height: auto; object-fit: cover; display: block; }

.hero-tall {
  border-radius: 18px;
  overflow: hidden;
  max-height: 60vh;
  margin: 40px 0 56px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
}
.hero-tall img { width: 100%; height: auto; object-fit: cover; }

.headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.3;
  text-align: center;
  padding: 20px 0;
}

/* ---------- Promo row (badges / shop CTA) ---------- */
.promo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  background: var(--secondary-bg);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.7);
}
.promo-image {
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
  flex: 1 1 320px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.6);
}
.promo-image img { width: 100%; height: auto; }

.promo-copy {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.promo-copy .headline { padding: 0; }

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 6px 0;
}
.store-badges img { height: 64px; width: auto; border-radius: 10px; }

.biltong-callout {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--tertiary);
}

.arrow-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--error);
  font-size: 28px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-radius: 30px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 19px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; filter: brightness(1.08); transform: translateY(-2px); }
.btn-success {
  background: var(--success);
  color: var(--secondary-bg);
  box-shadow: 0 12px 30px -10px rgba(36, 150, 137, 0.55);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 20px;
  background: var(--primary-bg);
  color: var(--primary-text);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.footer-col { flex: 1 1 260px; }
.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--tertiary);
}
.footer-col.links { text-align: right; }
.footer-col.links a {
  display: block;
  margin-bottom: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
}
.footer-col.links a:hover { color: var(--tertiary); }
.footer-note {
  font-size: 14px;
  color: var(--secondary-text);
  opacity: 0.8;
  margin: 16px 0;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 28px 0 16px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--secondary-text);
}

@media (max-width: 640px) {
  .footer-col.links { text-align: left; }
}

@media (max-width: 720px) {
  .hero-image, .hero-tall { margin: 24px 0 32px; border-radius: 12px; }
  .promo-row { padding: 28px 20px; gap: 32px; border-radius: 18px; margin-bottom: 40px; }
  .btn { padding: 16px 36px; font-size: 17px; }
}

/* ---------- Legal pages ---------- */
.legal-header {
  background: var(--primary);
  padding: 14px 0;
}
.legal-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legal-header a.back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  font-size: 20px;
  color: #fff;
}
.legal-header h1 {
  color: #fff;
  font-size: 22px;
  flex: 1;
}
.legal-body {
  width: min(90%, 1000px);
  margin: 24px auto 60px;
  background: var(--secondary-bg);
  border-radius: 8px;
  padding: 28px 32px;
}
.legal-body pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
