:root{
  --video-text-colour: #f70;
  --video-button-text-colour: #000000;
  --video-button-border-colour: #000;
  --video-button-background-colour: #f70;
  --video-button-hover-text-colour: #000;
  --video-button-hover-background-colour: #f70;
  --video-button-hover-border-colour: #f70;

  --about-title-colour: #222;
  --about-background-colour: #f70;
  --about-underline-colour: #3e3e3e;
  --about-description-colour: #000;
  --about-image-shadow: #0000001a;

  --memories-background-colour: #222;
  --memories-title-colour: #fff;
  --memories-underline-colour: #f70;
  --memories-caption-colour: #fff;
  --memories-caption-background: #00000067;
  --memories-caption-hover-background: #000000b3;

  --coaches-background: #f70;
  --coaches-title: #222;
  --coaches-underline-colour: #3e3e3e;
  --coaches-name-title: #fff;
  --coaches-subtext: #222;
  --coaches-description: #fff;
  --coaches-background-top: #000000;
  --coaches-backround-bottom: #0000000d;

  --hof-background: #222;
  --hof-title: #fff;
  --hof-underline: #f70;
  --hof-description: #fff;
  --hof-card-background: #333;
  --hof-card-title: #f70;
  --hof-card-description: #fff;

  --merch-background: #f70;
  --merch-title: #222;
  --merch-underline: #3e3e3e;
  --merch-description: #222;
  --merch-card-background: #b95600;
  --merch-card-title: #222;
  --merch-card-description: #222;

  --register-section: #222;  
  --register-section-title: #fff;  
  --register-underline-colour: #f70;
  --register-section-text: #fff;  
  --register-section-button-background: #f70;  
  --register-section-button-text: #000;  
  --register-section-button-border: #000;  
  --register-section-button-border-hover: #222;  
  --register-section-button-background-hover: #f70;  

  --support-text-colour: #fff;
  --support-email: #f70;
  --support-email-hover: #ffa600;
  --support-button-text: #000000;
  --support-background: #090808c4;

  --support-btn-fb: #3b5998;
  --support-btn-fb-hover: #476bb8;
  --support-btn-insta: #f46f30;
  --support-btn-insta-hover: #f68855;
  --support-btn-email: #39c2a3;
  --support-btn-email-hover: #61d1b7;

  --footer-background: #121212;
  --footer-text: #fff;
}


html,
body {
  margin: 0;
  overflow-x: hidden;
  font-family: quicksand;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  padding-top: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  text-align: center;
  
  /* New for fade */
  opacity: 1;
  transition: opacity 0.5s ease;
}


.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--video-text-colour);
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

.hero-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  color: var(--video-button-text-colour);
  border: 2px solid var(--video-button-border-colour);
  background-color: var(--video-button-background-colour) !important;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: var(--video-button-hover-background-colour);
  border-color: var(--video-button-hover-border-colour);
  color: var(--video-button-hover-text-colour);
  transform: scale(1.05);
}

.about-section {
  padding: 2rem;
  background-color: var(--about-background-colour);
  padding-bottom: 5rem;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 3rem;
  color: var(--about-title-colour);
  margin-bottom: 3rem;
  
  text-transform: uppercase;
  border-bottom: 2px solid var(--about-underline-colour);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* Remove flex-wrap: wrap; to prevent wrapping onto new lines */
  /* Remove flex-direction: column; from the @media query if it's there */
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--about-image-shadow);
}

.about-description {
  max-width: 500px;
  text-align: justify;
  font-size: 1.1rem;
  color: var(--about-description-colour);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-description {
    text-align: center;
  }
}


.memories-section {
  background-color: var(--memories-background-colour);
  padding: 3rem 1rem;
  text-align: center;
}

.memories-title {
  color: var(--memories-title-colour);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  position: relative;
}

.memories-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--memories-underline-colour);
  margin: 0.5rem auto 0;
}

.memories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.memories-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
}

.memories-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.memories-caption {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--memories-caption-background);
  color: var(--memories-caption-colour);
  font-weight: bold;
  font-size: 1.75rem;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.memories-item:hover img {
  transform: scale(1.03);
  filter: brightness(85%);
}

.memories-item:hover .memories-caption {
  background: var(--memories-caption-hover-background);
}


.coaches-section {
  padding: 2rem 1rem;
  background-color: var(--coaches-background);
}


.coaches-title {
  text-align: center;
  font-size: 2em;
  margin: 2rem auto 2rem auto;
  color: var(--coaches-title);
}

.coaches-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: var(--coaches-underline-colour);
  margin: 0.5rem auto 0;
}


.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}


.coach-item {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}


.coach-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.coach-item img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}


.coach-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;  
  background: linear-gradient(to bottom, var(--coaches-background-top), var(--coaches-backround-bottom));

}

.coaches-subtext-container{
  text-align: center;
  margin: 2rem auto 2rem auto;
}

.coaches-subtext{
  text-align: center;
  font-size: 2em;
  margin: 2rem auto 2rem auto;
  color: var(--coaches-subtext);
  text-decoration: none;
}

.coach-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--coaches-name-title);
}


.coach-content p {
  margin: 0;
  font-size: 0.95rem;
  flex-grow: 1;
  word-wrap: break-word;
  color: var(--coaches-description);
}


.coaches-grid>.coach-item {
  display: flex;
  flex-direction: column;
}

.hof-section{
  background-color: var(--hof-background);
  padding: 60px 20px;
  text-align: center;
}

.hof-container {
  max-width: 1000px;
  margin: 0 auto;
}

.hof-container h2 {
  color: var(--hof-title);
  font-size: 2em;
  margin-bottom: 10px;
}

.hof-container h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: var(--hof-underline);
  margin: 0.5rem auto 0;
}

.hof-intro {
  color: var(--hof-description);
  margin-bottom: 40px;
  font-size: 1.1em;
}

.hof-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hof-card {
  background-color: var(--hof-card-background);
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform 0.2s;
}

.hof-card:hover {
  transform: translateY(-5px);
}

.hof-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.hof-card h3 {
  color: var(--hof-card-title);
  font-size: 1.2em;
  margin: 10px 0 5px;
}

.hof-highlight {
  font-size: 0.95em;
  color: var(--hof-card-description);
}

.merch-section {
    background-color: var(--merch-background); 
    padding: 4rem 1rem;
    text-align: center;
}

.merch-container {
    max-width: 1200px;
    margin: 0 auto;
}

.merch-title {
    color: var(--merch-title);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.merch-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: var(--merch-underline);
    margin: 0.5rem auto 1rem;
}

.merch-intro {
    color: var(--merch-description);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.merch-item a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: var(--merch-card-background);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 10px #f70; 
}

.merch-item img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.merch-item a:hover img {
    transform: scale(1.05);
}

.merch-content {
    padding: 1rem;
    text-align: left;
}

.merch-content h3 {
    color: var(--merch-card-title);
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.merch-price {
    color: var(--merch-card-description);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.merch-button-container {
    text-align: center;
}

.merch-button {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-section {
  padding: 4rem 1rem;
  background-color: var(--register-section);
  color: var(--register-section-text);
  text-align: center;
}

.register-container {
  max-width: 800px;
  margin: 0 auto;
}

.register-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--register-section-title);
  margin-bottom: 1.5rem;
}

.register-title::after{
  content: "";
  display: block;
  width: 240px;
  height: 2px;
  background: var(--register-underline-colour);
  margin: 0.5rem auto 0;
}

.register-content {
  font-size: 1.1rem;
  line-height: 1.6;
}

.register-content p {
  margin-bottom: 1.5rem;
}

.register-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  color: var(--register-section-button-text);
  background-color: var(--register-section-button-background);
  border: 2px solid var(--register-section-button-border);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.register-button:hover {
  background-color: var(--register-section-button-background-hover);
  border-color: var(--register-section-button-border-hover);
  transform: scale(1.05);
}

.support-image {
  background-image:
  linear-gradient(var(--support-background), var(--support-background)),
  url('https://www.svgheart.com/wp-content/uploads/2021/11/tiger-skin-pattern-animal-print-free-svg-file-SvgHeart.Com.png');

position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-size: cover;
z-index: -1;
}

.support-section {
  color: var(--support-text-colour);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
}



.support-container {
  max-width: 800px;
  margin: 0 auto;
}

.support-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.support-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.support-email {
  color: var(--support-email);
  text-decoration: underline;
  font-weight: bold;
}

.support-email:hover {
  color: var(--support-email-hover);
}

.support-subtitle {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.support-btn {
  padding: 0.8rem 1.6rem;
  color: var(--support-button-text);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.support-btn:hover {
  transform: scale(1.1);
}


.facebook {
  background-color: var(--support-btn-fb);
}

.instagram {
  background-color: var(--support-btn-insta);
}

.email {
  background-color: var(--support-btn-email);
}
.facebook:hover{
  background-color: var(--support-btn-fb-hover);
}

.instagram:hover{
  background-color: var(--support-btn-insta-hover);
}

.email:hover{
  background-color: var(--support-btn-email-hover);
}

.footer-container {
  background-color: var(--footer-background);
  color: var(--footer-text);
  text-align: center;
  padding: 40px 20px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.policy-grid-flex {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between;
}

.policy-grid-flex .policy-link {
    flex: 1 1 25%; 
    box-sizing: border-box; 
    padding: 1rem;
    text-align: center;
  text-decoration: none;
  color: white;
}

.sponsor-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.sponsor-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sponsor-link:hover {
  transform: scale(1.1);
}

.sponsor-img {
  width: 100px;
  height: auto;
  display: block;
}
