
.poppins {
    font-family: 'Poppins', sans-serif;
}

.poppins-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/*** Navbar Start ***/
.navbar {
    padding: 0;
}

.navbar .navbar-nav .nav-link {
    font-size: 14px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    background-color: black;
    color: white;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .navbar .collapse.navbar-collapse .btn-hover-bg.btn {
        margin-bottom: 20px;
    }
}

.mobile-navbar-brand {
    height: 100px;
    text-align: center;
    margin: auto;
}

.mobile-navbar-brand img {
    height: 100px
}

.hero-section {
    position: relative;
    width: 100%;
    height: 30vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-position: 0px -145px;*/
}

.hero-content {
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto 0 80px;
}

.button-grid-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
    font-weight: bold;
}

.fixtures-menu {
    display: flex;
    border: 1px solid #ff5722;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.fixtures-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-right: 1px solid #ff5722;
    color: #ff5722;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .fixtures-menu-item:last-child {
        border-right: none;
    }

    .fixtures-menu-item.active {
        color: #ffffff;
        background-color: #ff5722;
    }

    .fixtures-menu-item .icon {
        margin-right: 8px;
    }

    .fixtures-menu-item:hover {
        background-color: #ffe0d6;
    }


@media (max-width: 768px) {

    .hero-content {
        text-align: center;
        margin: 0px;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        background-image: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: -4px;
    margin-bottom: 1rem;
    border-radius: 0;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

.latest-score-box {
    background-color: grey;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    max-width: 600px;
    position: relative;
    top: -42px;
    left: 50px;
}

.latest-score-box .team-name {
    margin: 0 10px;
}

.latest-score-box .score {
    margin: 0 10px;
}


.stats-label {
    font-size: 1.5rem;
    font-weight: 300;
    color: black;
    font-weight: 600;
}

.stats-value {
    font-size: 100px;
    color: #234394;
    font-weight: 600;
    font-family: poppins-semibold,'Roboto', sans-serif;
}

.fixtures-container {
    max-width: 50vw
}

.fixtures-table {
    font-size: small;
}

.fixtures-table td, .fixtures-table tr {
    padding: 25px;
    font-weight: bold;
}

.table tbody tr.last-row td {
    padding-bottom: 20px;
}

.bg-header {
    background-color: #22408d;
    color: white;
    font-size: 2rem;
}

.bg-header-cell {
    padding: 15px;
    background-color: #22408d !important;
    color: white !important;
}

.font-smaller {
    font-size: x-small;
}
.document-link {
    background-color: #002d72; /* Dark blue background color */
    color: #ffffff; /* White text color */
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

    .document-link:hover {
        background-color: #001a4d; /* Slightly darker blue on hover */
        color: #ffffff;
        text-decoration: none;
    }




.league-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Adjust spacing between boxes */
}

.league-box {
    width: calc(33.333% - 20px); /* Three boxes per row with spacing adjustment */
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    text-align: center; /* Center the text */
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px; /* Add some padding inside the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .league-box img {
        max-width: 100%;
        height: auto; /* Maintain aspect ratio for the image */
        object-fit: cover;
    }

    .league-box h5 {
        margin-top: 10px; /* Add some spacing between the image and text */
        font-size: 16px;
        color: #333;
    }

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .league-box {
        width: calc(50% - 20px); /* Two boxes per row for tablets */
    }
}

@media (max-width: 480px) {
    .league-box {
        width: 100%; /* Full width for mobile */
    }
}
