/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts & Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #004d26; /* deep green */
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo h1 {
  margin-bottom: 0.2rem;
}

header .logo p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Navigation */
.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #a6ffcb; /* lighter green hover */
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('./assets/images/b1.jpg') no-repeat center/cover;
  color: white;
  text-align: center;
  align-items: center;
  padding: 5rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #eee;
}

/* Content Section */
.content {
  padding: 2rem;
  background-color: white;
  max-width: 900px;
  margin: 2rem auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contentWider {
  padding: 2rem;
  background-color: white;
  max-width: 1500px;
  margin: 2rem auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.content h3 {
  color: #004d26;
  margin-bottom: 1rem;
}

.contentWider h3 {
  color: #004d26;
  margin-bottom: 1rem;
}

.smallPic {
	height:50vh;
	display: flex;
	margin: auto;
}
/* Footer */
footer {
  background-color: #333;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.schedule-table th, 
.schedule-table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

.schedule-table th {
  background-color: #004d26; /* green */
  color: white;
}

.schedule-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.schedule-table tr:hover {
  background-color: #e6ffe6; /* subtle green hover */
}

/* Record Book Table */
.record-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.record-table th, 
.record-table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

.record-table th {
  background-color: #004d26; /* LEEDS green */
  color: white;
}

.record-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.record-table tr:hover {
  background-color: #e6ffe6; /* subtle green hover */
}

/* Roster Table */
.roster-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.roster-table th, 
.roster-table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: center;
}

.roster-table th {
  background-color: #004d26; /* LEEDS green */
  color: white;
}

.roster-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.roster-table tr:hover {
  background-color: #e6ffe6; /* subtle green hover */
}

.standings {
	height:500px;
	width:90%;
}

.teamLogo{
	width:150px;
}