body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f7e7e8;
  color: #333;
  text-align: center;
}

.hero-header {
  background-image: url('photos/jayjay-header.jpg'); /* Replace with actual photo */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4); /* dark tint */
  padding: 2rem;
  border-radius: 12px;
}

.overlay h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
}

.overlay h2 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

main {
  padding: 2rem 1rem;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.video-section, .schedule {
  margin: 3rem 0;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.video-container iframe {
  width: 90%;
  max-width: 600px;
  height: 340px;
  border-radius: 10px;
  border: none;
}

.schedule ul {
  list-style: none;
  padding: 0;
}

.schedule li {
  margin: 0.5rem 0;
  font-weight: 500;
}

footer {
  background-color: #f7e7e8;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #c24073;
  text-decoration: none;
}

.socials {
  margin: 1rem 0;
}

.socials a {
  margin: 0 0.5rem;
}

.socials img {
  width: 24px;
  height: 24px;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1; /* take up all available vertical space */
}

footer {
  /* your existing styles */
  background-color: #f7e7e8;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;

  /* optional: add */
  flex-shrink: 0;
}
.main-nav {
  background-color: #f7e7e8;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: bold;
}

.main-nav a {
  text-decoration: none;
  color: #6b4eff;
}

.main-nav a:hover {
  text-decoration: underline;
}

.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.sports-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
}

.sports-list li {
  margin: 0.75rem 0;
}
.social-links {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

.social-links li {
  margin-bottom: 1rem;
}

.social-links a {
  color: #6b4eff;
  text-decoration: none;
}

.social-links span {
  font-weight: bold;
}

.embed-preview {
  margin-top: 2rem;
}
.ball-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.ball-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 200px;
  text-align: center;
}

.ball-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.ball-card h3 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
.dropdown-nav {
  background-color: #333;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.dropdown-nav a,
.dropbtn {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: #444;
}
.dropdown-nav {
  background-color: #333;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.nav-left a,
.dropbtn {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #444;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: #f7e7e8;
}
.dropdown-nav {
  background-color: #c8c7ce;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-right a,
.dropbtn {
  color: black;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f7e7e8;
  min-width: 160px;
  box-shadow: 0 8px 16px #f7e7e8;
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  color: black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f7e7e8;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: #444;
}
.score-section {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.big-score {
  font-size: 4rem;
  color: #4caf50;
  margin: 1rem 0;
}

.tournament-info {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
}

.tournament-info ul {
  list-style-type: none;
  padding: 0;
}

.tournament-info li {
  margin-bottom: 1.2rem;
}
