/* Live Better For Less — shared site styles (dark premium/streamer theme) */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0e10;
  --bg-elevated: #141b1d;
  --bg-elevated-2: #1c2527;
  --teal: #14515c;
  --brand: #007782;
  --brand-light: #8cc2c7;
  --text: #f5f7f6;
  --muted: #93a3a5;
  --border: rgba(255,255,255,0.10);
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 { font-weight: 700; }

a { color: var(--brand-light); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--bg-elevated);
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand span {
  background: var(--brand);
  color: #ffffff;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-left: 10px;
  vertical-align: middle;
}
.lang-switch {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lang-switch a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lang-switch a.current, .lang-switch a:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
}
.hero .hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,13,0.05) 0%, rgba(8,11,13,0.25) 45%, rgba(8,11,13,0.97) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 44px;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.credit {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.tagline {
  color: rgba(255,255,255,0.95);
  font-size: 1.12rem;
  max-width: 640px;
  margin-bottom: 20px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 119, 130, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover { background: #ffffff; color: var(--brand); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,255,255,0.2); }
.cta.secondary {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: none;
}
.cta.secondary:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }
.platform-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-light);
  margin-bottom: 8px;
}
.about p { max-width: 760px; color: rgba(255,255,255,0.85); }

/* Hosts */
.hosts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.host-pill,
.host-pill:visited {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.host-pill strong {
  display: block;
  color: #ffffff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin-bottom: 2px;
}
a.host-pill:hover { border-color: var(--brand-light); background: var(--bg-elevated-2); transform: translateY(-2px); }
.host-ig {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-light);
}

/* Episode guide */
.episodes {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.episode {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.episode:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.2); }
.episode img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}
.episode h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--text);
}
.episode .ep-tag {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.episode p { margin: 0 0 10px; color: rgba(255,255,255,0.85); }
.episode details summary {
  cursor: pointer;
  color: var(--brand-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 6px;
}
.episode details summary:hover { color: #ffffff; }
.episode details p { margin-top: 10px; color: rgba(255,255,255,0.85); }

/* Country picker (hub) */
.picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.picker a {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.picker a:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.45); border-color: rgba(255,255,255,0.25); }
.picker a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,16,0) 42%, rgba(10,14,16,0.94) 100%);
}
.picker img { aspect-ratio: 16/9; object-fit: cover; }
.picker-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.picker-label strong { color: #ffffff; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.08rem; }
.picker-label span { color: rgba(255,255,255,0.78); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  padding: 36px 0;
  font-size: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.85); font-weight: 600; text-decoration: none; }
.site-footer a:hover { color: var(--brand-light); }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.partner-logos img {
  height: 22px;
  width: auto;
  opacity: 0.92;
}

@media (max-width: 600px) {
  .hero-content { padding-bottom: 30px; }
  .cta.secondary { margin-left: 0; }
  .partner-logos img { height: 18px; }
}
