@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-style: normal;
  background: #0f0f0f;
  color: white;
}

.banner {
  background: url("../img/banner.png") center center / cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-text {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.banner h1 {
  font-size: 3rem;
  color: white;
  margin: 0;
}

.banner p {
  font-size: 1.2rem;
  color: #ff0000;
  margin: 0;
}

nav {
  background: #111;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.nav-tagline {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  padding: 10px;
}

nav a {
  margin: 0 15px;
  color: #ff0000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.card {
  color: rgb(255, 255, 255);
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 100px;
  box-shadow: 0 0 15px #ff000044;
}

a {
  color: white
}

a:active {
  color: #ffffff;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
  color: #777;
}

.section {
  padding: 60px 20px;
  text-align: center;
  background: #0e0e0e00;
  color:  #ff0000;
}

.team-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 50px;
  margin-bottom: 40px;
}

#team-text {
  font-size: 46px;
}

#staff-text {
  font-size: 46px;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.player-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.player-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.player-card img {
  width: 100%;
  height: auto;
  display: block;
}

.manager-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  width: 230px;
  margin-bottom: 40px;
  margin: 0 auto;
}

.manager-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.manager-card img {
  width: 100%;
  height: auto;
  display: block;
}

.manager-grid {
  display: grid;
  font-size: 50px;
  width: 1000px;
}

.player-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 15px 0 5px;
  color: #f5f5f5;
}

.player-role {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 15px;
}

#email{
  color: #fff;
}
