/* 1xSlots — brand palette */
:root {
  --color-bg: #E7E7E7;
  --color-accent: #FEE5A5;
  --color-text: #3D3D3D;
  --color-dark: #262627;
  --color-muted: #3D3D3D;
  --font: "Montserrat", system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin: 2rem 0 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

/* Header */
.site-header {
  background: var(--color-dark);
  padding: 0.75rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(38, 38, 39, 0.35);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-block;
  line-height: 0;
}

.site-logo img {
  height: 36px;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 42px;
  }
}

/* Logo on dark: brand “white” read — SVG is already light fills */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-bg);
  text-decoration: none;
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-main {
    padding: 2rem 1.25rem 3rem !important;
}
}

/* Main */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0rem 3rem;
}

.lead {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-dark);
}

/* Tables */
.content-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}

table.content-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(38, 38, 39, 0.08);
}

table.content-table th,
table.content-table td {
  border: 1px solid #c8c8c8;
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

table.content-table th {
  background: var(--color-dark);
  color: var(--color-bg);
  font-weight: 600;
}

table.content-table tbody tr:nth-child(even) {
  background: rgba(254, 229, 165, 0.25);
}

/* STA — content CTAs (not in header) */
.sta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(254, 229, 165, 0.45), rgba(231, 231, 231, 0.95));
  border: 1px solid rgba(38, 38, 39, 0.12);
  border-radius: 8px;
}

.sta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.35rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.sta__btn:hover {
  background: var(--color-dark);
  color: var(--color-bg);
}

.sta__btn--primary {
  background: var(--color-dark);
  color: var(--color-accent);
  border-color: var(--color-dark);
}

.sta__btn--primary:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* Accent strip sections */
.section-accent {
  background: rgba(254, 229, 165, 0.35);
  padding: 1.25rem 1.25rem;
  margin: 1.5rem -1.25rem;
  border-left: 4px solid var(--color-dark);
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer .site-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 300;
}

.site-footer a {
  color: var(--color-accent);
}

/* Page-specific hero */
.page-hero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(38, 38, 39, 0.15);
}

.slot-card {
  background: #fff;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 8px;
  border: 1px solid rgba(38, 38, 39, 0.1);
}

.slot-card h3 {
  margin-top: 0;
  color: var(--color-dark);
}

.meta-line {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}
