@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Sora:wght@400;600;700&display=swap");

/* brand.css */

/* Fonts */
body {
    font-family: "Inter", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", Arial, sans-serif;
}

/* Colors */
:root {
    --primary-color: #1fb166;
    --secondary-color: #fb960d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.logo-header {
    filter: brightness(0) invert(1);
}

.bg-dark-green {
    background-color: #002b12;
}

.hero-section {
    height: 95vh;
    position: relative;
}

.hero-section h1.display-5,
.page-hero-section h1.display-5 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-section .container,
.page-hero-section .container {
    padding-left: 48px;
    padding-right: 48px;
    max-width: unset !important;
}

@media (max-width: 1199.98px) {
    .hero-section h1.display-5,
    .page-hero-section h1.display-5 {
        font-size: 48px;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1.display-5,
    .page-hero-section h1.display-5 {
        font-size: 40px;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1.display-5,
    .page-hero-section h1.display-5 {
        font-size: 40px !important;
        margin-bottom: 1rem;
        word-break: break-word;
    }
}

header nav a {
    padding: 10px 16px;
    border-radius: 99px;
    flex: none;
    order: 0;
    flex-grow: 0;
    transition: 0.3s;
}
header nav a:hover {
    color: #1fb166;
    background-color: #0e462e;
}
header nav a.active {
    color: #1fb166;
    background-color: #0e462e;
}
.page-hero-section {
    height: 50vh;
    position: relative;
}

.card img {
    object-fit: cover;
}

.mt-30p {
    margin-top: 10%;
}
.btn {
    border-radius: 99px !important;
    padding: 10px 16px;
}

.btn-success {
    background-color: #1fb166 !important;
    border-color: #1fb166 !important;
    color: #fff !important;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
    .section-heading {
        font-size: 32px;
        text-align: left;
        margin-bottom: 1.2rem;
    }

    .mt-30p {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .section-heading {
        font-size: 22px;
        text-align: left;
        margin-bottom: 1rem;
    }
}

.extra-small {
    font-weight: 700;
    font-size: 8px;
}

footer {
    background-color: #121212 !important;
    line-height: 2.4;
}
.player-card {
    max-width: 550px;
    height: 450px;
    border-radius: 1.5rem;
}

.player-card-left {
    width: 65%;
    background-color: #e0f8ef;
    position: relative;
    overflow: hidden;
}

.player-card-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}

.player-info-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding-bottom: 30px !important;
}

.player-card-right {
    width: 35%;
    padding: 1rem 0.5rem;
    background-color: #f8f9fa;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.team-logo {
    width: 40px;
    height: 40px;
}

.stat-block {
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .container-fluid {
        padding-left: 48px !important;
        padding-right: 48px !important;
    }
}

/* Pagination Styles */
.pagination .page-link {
    color: #1fb166;
    border-color: #1fb166;
    background-color: #fff;
    transition: background 0.2s, color 0.2s;
}
.pagination .page-link:focus,
.pagination .page-link:hover {
    color: #fff;
    background-color: #1fb166;
    border-color: #1fb166;
}
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #1fb166;
    border-color: #1fb166;
}
.pagination .page-item.disabled .page-link {
    color: #b1b1b1;
    background-color: #fff;
    border-color: #e9ecef;
}

.nav-tabs .nav-link{
    color: #1fb166;
}
