@import url("https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  background: #eee;
}

#home p {
  max-width: 800px; /* Or whatever width you prefer */
  margin: 0 auto;
  text-align: center;
  padding: 0 15px; /* Optional for responsiveness */
}

.league-logo {
  max-width: 100px;
  margin: 20px auto;
  display: block;
}


h1 {
  font-size: 24px;
}


h2 {
  font-size: 22px;
  border-bottom: 2px solid #141447; 
  display: inline-block;
  
}

.standings {
font-size: 0.6em;
}

section {
  padding: 2rem;
  text-align: center;
}

ul {
  list-style: none;
}

button {
  max-width: 200px;
  padding: 10px;
  border-radius: 20px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

/* Header */
header {
  background: rgba(25, 255, 134, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  height: 50px;
  width: auto;
  animation: bounce 4s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.soccer-ball {
  position: fixed;
  bottom: 10px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-image: url('/images/soccer-ball-svgrepo-com.svg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
  z-index: 1000;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Navigation */
.navHeading {
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  color: #141447;
  display: block;
}

nav ul li a i {
  font-size: 20px;
  color: #141447;
  margin-top: 6px;
}

nav ul li a i:hover {
  color: #19FF86;
}

nav a {
  color: #141447;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  font-family: "Nunito", serif;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.team-card {
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
   backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team-card-text {
  font-weight: 600;
  font-size: 16px;
}

.team-card-value {
  font-size: 14px;
}

.team-img {
  width: 50%;
  height: auto;
  max-height: 50%;
  border-radius: 8px;
}

.team-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}

/* Match List */
#schedule {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

#match-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#match-list li {
  margin-bottom: 16px;
}

.match-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(25, 255, 134, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-left,
.team-right {
  flex: 1;
  color: #141447;
  font-weight: 600;
  font-size: 1rem;
}

.team-left {
  text-align: left;
}

.team-right {
  text-align: right;
  padding-left: 15px;
}

.score {
  flex: 0 0 80px;
  text-align: center;
  background: #141447;
  color: #f4f4f4;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 8px 0;
}

/* Table */
.table {
  border-radius: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #f4f4f4;
}

thead {
  background: #141447;
  color: #19FF86;
   font-family: "Poppins", sans-serif;
}

td, th {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #ccc;
}

/* Email Button */
.email-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #141447;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

.email-button:hover {
  background-color: #19FF86;
  color: #141447;
  font-weight: bold;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #141447;
  margin: 0 5px;
  text-decoration: none;
  font-size: 20px;
}

.match-date {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  color: #444;
  text-align: center;
}

.floating-nav {
  position: fixed;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  background-color: #141447;
  color: #19FF86;
  border: 1px solid #19FF86;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
 animation: bounce 4s infinite ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.floating-btn:hover {
  background-color: #141447;
  cursor: pointer;
}

.floating-btn i {
  pointer-events: none;
}

 
/* Footer */
footer {
  text-align: center;
  background: rgba(25, 255, 134, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px;
  color: #141447;
  font-weight: bold;
}

/* Responsive Styles */
@media (min-width: 601px) {
  .team-left, .team-right {
    display: block;
  }

  .score {
    margin: 0 10px;
  }
}

@media (max-width: 376px) {
 
    p {
     font-size: 12px;
    }
  .score {
    margin: 0 10px;
  }

  .league-logo {
  max-width: 70px;
  }

}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  nav a {
    font-size: 14px;
  }

  input, textarea, button {
    font-size: 15px;
  }

  .logo {
    height: 40px;
  }

  .team-img {
    width: 50px;
    height: 50px;
  }

  .team-card-text {
    font-size: 14px;
  }

  .team-card-value {
    font-size: 12px;
  }

  .team-logo {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .team-left, .team-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
  }

  .score {
    margin: 0;
  }

  .match-date {
  font-size: 10px;

}
  nav ul li a {
  font-size: 12px;

}

nav ul li a i {
  font-size: 15px;
}
.floating-btn {
  padding: 10px;
  font-size: 12px;

}
}

@media (min-width: 601px) {
  .team-left, .team-right {
    display: block;
  }

  .score {
    margin: 0 10px;
  }
}

@media (max-width: 540px) {
  .team-left,
  .team-right {
    padding-left: 30px;
  }
}

@media (max-width: 415px) {
  
  .team-right {
    padding-left: 30px;
  }

   .team-left {
    padding-right: 30px;
   }
}
