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



header.main-header {
  background: white;
  border-bottom: 5px solid #e10600;
  color: black;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.team-logo {
  height: 180px;
  width: auto;
  max-height: none;
  flex-shrink: 0;
}



@media (max-width: 768px) {
  .team-logo {
    height: 100px;
  }
}




.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 20px;
}


.nav-menu {
  margin-left: 20px;  /* Adjust as needed */
}


.nav-menu li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #e10600;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  height: 32px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* Hamburger hidden by default */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #c00000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 80%;
    max-width: 100px;
    padding: 1rem;
    z-index: 1000;
    border-top: 3px solid #ffd700;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 8px 8px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-menu li {
    text-align: left;
    margin: 10px 0;
  }

  .mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
  }

  .mobile-social-icons img {
    height: 28px;
  }

  /* Hide desktop version of icons */
  .main-header .social-icons {
    display: none;
  }
}

/* Hide mobile-only social icons on desktop */
.mobile-social-icons {
  display: none;
}

@media (max-width: 768px) {
  .mobile-social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .mobile-social-icons .icon-links {
    display: flex;
    gap: 12px;
  }

  .mobile-social-icons img {
    height: 28px;
  }
}


/* === Moved from index.php inline style === */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #c00000;
}

.social-icons {
  margin-left: auto;
  margin-right: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-left: 0.75rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}









/* === Hero Section (Fullscreen Landing Image) === */
.hero {
	  position: relative;
	    width: 100%;
	      height: 100vh;
	        overflow: hidden;
	}

	.hero::before {
		  content: '';
		    position: absolute;
		      top: 0; left: 0;
		        width: 100%; height: 100%;
			  background: rgba(0, 0, 0, 0.35); /* Dark tint overlay */
			    z-index: 0;
		    }

			.hero-img {
				  position: absolute;
				    top: 0; left: 0;
				      width: 100%;
				        height: 100%;
					  background-size: cover;
					    background-position: center;
					      opacity: 0;
					        transition: opacity 1s ease-in-out;
						  z-index: -1;
					  }

					  .hero-img1 { background-image: url('images/slide1.jpg'); }
					  .hero-img2 { background-image: url('images/slide2.jpg'); }
					  .hero-img3 { background-image: url('images/slide3.jpg'); }
					  .hero-img4 { background-image: url('images/slide4.jpg'); }
					  .hero-img5 { background-image: url('images/slide5.jpg'); }
					  .hero-img7 { background-image: url('images/slide7.jpg'); }
					  .hero-img.active {
						    opacity: 1;
					    }




				  .hero-overlay {
					    position: absolute;
					      top: 50%;
					        left: 50%;
						  transform: translate(-50%, -50%);
						    color: white;
						      text-align: center;
						        z-index: 1;
							  font-family: 'Oswald', sans-serif;
							    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
						    }

						    .hero-overlay h1 {
							      font-size: 3rem;
							        margin-bottom: 0.5rem;
							}

							.hero-overlay p {
								  font-size: 1.5rem;
							  }

							  /* === Mobile Scaling for Hero Text === */
							  @media (max-width: 600px) {
								    .hero-overlay h1 {
									        font-size: 2rem;
										  }

										    .hero-overlay p {
											        font-size: 1.1rem;
												  }
											  }



.main-footer {
	  background-color: #111;
	    color: white;
	      font-family: 'Oswald', sans-serif;
	        padding: 2.5rem 1rem;
		  text-align: center;
		    position: relative;
	    }

	    .footer-line {
		      height: 5px;
		        background-color: #c00000;
			  width: 100%;
			    position: absolute;
			      top: 0;
			        left: 0;
			}

			.footer-content p {
				  margin: 0.5rem 0;
				    font-size: 1rem;
			    }

			    .footer-content a {
				      color: white;
				        margin: 0 0.4rem;
					  font-size: 1.2rem;
					    transition: color 0.3s ease;
				    }

				    .footer-content a:hover {
					      color: #ffd700;
				      }


/* === Modern Animated Roster === */
				      .roster-section {
					        padding: 3rem 1rem;
						  text-align: center;
						    font-family: 'Oswald', sans-serif;
					    }
					    .roster-grid {
						      display: grid;
						        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
							  gap: 1.5rem;
							    justify-items: center;
							      margin-top: 2rem;
						      }
						      .roster-card {
							        width: 220px;
								  height: 300px;
								    perspective: 1000px;
							    }
							    .roster-inner {
								      width: 100%;
								        height: 100%;
									  position: relative;
									    transition: transform 0.8s;
									      transform-style: preserve-3d;
								      }
								      .roster-card:hover .roster-inner {
									        transform: rotateY(180deg);
									}
									.roster-front, .roster-back {
										  position: absolute;
										    width: 100%;
										      height: 100%;
										        backface-visibility: hidden;
											  border-radius: 10px;
											    overflow: hidden;
											      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
										      }
										      .roster-front img {
											        width: 100%;
												  height: 100%;
												    object-fit: cover;
											    }
											    .roster-back {
												      background: #c00000;
												        color: white;
													  transform: rotateY(180deg);
													    display: flex;
													      flex-direction: column;
													        justify-content: center;
														  align-items: center;
														    padding: 1rem;
													    }
													    .roster-back h3 {
														      margin: 0.5rem 0;
														        font-size: 1.2rem;
														}
														.roster-back p {
															  margin: 0.3rem 0;
															    font-size: 0.9rem;
														    }


.roster-grid {
	  display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	      gap: 20px;
	        justify-items: center;
		  perspective: 1000px;
		    padding: 40px;
	    }

	    .roster-card {
		      width: 220px;
		        height: 300px;
			  position: relative;
			    perspective: 1000px;
			      z-index: 1;
			        transform-style: preserve-3d;
			}

			.roster-inner {
				  width: 100%;
				    height: 100%;
				      transition: transform 0.8s;
				        transform-style: preserve-3d;
					  position: relative;
				  }

				  .roster-card:hover .roster-inner {
					    transform: rotateY(180deg);
					      z-index: 2;
				      }

				      .roster-front,
				      .roster-back {
					        position: absolute;
						  width: 100%;
						    height: 100%;
						      backface-visibility: hidden;
						        border-radius: 10px;
							  overflow: hidden;
						  }

						  .roster-front {
							    background: #fff;
							      display: flex;
							        align-items: center;
								  justify-content: center;
							  }

							  .roster-front img {
								    width: 100%;
								      height: 100%;
								        object-fit: cover;
								}

								.roster-back {
									  background: #f32020;
									    color: white;
									      transform: rotateY(180deg);
									        padding: 20px;
										  text-align: center;
										    display: flex;
										      flex-direction: column;
										        justify-content: center;
										}


/* Fix for overlapping flip cards */
.roster-card {
  width: 220px;
  height: 300px;
  perspective: 1000px;
  position: relative;
  z-index: 1;
  transition: z-index 0.3s;
}

.roster-card:hover {
  z-index: 10;
}

.facility-section {
	  padding: 60px 20px;
	    background: #fff;
	      color: #222;
	        text-align: center;
	}

	.facility-section h2 {
		  font-size: 2.5rem;
		    margin-bottom: 40px;
		      color: #c40000;
	      }

	      .facility-content {
		        display: flex;
			  flex-wrap: wrap;
			    justify-content: center;
			      gap: 40px;
			        align-items: center;
				  max-width: 1200px;
				    margin: 0 auto;
			    }

			    .facility-content img {
				      max-width: 500px;
				        width: 100%;
					  border-radius: 12px;
					    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
				    }

				    .facility-text {
					      max-width: 500px;
					        text-align: left;
						  font-size: 1.1rem;
						    line-height: 1.6;
					    }


.schedule-section {
	  text-align: center;
	    padding: 60px 20px;
    }

    .schedule-section h2 {
	      color: #c40000;
	        font-size: 2.5rem;
		  margin-bottom: 30px;
	  }

	  .schedule-img {
		    max-width: 100%;
		      height: auto;
		        border-radius: 12px;
			  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		  }



.about-section {
	  padding: 60px 20px;
	    max-width: 1000px;
	      margin: 0 auto;
	        font-family: 'Oswald', sans-serif;
		  text-align: center;
	  }

	  .about-section h2 {
		    font-size: 2.5rem;
		      margin-bottom: 20px;
		        color: #c40000;
		}

		.about-intro p {
			  font-size: 1.1rem;
			    line-height: 1.6;
			      margin-bottom: 20px;
			        text-align: left;
			}

			.coaches-grid {
				  display: flex;
				    flex-wrap: wrap;
				      justify-content: center;
				        gap: 30px;
					  margin-top: 30px;
				  }

				  .coach-card {
					    background-color: #f7f7f7;
					      padding: 20px 30px;
					        border-radius: 10px;
						  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
						    width: 260px;
					    }

					    .coach-card h4 {
						      margin-bottom: 10px;
						        color: #c40000;
						}


.contact-form {
	  max-width: 600px;
	    margin: 30px auto;
	      padding: 20px;
	        display: flex;
		  flex-direction: column;
		    gap: 15px;
		      background-color: #fff;
		        border: 1px solid #ccc;
			  border-radius: 6px;
		  }

.contact-form input,
.contact-form textarea {
	  padding: 10px;
	    font-size: 16px;
	      border: 1px solid #aaa;
	        border-radius: 4px;
		  width: 100%;
		    box-sizing: border-box;
	    }


.contact-form button {
	  background-color: #cc0000;
	    color: white;
	      padding: 12px;
	        border: none;
		  border-radius: 4px;
		    cursor: pointer;
		      font-weight: bold;
		        transition: background-color 0.3s ease;
		}

		.contact-form button:hover {
			  background-color: #a10000;
		  }

main .content p[style*="color:green"],
main .content p[style*="color:red"] {
	  text-align: center;
	    font-size: 16px;
	      margin-top: 20px;
	        font-weight: bold;
	}


@media screen and (max-width: 600px) {
	  .contact-form {
		      width: 90%;
		          margin: 20px auto;
			      padding: 15px;
			        }

				  .contact-form input,
				    .contact-form textarea {
					        font-size: 16px;
						  }

						    .contact-form button {
							        width: 100%;
								    padding: 14px;
								      }
							      }



@media (max-width: 768px) {
  .hero {
    height: clamp(300px, 50vh, 100vh);
  }
}



