/* Coney Island Pottsville – Shared minimalist styling */
/* Brand colors: Orange #f2673a, Dark Green #719a0a */

:root {
  --ci-orange: #f2673a;
  --ci-green: #719a0a;
  --ci-text: #111111;
  --ci-muted: #555555;
  --ci-border: #e5e5e5;
  --ci-radius: 14px;
  --ci-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
             Roboto, Helvetica, Arial, sans-serif;
}

/* Base layout */

body.ci-page {
  margin: 0;
  padding: 0 1.25rem 2.5rem;
  font-family: var(--ci-font);
  color: var(--ci-text);
  background: #ffffff;
}

.ci-shell {
  max-width: 900px;
  margin: 0 auto;
}

/* Header + logo */

.ci-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.ci-logo-link img {
  height: 44px;
  width: auto;
  display: block;
}

.ci-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ci-green);
  margin-bottom: 0.25rem;
}

/* Typography */

h1, h2, h3 {
  margin: 0 0 0.4rem;
  line-height: 1.2;
  font-weight: 650;
}

h1 {
  font-size: 1.9rem;
  color: var(--ci-green);
}

h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  color: var(--ci-orange);
}

h3 {
  font-size: 1.05rem;
  color: var(--ci-green);
}

p {
  margin: 0.35rem 0;
}

a {
  color: var(--ci-green);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  color: var(--ci-orange);
}

.muted,
.ci-muted {
  color: var(--ci-muted);
  font-size: 0.9rem;
}

/* Grid */

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.25rem;
  margin-top: 0.4rem;
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Event cards */

.event {
  border: 1px solid var(--ci-border);
  border-radius: var(--ci-radius);
  padding: 0.9rem 1rem;
  margin: 0.6rem 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.event .title {
  font-weight: 600;
  color: var(--ci-green);
  margin-bottom: 0.15rem;
}

#tonight {
  border-color: var(--ci-orange);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Lists and code */

ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0.2rem;
}

code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  padding: 0 0.2em;
  border-radius: 4px;
  background: #fafafa;
}
