/* ====== Base Styles ====== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #F7F7F7;
  color: #222;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: inherit;
  margin-top: 0;
}

/* ====== Header and Nav ====== */
header {
  background: #800000;
  padding: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  height: 60px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #C5B358;
}

.site-header {
  border-bottom: 6px solid #C5B358; /* Vegas Gold accent */
  font-family: 'Arial Black', Arial, sans-serif;
  background: #fff;
}

.header-top {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 110px;
  background: #fff;
  overflow: hidden;
}

.header-angled-bg {
  width: 340px;
  height: 120px;
  background: #800000; /* Maroon */
  clip-path: polygon(0 0, 95% 0, 80% 100%, 0 100%);
  position: absolute;
  left: 0; top: 0; bottom: 0;
  z-index: 1;
}

.header-logo-box {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  max-height: 80px;
  max-width: 100px;
  margin-left: 40px;
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px #1111;
}

.header-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  z-index: 2;
  min-width: 300px;
}
.header-official {
  color: #666;
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.header-school {
  color: #800000;
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.13;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  background: #800000;
  justify-content: center;
  align-items: center;
  padding: 14px 0 11px 0;
  gap: 36px;
}
.main-nav a {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.16s;
}
.main-nav a:hover {
  color: #C5B358; /* Vegas Gold */
}

/* Responsive: Stack for mobile */
@media (max-width: 850px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    padding-top: 15px;
  }
  .header-angled-bg {
    width: 100vw;
    height: 64px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }
  .header-logo-box {
    width: 100vw;
    justify-content: center;
    margin: 0;
  }
  .header-logo {
    margin-left: 0;
    max-height: 52px;
  }
  .header-title {
    margin-left: 0;
    text-align: center;
    min-width: 0;
    margin-top: 8px;
  }
  .header-school {
    font-size: 1.08rem;
  }
  .main-nav {
    gap: 12px;
    font-size: 0.99rem;
    flex-wrap: wrap;
    padding: 8px 0 7px 0;
  }
}

/* Hamburger (Mobile) */
.menu-icon {
  display: none;
  font-size: 2.4rem;
  color: #800000;
  background: #fff;
  border-radius: 6px;
  padding: 7px 16px 5px 16px;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 100;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;    /* Hide menu by default on mobile */
    flex-direction: column;
    align-items: flex-start;
    background: #800000;
    position: absolute;
    top: 84px; /* Adjust based on your header height */
    left: 0;
    width: 100vw;
    padding: 18px 0 18px 0;
    z-index: 99;
  }
  .main-nav.show {
    display: flex;    /* Only show if .show class is present */
  }
  .main-nav a {
    width: 100vw;
    font-size: 1.6rem;
    padding: 18px 28px;
    border-bottom: 1px solid #fff1;
    text-align: left;
    background: #800000;
  }
  .menu-icon {
    display: block;
  }
}

/* ====== Hero Section with Photo + Overlay ====== */
.hero {
  position: relative;
  background: url('../images/TigersRunOut.png') center/cover no-repeat;
  min-height: 410px;
  text-align: center;
  padding: 110px 15px 70px 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(128,0,0,0.70); /* Maroon overlay, adjust as needed */
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}

/* ====== Countdown Styles ====== */
.countdown-wrapper {
  text-align: center;
  margin: 0 auto 30px auto;
  max-width: 950px;
  width: 100%;
  padding: 32px 12px 0 12px;
  box-sizing: border-box;
}

.next-opponent {
  color: #FFC72C;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.game-info {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.countdown-segment {
  flex: 1 1 0px;
  max-width: 220px;
  min-width: 90px;
  border: 3px solid #fff;
  border-radius: 7px;
  padding: 38px 12px 20px 12px;
  background: rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
}

.count-value {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.count-label {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #FFC72C;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Responsive for tablets and phones */
@media (max-width: 900px) {
  .countdown {
    gap: 20px;
    max-width: 98vw;
  }
  .countdown-segment {
    padding: 30px 5px 14px 5px;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .countdown {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 100vw;
  }
  .countdown-segment {
    width: 80vw;
    min-width: 0;
    max-width: 370px;
  }
  .next-opponent {
    font-size: 1.3rem;
  }
}

/* ====== Section Styles ====== */
.about, .news, .sponsors {
  background: #fff;
  margin: 24px auto;
  max-width: 800px;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.about h2, .news h2, .sponsors h2 {
  color: #800000;
}

.sponsor-logos img {
  height: 50px;
  margin: 0 12px;
}

.more-news {
  display: inline-block;
  margin-top: 12px;
  color: #800000;
  font-weight: bold;
}

/* ====== Footer ====== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  margin-top: 48px;
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;    /* Optional: make it stand out */
  font-weight: 900;     /* Optional: extra bold */
  letter-spacing: 1px;  /* Optional: for polish */
}

.hero .subtitle {
  color: #C5B358;
  font-size: 1.4rem;     /* Optional: adjust size */
  font-weight: 600;      /* Optional: make it bolder */
  margin-bottom: 20px;   /* Optional: add some spacing */
}

.next-game h2 {
  color: #fff;
  font-size: 2rem;    /* Optional: makes it stand out */
  font-weight: 800;   /* Optional: bold */
  margin-bottom: 10px;
}

.hero .next-opponent {
  color: #C5B358 !important;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.honors {
  background: #c5b358;
  padding: 36px 10px 36px 10px;
  margin: 0;
}

.honors-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.honor-item {
  flex: 1 1 0;
  min-width: 230px;
  max-width: 300px;
  background: transparent;
  text-align: center;
  color: #fff;
  padding: 22px 12px 18px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.honor-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.honor-number i {
  margin-left: 8px;
  font-size: 2.2rem;
  vertical-align: middle;
}

.honor-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #800000;
  margin-bottom: 8px;
}

.honor-years {
  font-size: 1.07rem;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 900px) {
  .honors-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .honor-item {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
}

.team-location-cta {
  text-align: center;
  margin: 60px 0 40px 0;
}

.team-location-cta h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #800000;
}

.team-location-cta .vegas-gold {
  color: #C5B358;
  font-size: 2.3rem;
  font-weight: 900;
}

.donate-btn {
  display: inline-block;
  background: #C5B358;
  color: #800000;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 22px 48px;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 4px 0 #b89d41;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  margin-top: 20px;
}

.donate-btn:hover, .donate-btn:focus {
  background: #b89d41;
  color: #fff;
  box-shadow: 0 2px 0 #947a29;
  text-decoration: none;
}

.donate-btn i {
  margin-right: 12px;
  font-size: 1.25em;
  vertical-align: middle;
  color: #800000; /* Maroon football icon for extra flair */
}

@media (max-width: 700px) {
  .team-location-cta h2,
  .team-location-cta .vegas-gold {
    font-size: 1.1rem;
  }
  .donate-btn {
    font-size: 1rem;
    padding: 16px 25px;
  }
}

.schedule-image-section {
  background: #111;
  padding: 44px 0 38px 0;
  text-align: center;
}

.schedule-image-header {
  background: #C5B358;
  color: #111;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 12px 0 8px 0;
  margin-bottom: 0;
}

.schedule-image-wrapper {
  margin: 34px auto 0 auto;
  max-width: 950px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.25);
  border-radius: 10px;
  overflow: hidden;
}

.schedule-image {
  width: 100%;
  max-width: 950px;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .schedule-image-wrapper {
    max-width: 97vw;
  }
  .schedule-image {
    max-width: 97vw;
  }
  .schedule-image-header {
    font-size: 1.08rem;
  }
}

.sponsors-section {
  background: #800000; /* Tucker Maroon */
  padding: 40px 0 40px 0;
  margin: 0;
}

.sponsors-heading {
  color: #C5B358;            /* Vegas gold */
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin: 0 0 32px 0;
  letter-spacing: 1px;
  text-transform: uppercase; /* Optional: all caps */
}

.sponsors-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 60px; /* row gap, column gap */
}

.sponsors-logos img {
  height: 160px;
  max-width: 400px;
  object-fit: contain;
  background: transparent;
  padding: 6px 18px;
  border-radius: 10px;
  display: block;
  /* REMOVE or comment out this line: */
  /* filter: brightness(0) invert(1) grayscale(1); */
  transition: filter 0.2s, box-shadow 0.2s;
}

.sponsors-logos img:hover {
  filter: brightness(1) invert(0) grayscale(0) drop-shadow(0 0 12px #C5B358);
  background: #fff;
}

@media (max-width: 900px) {
  .sponsors-logos {
    gap: 26px 10vw;
  }
  .sponsors-logos img {
    height: 120px;
    max-width: 80vw;
  }
}
@media (max-width: 600px) {
  .sponsors-section {
    padding: 24px 0;
  }
  .sponsors-logos {
    gap: 20px 4vw;
  }
  .sponsors-logos img {
    height: 80px;
    max-width: 98vw;
  }
}

.sponsor-logo-large {
  height: 250px !important;      /* or try 140px, 160px, etc. */
  max-width: 360px !important;   /* Adjust as needed */
  object-fit: contain;
}

footer {
  margin-top: 48px;
  font-family: inherit;
}

.footer-top {
  background: #C5B358;
  text-align: center;
  padding: 14px 0 24px 0;
}

.footer-share-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-share-icons {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 580px;
  margin: 0 auto;
}

.footer-share-icons a {
  flex: 1;
  background: transparent;
  color: #111;
  font-size: 2.2rem;
  border: 2px solid #fff;
  margin: 0 3px;
  padding: 18px 0;
  border-radius: 2px;
  text-align: center;
  transition: background 0.15s, color 0.15s, border 0.15s;
}

.footer-share-icons a:hover {
  background: #fff;
  color: #C5B358;
  border-color: #C5B358;
}

.footer-main {
  background: #111;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 38px 0 38px 0;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 270px;
  margin: 0 18px;
}

.footer-col h4 {
  color: #FFC72C;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a,
.footer-col a {
  color: #FFC72C;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover,
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  color: #FFC72C;
  font-size: 1.7rem;
  transition: color 0.14s;
}
.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  background: #C5B358;
  color: #111;
  text-align: center;
  padding: 13px 0 7px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-bottom .footer-dev {
  font-size: 0.89rem;
  font-weight: 400;
  color: #800000;
}

.footer-bottom-icons {
  display: flex;
  gap:15px;
  font-size: 1.25rem;
  margin-right: 10px;
}

.footer-bottom-icons a {
  color: #111;
  transition: color 0.15s;
}

.footer-bottom-icons a:hover {
  color: #800000;
}

@media (max-width: 1050px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-col {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 26px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 13px 0 13px 0;
  }
  .footer-bottom-icons {
    margin-right: 0;
    margin-bottom: 7px;
  }
}

.footer-col {
  /* ...existing styles... */
  text-align: center; /* Add this for ALL columns or just for social column */
}

/* To only center "Follow Us" icons: */
.footer-col .footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-col .footer-social a {
  color: #FFC72C;
  font-size: 2.2rem;
  transition: color 0.18s;
}
.footer-col .footer-social a:hover {
  color: #fff;
}

.custom-social-icon {
  vertical-align: middle;
  border-radius: 6px;          /* Optional: soft corners */
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.15s, filter 0.15s;
}

.footer-share-icons a:hover .custom-social-icon {
  box-shadow: 0 2px 8px #C5B35855;
  filter: brightness(0.8);
}

.honor-icon-custom {
  height: 46px;
  width: auto;
  vertical-align: middle;
  margin-left: 6px;
  /* Optional: for round logos */
  border-radius: 8px;
  /* Optional: shadow or hover effect */
  /* box-shadow: 0 2px 8px #80000022; */
}

.schedule-image-section {
  background: #111;
  padding: 44px 0 38px 0;
  text-align: center;
}
.schedule-image-header {
  background: #C5B358;
  color: #111;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 12px 0 8px 0;
  margin-bottom: 0;
}
.schedule-image-wrapper {
  margin: 34px auto 0 auto;
  max-width: 950px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.25);
  border-radius: 10px;
  overflow: hidden;
}
.schedule-image {
  width: 100%;
  max-width: 950px;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .schedule-image-wrapper,
  .schedule-image {
    max-width: 97vw;
  }
  .schedule-image-header {
    font-size: 1.08rem;
  }
}

.responsive-schedule {
  background: #fff;
  padding: 44px 0 44px 0;
  text-align: center;
}
.responsive-schedule-title {
  color: #800000;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.responsive-schedule-wrapper {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #222;
  font-size: 1.08rem;
}
.schedule-table th, .schedule-table td {
  padding: 14px 8px;
  border-bottom: 2px solid #C5B358;
  text-align: center;
}
.schedule-table th {
  background: #C5B358;
  color: #800000;
  font-weight: 800;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.schedule-table tbody tr:hover {
  background: #f6eed2;
}
.result-win {
  color: #3CB371;
  font-weight: 700;
}
.result-loss {
  color: #C90000;
  font-weight: 700;
}
@media (max-width: 600px) {
  .responsive-schedule-title {
    font-size: 1.12rem;
  }
  .schedule-table th, .schedule-table td {
    padding: 8px 2px;
    font-size: 0.99rem;
  }
}
.roster-cards-section {
  background: #faf8f4;
  padding: 54px 0 44px 0;
  text-align: center;
}
.roster-cards-title {
  color: #800000;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.roster-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 14px;
}
.player-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(197,179,88,0.11);
  padding: 28px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  min-height: 335px;
}
.player-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 8px 34px #C5B35844;
}
.player-photo img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C5B358;
  background: #e0dec9;
  margin-bottom: 16px;
}
.player-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: #C5B358;
  margin-bottom: 3px;
}
.player-name {
  font-size: 1.14rem;
  font-weight: 800;
  color: #800000;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.player-details {
  color: #555;
  font-size: 1.01rem;
  margin-bottom: 4px;
  font-weight: 600;
}
.player-pos {
  color: #C5B358;
  font-weight: 900;
}
.player-grade {
  color: #800000;
}
.player-phys {
  color: #333;
  font-size: 0.98rem;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .roster-cards-title {
    font-size: 1.16rem;
  }
  .player-card {
    min-height: 265px;
    padding: 15px 5px 10px 5px;
  }
  .player-photo img {
    width: 78px;
    height: 78px;
  }
}

.player-photo {
  width: 140px;                /* 3.5" at 40px/inch screen scale */
  height: 200px;               /* 5" at 40px/inch */
  margin: 0 auto 16px auto;
  border-radius: 12px;         /* Slightly rounded corners */
  overflow: hidden;
  background: #e0dec9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #C5B358;
  box-sizing: border-box;
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #e0dec9;
}

.coaches-section {
  background: #faf8f4;
  padding: 54px 0 44px 0;
  text-align: center;
}
.coaches-title {
  color: #800000;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 12px;
}
.coach-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(197,179,88,0.11);
  padding: 26px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.coach-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 34px #C5B35844;
}
.coach-photo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C5B358;
  background: #e0dec9;
  margin-bottom: 15px;
}
.coach-name {
  font-size: 1.22rem;
  font-weight: 900;
  color: #800000;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.coach-role {
  color: #C5B358;
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.coach-bio {
  color: #333;
  font-size: 0.97rem;
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .coaches-title {
    font-size: 1.14rem;
  }
  .coach-card {
    min-height: 240px;
    padding: 14px 5px 10px 5px;
  }
  .coach-photo img {
    width: 76px;
    height: 76px;
  }
}

.coach-photo {
  width: 140px;       /* 3.5 inches at 40px/inch scale */
  height: 200px;      /* 5 inches at 40px/inch */
  margin: 0 auto 15px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #e0dec9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #C5B358;
  box-sizing: border-box;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #e0dec9;
}

.donate-hero {
  background: #C5B358;
  color: #111;
  text-align: center;
  padding: 60px 20px 40px 20px;
}
.donate-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #800000;
}
.donate-lead {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #111;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.donate-main-btn {
  background: #800000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 9px;
  padding: 19px 46px;
  text-decoration: none;
  box-shadow: 0 6px 0 #9f7b26;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
  margin-top: 12px;
}
.donate-main-btn:hover {
  background: #C5B358;
  color: #800000;
  box-shadow: 0 4px 0 #C5B358;
  border: 2px solid #800000;
}

.donate-details, .donate-more-ways {
  background: #faf8f4;
  padding: 36px 16px;
  max-width: 640px;
  margin: 30px auto;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 8px #80000022;
}
.donate-details h2, .donate-more-ways h2 {
  color: #800000;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.donate-details ul, .donate-more-ways ul {
  list-style: disc inside;
  color: #222;
  font-size: 1.05rem;
  padding-left: 20px;
}
.donate-more-ways a {
  color: #800000;
  font-weight: 700;
  text-decoration: underline;
}
.donate-more-ways a:hover {
  color: #C5B358;
}

.donate-bg-section {
  background:
    linear-gradient(rgba(197,179,88,0.45), rgba(197,179,88,0.45)),
    url('../images/helmetphoto.png') center center/cover no-repeat;
  padding: 44px 0;
  min-height: 100vhx;
}
.donate-details, .donate-more-ways {
  background: rgba(255,255,255,0.88);
  padding: 36px 16px;
  max-width: 640px;
  margin: 30px auto;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 8px #80000022;
  color: #111;
}

.contact-hero {
  background: #C5B358;
  color: #800000;
  text-align: center;
  padding: 54px 18px 32px 18px;
}
.contact-hero h1 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 46px;
  max-width: 1100px;
  margin: 0 auto 44px auto;
  padding: 36px 12px 36px 12px;
  flex-wrap: wrap;
}
.contact-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px #80000015;
  padding: 32px 24px 26px 24px;
  flex: 1 1 260px;
  max-width: 330px;
}
.contact-info h2 {
  color: #800000;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  font-size: 1.04rem;
  margin-bottom: 12px;
  color: #222;
}
.contact-info a {
  color: #800000;
  text-decoration: underline;
  font-weight: 600;
}
.contact-info a:hover {
  color: #C5B358;
}
.contact-form-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px #80000015;
  padding: 32px 24px 26px 24px;
  flex: 2 1 360px;
  max-width: 550px;
}
.contact-form-wrapper h2 {
  color: #800000;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 13px;
  border: 1.5px solid #C5B358;
  border-radius: 7px;
  font-size: 1.09rem;
  font-family: inherit;
  outline: none;
  resize: none;
  color: #222;
  background: #faf8f4;
  transition: border 0.16s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #800000;
}
.contact-form button {
  background: #800000;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  border: none;
  border-radius: 7px;
  padding: 16px 0;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.contact-form button:hover {
  background: #C5B358;
  color: #800000;
}
.form-note {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #444;
}
.form-note a {
  color: #800000;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .contact-info,
  .contact-form-wrapper {
    max-width: 100%;
    padding: 22px 12px 16px 12px;
  }
}

.contact-bg {
  background:
    linear-gradient(rgba(197,179,88,0.60), rgba(197,179,88,0.60)),
    url('../images/CoachJonesphoto.png') center center/cover no-repeat;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  box-sizing: border-box;
}
.contact-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}
.contact-info {
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  box-shadow: 0 2px 10px #80000015;
  padding: 32px 24px 26px 24px;
  max-width: 410px;
  min-width: 240px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-info {
    max-width: 98vw;
    padding: 22px 8px 14px 8px;
  }
}

.coming-soon-hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(128,0,0,0.72), rgba(197,179,88,0.70)),
    url('../images/Boystackling.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.coming-soon-content {
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  padding: 54px 32px 44px 32px;
  box-shadow: 0 6px 28px #80000044;
  text-align: center;
  max-width: 410px;
  width: 100%;
  margin: 0 auto;
}
.coming-soon-logo {
  height: 94px;
  margin-bottom: 22px;
}
.coming-soon-hero h1 {
  color: #800000;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.coming-soon-hero p {
  color: #111;
  font-size: 1.17rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.coming-soon-cta {
  margin-top: 18px;
}
.coming-soon-btn {
  display: inline-block;
  background: #C5B358;
  color: #800000;
  font-weight: 800;
  font-size: 1.17rem;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 0 #9f7b26;
  transition: background 0.16s, color 0.16s;
  margin-top: 10px;
}
.coming-soon-btn:hover {
  background: #800000;
  color: #C5B358;
  box-shadow: 0 4px 0 #C5B358;
}
@media (max-width: 600px) {
  .coming-soon-content {
    padding: 30px 5vw 22px 5vw;
    max-width: 96vw;
  }
  .coming-soon-logo {
    height: 60px;
    margin-bottom: 10px;
  }
  .coming-soon-hero h1 {
    font-size: 1.25rem;
  }
  .coming-soon-btn {
    font-size: 1rem;
    padding: 11px 22px;
  }
}



.menu-icon {
  display: none;
  font-size: 2.4rem;
  color: #800000;
  cursor: pointer;
  position: absolute;
  top: 42px;
  right: 32px;
  z-index: 22;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #800000;
    position: absolute;
    top: 96px; /* just below header-top */
    left: 0;
    width: 100vw;
    padding: 18px 0;
    gap: 0;
    box-shadow: 0 10px 30px #2222;
    z-index: 20;
  }
  .main-nav.show {
    display: flex;
  }
  .main-nav a {
    padding: 14px 30px;
    width: 100vw;
    border-bottom: 1px solid #C5B35833;
    text-align: left;
    font-size: 1.11rem;
  }
  .menu-icon {
    display: block;
  }
  .header-top {
    min-height: 72px;
  }
}

.site-header {
  border-bottom: 6px solid #C5B358;
  font-family: 'Arial Black', Arial, sans-serif;
  background: #fff;
}

.header-row {
  display: flex;
  align-items: stretch;
  min-height: 112px;
  background: #fff;
}

.header-angled-bg {
  width: 310px; /* Adjust for logo size */
  min-width: 220px;
  background: #800000;
  clip-path: polygon(0 0, 97% 0, 78% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.header-logo {
  max-height: 78px;
  max-width: 105px;
  margin-left: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #1111;
  display: block;
}

.header-title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 34px;
  padding-right: 24px;
  z-index: 2;
  flex: 1 1 0;
}

.header-official {
  color: #777;
  font-size: 1.09rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.header-school {
  color: #800000;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.13;
  text-transform: uppercase;
}

/* Nav styles */
.main-nav {
  display: flex;
  background: #800000;
  justify-content: center;
  align-items: center;
  padding: 14px 0 11px 0;
  gap: 36px;
}
.main-nav a {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.16s;
}
.main-nav a:hover {
  color: #C5B358;
}

/* Responsive: Stack for mobile */
@media (max-width: 900px) {
  .header-row {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .header-angled-bg {
    width: 100vw;
    min-width: 0;
    height: 60px;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
    justify-content: flex-start;
    padding-left: 28vw;
  }
  .header-logo {
    max-height: 46px;
    margin-left: 0;
  }
  .header-title-block {
    margin-left: 0;
    text-align: center;
    padding: 6px 0 10px 0;
  }
  .header-school {
    font-size: 1.1rem;
  }
  .main-nav {
    gap: 13px;
    font-size: 1.01rem;
    flex-wrap: wrap;
    padding: 8px 0 7px 0;
  }
}

.site-header {
  position: relative;  /* Ensure absolute children position correctly */
  z-index: 10;
}

/* Hamburger icon styles */
.menu-icon {
  display: none;
  font-size: 2.4rem;
  color: #800000;
  background: #fff;
  border-radius: 6px;
  padding: 7px 16px 5px 16px;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 100;
}

/* Responsive navigation */
@media (max-width: 900px) {
  .main-nav {
    display: none;    /* Hide menu by default on mobile */
    flex-direction: column;
    align-items: flex-start;
    background: #800000;
    position: absolute;
    top: 84px; /* Adjust based on your header height */
    left: 0;
    width: 100vw;
    padding: 18px 0 18px 0;
    z-index: 99;
    transition: all 0.3s;
    box-shadow: 0 6px 20px #0003;
  }
  .main-nav.show {
    display: flex;    /* Show menu when toggled */
  }
  .main-nav a {
    width: 100vw;
    font-size: 1.6rem;
    padding: 18px 28px;
    border-bottom: 1px solid #fff1;
    text-align: left;
    background: #800000;
    transition: background 0.15s;
  }
  .main-nav a:hover {
    background: #a31c1c;
  }
  .menu-icon {
    display: block;
  }
}

body {
  overflow-x: hidden; /* Prevents unwanted horizontal scroll on mobile menu */
}

.donate-alt-payments {
  background: #fffbe5;
  border-radius: 10px;
  box-shadow: 0 6px 28px #80000011;
  padding: 38px 30px;
  margin: 36px auto 0 auto;
  max-width: 615px;
  text-align: center;
}

.donate-alt-payments h2 {
  color: #800000;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.alt-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.alt-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  color: #222;
  font-weight: 700;
}

.alt-payment-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}