/* theblondiesgarden — Slingo Casino promo — NZ / 2026 — layout: split rail */
:root {
  --paper: #e8e4d9;
  --paper-2: #f3f1ea;
  --ink: #1f1a17;
  --muted: #5c554d;
  --gold: #a67c1a;
  --gold-light: #c9a85a;
  --jade: #1d6f63;
  --jade-dim: #155a52;
  --line: rgba(31, 26, 23, 0.12);
  --shadow: 0 14px 40px rgba(25, 20, 16, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.14;
}

a {
  color: var(--jade-dim);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  color: var(--jade);
}

.page-shell {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.site-aside {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 200px;
  flex-shrink: 0;
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.brand-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.brand-vertical img {
  width: 52px;
  height: 52px;
}

.brand-vertical span {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-side {
  flex: 1;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.nav-side li {
  margin-bottom: 0.35rem;
}

.nav-side a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-side a:hover,
.nav-side a.active {
  background: rgba(29, 111, 99, 0.1);
  color: var(--jade-dim);
}

.aside-actions {
  margin-top: auto;
  padding-top: 2rem;
}

/* Main column */
.site-main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.top-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-brand img {
  width: 40px;
  height: 40px;
}

.mobile-brand span {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
}

.content-wrap {
  flex: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 4rem;
}

/* Play button (image badge) */
.btn-google-play {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-google-play:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-google-play img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Hero unique shape */
.hero-band {
  position: relative;
  padding: 2rem 2rem 2.75rem;
  margin: 0 0 2.5rem;
  background: var(--paper-2);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 65%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(166, 124, 26, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: end;
    gap: 2rem;
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.8vw, 2.85rem);
  margin: 0.4rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-cta-panel {
  background: linear-gradient(135deg, #fff 0%, #f7f5ef 100%);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1.35rem;
}

.hero-cta-panel p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Sections */
.section-block {
  margin-bottom: 2.75rem;
}

.section-block h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose {
  color: var(--muted);
}

.prose code {
  font-size: 0.92em;
  background: rgba(31, 26, 23, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}


.two-col-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .two-col-split {
    grid-template-columns: 1fr 1fr;
  }
}

.note-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.45rem;
}

.note-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.ul-check {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.ul-check li {
  margin-bottom: 0.4rem;
}

/* Screenshots — object-fit contain */
.shots-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.shot-slot {
  background: #141110;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.shot-slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.shots-note {
  font-size: 0.89rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* CTA strip */
.strip-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1.65rem;
  background: linear-gradient(90deg, rgba(29, 111, 99, 0.12), rgba(166, 124, 26, 0.1));
  border-radius: 14px;
  border: 1px solid var(--line);
}

.strip-cta p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-weight: 600;
  color: var(--ink);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  background: rgba(253, 252, 250, 0.85);
}

.footer-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.footer-brand:hover {
  color: var(--jade-dim);
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand span {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Compact header for inner pages */
.page-title-block {
  margin-bottom: 2rem;
}

.page-title-block h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
}

.page-title-block .lede {
  margin: 0;
  color: var(--muted);
}

/* Responsive: collapse sidebar */
@media (max-width: 959px) {
  .site-aside {
    display: none;
  }

  .top-bar {
    display: flex;
  }

  /* Mobile drawer alternative: horizontal scroll nav below top */
  .mobile-nav {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav::-webkit-scrollbar {
    height: 4px;
  }

  .mobile-nav a {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .mobile-nav a.active {
    background: rgba(29, 111, 99, 0.15);
    color: var(--jade-dim);
    border-color: transparent;
  }
}

@media (min-width: 960px) {
  .mobile-nav {
    display: none;
  }
}
