/* ==========================================================================
   LIMERICK SPORT — Lions & Sharks placeholder pages
   Shared blue with per-team trim: body.lions = orange, body.sharks = aqua.
   ========================================================================== */

:root {
  --blue:       #1A5FBF;
  --blue-mid:   #2E7DD4;
  --blue-light: #6AAEE8;
  --navy:       #0A1A3A;
  --night:      #050D24;
  --white:      #FFFFFF;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
body.lions  { --trim: #F5841F; --trim-deep: #D96B0A; --trim-soft: rgba(245, 132, 31, 0.16); }
body.sharks { --trim: #17C2D8; --trim-deep: #0FA8BC; --trim-soft: rgba(23, 194, 216, 0.16); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background:
    radial-gradient(1100px 520px at 80% -10%, var(--trim-soft), transparent 60%),
    radial-gradient(900px 600px at 12% 110%, rgba(26, 95, 191, 0.35), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, var(--navy) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ----- header ----- */
.tp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
}
.tp-back {
  font-size: 14px; font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.tp-back:hover { opacity: 1; }
.tp-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tp-wordmark span { color: var(--trim); }

/* ----- hero ----- */
.tp-hero {
  min-height: calc(100vh - 90px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
}
.tp-crest { height: 170px; width: auto; margin-bottom: 34px; filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45)); }
.tp-eyebrow {
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--trim);
  margin-bottom: 16px;
}
.tp-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.94;
  text-transform: uppercase;
}
.tp-sub {
  max-width: 560px;
  margin: 24px 0 10px;
  font-size: 17px;
  opacity: 0.85;
}
.tp-soon {
  display: inline-block;
  margin: 26px 0 34px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--trim);
  color: var(--trim);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.tp-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-block;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--trim  { background: var(--trim); color: var(--night); box-shadow: 0 8px 28px var(--trim-soft); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.4); }

/* ----- facts strip ----- */
.tp-facts {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 44px;
}
.tp-facts span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ----- footer ----- */
.tp-footer {
  text-align: center;
  padding: 26px 24px;
  font-size: 13px;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .tp-header { padding: 16px 18px; }
  .tp-crest { height: 130px; }
}
