/* McKinney Lions Baseball - Site Styles */
/* Colors: Navy #0a2463, Gold #f0c040, Dark Gold #c49a10 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

a { color: #0a2463; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── TOP BAR ── */
.topbar {
  background: #071a47;
  padding: 6px 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.topbar a { color: #aac4ee; font-size: 13px; }
.topbar a:hover { color: #f0c040; text-decoration: none; }
.topbar .ti { font-size: 16px; }

/* ── NAVIGATION ── */
nav {
  background: #0a2463;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-brand {
  color: #f0c040;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  white-space: nowrap;
}
.nav-brand span { color: #fff; font-weight: 400; }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  color: #fff;
  font-size: 13px;
  padding: 0 13px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  border-bottom-color: #f0c040;
  color: #f0c040;
  text-decoration: none;
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: #0a2463;
  min-width: 150px;
  border-top: 3px solid #f0c040;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  height: auto;
  padding: 10px 16px;
  border-bottom: none;
  border-left: 3px solid transparent;
  font-size: 13px;
}
.dropdown-menu a:hover {
  border-left-color: #f0c040;
  border-bottom: none;
  background: rgba(255,255,255,0.05);
}
.nav-hamburger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 1rem 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #071a47 0%, #0a2463 60%, #153580 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 4px solid #f0c040;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '⚾';
  position: absolute;
  font-size: 300px;
  opacity: 0.03;
  top: -50px;
  right: -50px;
  line-height: 1;
}
.hero-eyebrow {
  color: #f0c040;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 span { color: #f0c040; }
.hero p {
  color: #aac4ee;
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  background: #f0c040;
  color: #0a2463;
  border: 2px solid #f0c040;
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s;
  letter-spacing: 0.3px;
}
.btn-gold:hover { background: #c49a10; border-color: #c49a10; color: #fff; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: #f0c040; color: #f0c040; text-decoration: none; }
.btn-navy {
  background: #0a2463;
  color: #fff;
  border: 2px solid #0a2463;
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s;
}
.btn-navy:hover { background: #071a47; text-decoration: none; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, #071a47 0%, #0a2463 100%);
  padding: 3rem 2rem;
  border-bottom: 4px solid #f0c040;
}
.page-header .eyebrow {
  color: #f0c040;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-header h1 { color: #fff; font-size: 32px; font-weight: 700; }
.page-header p { color: #aac4ee; margin-top: 0.5rem; font-size: 15px; }

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 4rem 2rem; }
.section-alt { background: #f7f8fc; }
.section-navy { background: #0a2463; }
.section-label {
  color: #f0c040;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.section-navy .section-label { color: #f0c040; }
h2.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-navy h2.section-heading { color: #fff; }
.section-sub {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2rem;
}
.section-navy .section-sub { color: #aac4ee; }
.divider { width: 50px; height: 3px; background: #f0c040; margin: 1rem 0 1.5rem; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.card {
  background: #fff;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  padding: 1.5rem;
  border-top: 3px solid #0a2463;
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 4px 16px rgba(10,36,99,0.1); }
.card-icon { font-size: 28px; margin-bottom: 12px; color: #0a2463; }
.card h3 { font-size: 16px; font-weight: 700; color: #0a2463; margin-bottom: 8px; }
.card p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.card a { font-size: 13px; color: #0a2463; font-weight: 600; }
.card a:hover { color: #c49a10; }

/* ── COACH CARDS ── */
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.coach-card {
  background: #fff;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.coach-avatar {
  background: #0a2463;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f0c040;
}
.coach-info { padding: 1.25rem; }
.coach-info h3 { font-size: 16px; font-weight: 700; color: #0a2463; margin-bottom: 4px; }
.coach-info .role { font-size: 13px; color: #888; }

/* ── ROSTER TABLE ── */
.roster-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.roster-table th {
  background: #0a2463;
  color: #f0c040;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.roster-table td { padding: 11px 14px; border-bottom: 1px solid #eef0f8; color: #333; }
.roster-table tr:last-child td { border-bottom: none; }
.roster-table tr:hover td { background: #f7f8fc; }
.roster-table tr.captain td { font-weight: 600; }
.number-badge {
  display: inline-block;
  background: #0a2463;
  color: #f0c040;
  font-size: 12px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
}

/* ── SCHEDULE TABLE ── */
.schedule-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.schedule-table th {
  background: #0a2463;
  color: #f0c040;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.schedule-table td { padding: 11px 14px; border-bottom: 1px solid #eef0f8; color: #333; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #f7f8fc; }
.badge-win { background: #d4edda; color: #155724; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.badge-loss { background: #f8d7da; color: #721c24; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.badge-upcoming { background: #e8ecf8; color: #0a2463; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.home-tag { color: #0a2463; font-size: 11px; font-weight: 700; }
.away-tag { color: #888; font-size: 11px; }

/* ── STANDINGS ── */
.standings-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.standings-table th {
  background: #0a2463;
  color: #f0c040;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.standings-table td { padding: 11px 14px; border-bottom: 1px solid #eef0f8; }
.standings-table tr.highlight td { background: rgba(10,36,99,0.05); font-weight: 700; color: #0a2463; }
.standings-table tr:last-child td { border-bottom: none; }

/* ── WALL OF HONOR ── */
.honor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.honor-card {
  background: #fff;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  padding: 1.5rem;
  border-left: 4px solid #f0c040;
}
.honor-card .year { color: #f0c040; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.honor-card h3 { font-size: 17px; font-weight: 700; color: #0a2463; margin-bottom: 4px; }
.honor-card .detail { font-size: 13px; color: #666; }

/* ── BOOSTER / SPONSOR ── */
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 1.5rem; }
.sponsor-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
  color: #f0c040;
  font-size: 14px;
  font-weight: 600;
}

/* ── CONTACT INFO ── */
.contact-box {
  background: #f7f8fc;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  padding: 2rem;
  border-top: 3px solid #f0c040;
}
.contact-box h3 { font-size: 18px; font-weight: 700; color: #0a2463; margin-bottom: 1rem; }
.contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: #444; }
.contact-row i { color: #0a2463; font-size: 18px; }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── SPONSOR BAR ── */
.sponsor-bar {
  background: #071a47;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid #f0c040;
}
.sponsor-bar p { color: #aac4ee; font-size: 13px; margin-bottom: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.sponsor-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sponsor-pill {
  background: rgba(255,255,255,0.08);
  color: #f0c040;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(240,192,64,0.3);
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: #071a47;
  border-top: 3px solid #0a2463;
  padding: 2.5rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { color: #f0c040; font-size: 18px; font-weight: 700; margin-bottom: 0.75rem; }
.footer-tagline { color: #6a88b8; font-size: 13px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; color: #6a88b8; font-size: 13px; margin-bottom: 8px; }
.footer-col a:hover { color: #f0c040; text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: #6a88b8; font-size: 12px; }
.social-links { display: flex; gap: 12px; }
.social-links a { color: #6a88b8; font-size: 18px; transition: color 0.15s; }
.social-links a:hover { color: #f0c040; }

/* ── TABS ── */
.tabs { display: flex; border-bottom: 2px solid #e0e4f0; margin-bottom: 2rem; gap: 0; }
.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}
.tab-btn.active { color: #0a2463; border-bottom-color: #f0c040; }
.tab-btn:hover { color: #0a2463; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── STORE ── */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.merch-card {
  background: #fff;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.merch-img {
  background: #f7f8fc;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border-bottom: 1px solid #e0e4f0;
}
.merch-info { padding: 1rem; }
.merch-info h3 { font-size: 15px; font-weight: 700; color: #0a2463; margin-bottom: 4px; }
.merch-info .price { font-size: 16px; font-weight: 700; color: #c49a10; margin-bottom: 12px; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: #f0c040; }
.text-navy { color: #0a2463; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.note { font-size: 12px; color: #999; margin-top: 8px; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .two-col, .three-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .section { padding: 2.5rem 1rem; }
  .tabs { overflow-x: auto; }
}
