/* Jean-Marie Pfaff — jmpfaff.com restore */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #2b2b2b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #c8102e; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  background: #111;
  color: #fff;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #c8102e;
}
.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.brand span { color: #c8102e; }

nav.primary { display: flex; gap: 6px; flex-wrap: wrap; }
nav.primary a {
  color: #eee;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s;
}
nav.primary a:hover {
  background: #c8102e;
  color: #fff;
  text-decoration: none;
}
nav.primary a.active { background: #c8102e; color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(rgba(10,10,10,.55), rgba(10,10,10,.7)), url(/images/stadium-lights.jpg) center/cover;
  color: #fff;
  padding: 120px 24px 90px;
  text-align: center;
}
.hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 20px;
  letter-spacing: 1px;
}
.hero .tagline {
  font-size: 18px;
  opacity: .9;
  max-width: 700px;
  margin: 0 auto;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badges .badge {
  border: 1px solid rgba(255,255,255,.3);
  padding: 10px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* Page header (non-home) */
.page-header {
  background: linear-gradient(rgba(15,15,15,.6), rgba(15,15,15,.75)), center/cover;
  color: #fff;
  padding: 90px 24px 70px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Layout */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px;
}
section { margin-bottom: 48px; }
section h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1px;
  border-bottom: 3px solid #c8102e;
  padding-bottom: 6px;
  display: inline-block;
}
section h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 20px;
  margin: 24px 0 10px;
  text-transform: uppercase;
}
section p { margin-bottom: 14px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 780px) {
  .intro-grid { grid-template-columns: 1fr; }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.card {
  background: #f6f6f6;
  overflow: hidden;
}
.card img { width: 100%; height: 180px; object-fit: cover; }
.card .card-body { padding: 18px; }
.card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card p { font-size: 14px; color: #444; }

/* Career list */
.career-club {
  border-left: 4px solid #c8102e;
  padding: 16px 20px;
  background: #fafafa;
  margin-bottom: 22px;
}
.career-club h3 {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.career-club .years {
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.career-club ul {
  list-style: none;
  padding: 0;
}
.career-club li {
  padding: 4px 0;
  font-size: 15px;
  border-bottom: 1px dashed #e3e3e3;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* News */
.news-list { list-style: none; padding: 0; }
.news-list .news-item {
  padding: 18px 0;
  border-bottom: 1px solid #e4e4e4;
}
.news-item .meta {
  color: #888;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.news-item h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  background: #111;
  color: #fff;
  padding: 30px;
}
.contact-block h3 { color: #c8102e; margin-bottom: 14px; }
.contact-block dt {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8102e;
  margin-top: 12px;
}
.contact-block dd { margin-bottom: 8px; }
.contact-block a { color: #fff; text-decoration: underline; }

/* Footer */
footer.site-footer {
  background: #0e0e0e;
  color: #aaa;
  padding: 40px 24px;
  text-align: center;
  border-top: 3px solid #c8102e;
}
footer .wrap { max-width: 1100px; margin: 0 auto; }
footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
  text-align: left;
}
footer h4 {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
footer a { color: #aaa; display: block; padding: 3px 0; }
footer a:hover { color: #fff; }
footer .copy {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid #222;
}

/* Utility */
.lead { font-size: 18px; color: #444; margin-bottom: 20px; }
blockquote.quote {
  border-left: 4px solid #c8102e;
  padding: 14px 20px;
  font-style: italic;
  font-size: 20px;
  color: #333;
  background: #fafafa;
  margin: 20px 0;
}
.highlight {
  background: #fff8e5;
  border-left: 4px solid #e4a700;
  padding: 12px 18px;
  margin: 18px 0;
}
