/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}


.blog{
    
    
    height: 100px;
}

 .matchs-vs {
    width: 100%;
    background: #000080;
    color: #fff;
    padding: 90px 0;
    display: flex;
    flex-direction: column; /* Ensures date is below */
    justify-content: center;
    align-items: center; /* Centers content horizontally */
}


.vrs {
    background-color: black;
    border-radius: 50px;
}



.player-img {
    width: 100%;   /* Ensures fixed width */
    height: 150px;  /* Ensures fixed height */
    object-fit: cover; /* Crops excess without distortion */
    border-radius: 3%; /* Optional: Makes it circular */
}




.fixtures_field {
    padding-top: 100px;
     padding-bottom: 100px;
     background-image: url(https://wallpapers.com/images/hd/man-in-midair-kicking-the-football-hd-1vbrx36elz299kv4.jpg);
     background-repeat: no-repeat;
     background-position: top center;
     position: relative;
     background-size: cover;
     background-attachment: fixed;
     box-shadow: 0 0 100px -80px rgba(0,0,0,0.8);
     min-height: 515px;
}


@media (min-width: 992px) {
  .rounded-lg-3 { border-radius: .3rem; }
}



@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}




  .featurette-heading {
    font-size: 50px;
  }


@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}



.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}



.cta-button {
    background: #f4c10f;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e0b10e;
}

.players, .achievements, .contact {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.players h2, .achievements h2, .schedule h2, .contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.player-card {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.player-card img {
    width: 100%;
    border-radius: 10px;
}

.achievement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.achievement-item {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.schedule-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background: #333;
    color: #fff;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background: #000080;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

.contact button:hover {
    background: #e0b10e;
}

footer {
    background: #000080;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}