/* ============================================================
   NÜRNBERG HAWKS — BASE.CSS
   Layout, spacing, reset only. Zero visual decisions here.
   All colors, fonts, borders go in skin-*.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; font-size: 16px; line-height: 1.6; }
img, iframe { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  position: relative;
  z-index: 10;
  padding: 0.55rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 3rem 2.5rem 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
}

.ticker-inner span { margin: 0 2rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── VIBE STRIP ── */
.vibe-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.vibe-item {
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.section--tight { padding-bottom: 1rem; }

/* ── CARD GRIDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card-grid--flush {
  gap: 1px;
  margin-top: 2.5rem;
}

.card { padding: 1.75rem; transition: transform 0.2s; }
.card:hover { transform: translateY(-3px); }
.card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

/* ── PILLAR GRID (2-col flush) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  overflow: hidden;
}

.pillar { padding: 2rem; }
.pillar-num { margin-bottom: 0.75rem; }

/* ── INFO BLOCK ── */
.info-block {
  border-radius: 6px;
  overflow: hidden;
  width: calc(100% - 5rem);
  max-width: calc(880px - 5rem);
  margin: 0 auto;
}

.info-header {
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.info-cell { padding: 1.75rem 2rem; }

.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ── MAP ── */
.map-wrap { height: 310px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: hue-rotate(0deg) brightness(1.0) grayscale(0.2) invert(0.0) contrast(1); }

/* ── STATS ROW (competitive) ── */
.stats-row {
  display: flex;
  padding: 2.5rem 2.5rem 3rem;
}

.stat { flex: 1; }

/* ── FAQ ── */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.faq-item { padding: 1.5rem 2rem; transition: background 0.2s; }

.faq-q {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-a { font-size: 0.9rem; line-height: 1.65; padding-left: 1.75rem; }

/* ── HONEST SECTION ── */
.honest { padding: 4rem 2.5rem; position: relative; overflow: hidden; }

.honest-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.honest-list { display: flex; flex-direction: column; gap: 0.75rem; }

.honest-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.honest-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.honest-item-text { font-size: 0.88rem; line-height: 1.55; }
.honest-item-text strong { display: block; font-weight: 700; margin-bottom: 0.2rem; font-size: 0.92rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-weight: 700; font-size: 1rem; padding: 0.9rem 2rem; border-radius: 4px; transition: opacity 0.2s, transform 0.15s, background 0.2s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn--lg { font-size: 1.15rem; padding: 1rem 2.5rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── JOIN ── */
.join {
  text-align: center;
  padding: 5rem 2.5rem 6rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── PRACTICES BLOCK ── */
.practices-block {
  border-radius: 6px;
  overflow: hidden;
  width: calc(100% - 5rem);
  max-width: calc(880px - 5rem);
  margin: 2rem auto 5rem;
}

.practices-header {
  padding: 0.9rem 2rem;
}

.practice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.practice-date {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.practice-time {
  font-size: 0.8rem;
}

.status-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .practices-block { width: calc(100% - 3rem); }
  .practice-row { padding: 1rem 1.25rem; }
  .practices-header { padding: 0.9rem 1.25rem; }
}

/* ── DIVIDER ── */
.rule { border: none; margin: 0 2.5rem; border-top-width: 1px; border-top-style: solid; }

/* ── TYPOGRAPHY UTILS ── */
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.75rem; }
.heading { line-height: 1.0; margin-bottom: 1.25rem; }
.body-text { font-size: 1rem; max-width: 500px; line-height: 1.75; }

/* ── ANIMATIONS ── */
.anim { opacity: 0; }
.anim-1 { animation: fadeUp 0.6s ease 0.15s forwards; }
.anim-2 { animation: fadeUp 0.6s ease 0.3s forwards; }
.anim-3 { animation: fadeUp 0.6s ease 0.45s forwards; }
.anim-4 { animation: fadeUp 0.6s ease 0.6s forwards; }
.anim-5 { animation: fadeUp 0.6s ease 0.75s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .topbar { padding: 0.5rem 1.25rem; }
  .hero { padding: 2rem 1.5rem 3.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .info-block { width: calc(100% - 3rem); }
  .pillar-grid { grid-template-columns: 1fr; }
  .honest-inner { grid-template-columns: 1fr; gap: 2rem; }
  .honest { padding: 3rem 1.5rem; }
  .stats-row { flex-direction: column; gap: 1.5rem; padding: 1.75rem 1.5rem; }
  .rule { margin: 0 1.5rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
}
