﻿/* ANWTC Registration App public styles. */
:root {
  --ink: #173336;
  --deep: #153532;
  --cream: #f7f0e4;
  --paper: #fffaf0;
  --line: #d7c7ad;
  --gold: #c7983e;
  --earth: #a55237;
  --earth-dark: #7e3d2c;
  --blue: #315b68;
  --muted: #6f6457;
  --success: #2d6a4f;
  --danger: #9d2f22;
  --shadow: 0 18px 45px rgba(23, 51, 54, 0.14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.header {
  background: rgba(247, 240, 228, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}
.brand img { width: 54px; height: 54px; }
.brand small { display: block; color: var(--muted); font-weight: 700; }
.nav { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.nav a { text-decoration: none; font-weight: 800; }
.button,
button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button.primary,
button.primary { background: var(--earth); color: white; border-color: var(--earth); }
.button.secondary,
button.secondary { background: white; color: var(--ink); }
button:disabled { opacity: 0.55; cursor: not-allowed; }
.hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(21, 53, 50, 0.94), rgba(21, 53, 50, 0.74)),
    url('/assets/real-workshop-group.jpg') center/cover;
  border-bottom: 5px solid var(--gold);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 420px;
  padding: 88px 22px;
  display: grid;
  align-items: end;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #f2d392;
  font-weight: 900;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.95; margin: 14px 0 18px; max-width: 900px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; margin: 0 0 16px; }
h3 { margin: 0 0 10px; }
.section { padding: 58px 22px; }
.container { max-width: 1180px; margin: 0 auto; }
.grid { display: grid; gap: 22px; }
.two { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr); }
.card {
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.card.pad { padding: 24px; }
.notice { border-left: 5px solid var(--gold); padding: 18px; background: white; }
.recommendation-panel {
  margin-top: 26px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--earth);
  border-radius: 8px;
}
.recommendation-panel h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.logistics-band { background: var(--paper); border-bottom: 1px solid var(--line); }
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.logistics-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.logistics-grid span { color: var(--muted); }
.policy-note { max-width: 900px; margin: 22px 0 0; }
.lead { max-width: 860px; font-size: 1.08rem; }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: white;
  color: var(--ink);
}
textarea { min-height: 104px; resize: vertical; }
.checkbox-row { display: flex; align-items: start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 6px; }
.attendee-card { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.attendee-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.day-options { display: flex; flex-wrap: wrap; gap: 10px; }
.day-pill { border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; background: var(--paper); display: inline-flex; gap: 8px; align-items: center; }
.day-pill input { width: auto; }
.summary-list { display: grid; gap: 12px; margin: 22px 0; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.total { font-size: 1.5rem; font-weight: 900; color: var(--earth-dark); }
.status-box { padding: 16px; border-radius: 8px; background: white; border: 1px solid var(--line); }
.review-details { display: grid; gap: 18px; margin: 18px 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-grid div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.review-grid span { color: var(--muted); }
.acknowledgement {
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.error { color: var(--danger); font-weight: 800; }
.success { color: var(--success); font-weight: 800; }
.hidden { display: none !important; }
.footer { background: var(--deep); color: white; padding: 34px 22px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.admin-shell { max-width: 1280px; margin: 0 auto; padding: 32px 22px 64px; }
.admin-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 22px; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.admin-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.admin-card strong { display: block; font-size: 1.8rem; line-height: 1; }
.admin-section { margin-top: 28px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: white; }
table { width: 100%; border-collapse: collapse; min-width: 960px; }
th, td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
th { background: var(--paper); font-size: 0.85rem; text-transform: uppercase; }
.status-chip { display: inline-block; padding: 3px 8px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 0.85rem; font-weight: 800; }
@media (max-width: 820px) {
  .two { grid-template-columns: 1fr; }
  .logistics-grid,
  .admin-grid,
  .review-grid { grid-template-columns: 1fr; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .hero-inner { min-height: 360px; padding: 58px 22px; }
  .summary-row { display: grid; }
}
