* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #1a3a8f;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    span{
        color: #1a3a8f;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    background-color: #1a3a8f;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    p{
        color: #ffffff;
    }
}

.moree{
    background-color: #33469d;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 30px;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
}

.nav-links p:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 0px 20px;
    transition: 0.3s;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background: url('players/banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 60px;
    height: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.button {
    display: inline-block;
    background-color: #33469d;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
}

.button:hover {
    background-color: transparent;
    border: 1px solid white;
    transition: 0.3s;
}

.button-outline {
    background-color: transparent;
    border: 1px solid white;
}

.button-outline:hover {
    background-color: white;
    color: #333;
    transition: 0.3s;
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #1a3a8f;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text h3 {
    font-size: 28px;
    color: #1a3a8f;
    margin-bottom: 20px;
}

.players-section {
    background-color: #f5f5f5;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.player-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.player-image {
    height: 250px;
    overflow: hidden;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    padding: 20px;
    text-align: center;
}

.player-number {
    background-color: #1a3a8f;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-weight: bold;
}

.player-name {
    font-size: 20px;
    font-weight: bold;
    color: #1a3a8f;
    margin-bottom: 5px;
}

.player-position {
    color: #e63946;
    font-weight: bold;
    margin-bottom: 10px;
}

.schedule-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background-color: #1a3a8f;
    color: white;
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f5f5f5;
}

.match-result {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.win {
    background-color: #d4edda;
    color: #155724;
}

.loss {
    background-color: #f8d7da;
    color: #721c24;
}

.upcoming {
    background-color: #fff3cd;
    color: #856404;
}

.news-section {
    background-color: #f5f5f5;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 25px;
    span{
        font-weight: bold;
        color: #1a3a8f;
    }
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    color: #1a3a8f;
    margin-bottom: 15px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: #1a3a8f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a3a8f;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #e63946;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.sponsors{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

.sponsors-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sponsor-card {
    width: 45%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sponsor-card img{
    width: 100%;
    height: auto;
}   

footer {
    background-color: #222;
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
    display: flex;
    img{
        width: 15%;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    margin-left: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo i {
    color: #e63946;
    margin-right: 10px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a3a8f;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #1a3a8f;
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
}

.copyright {
    background-color: #222;
    color: white;
    text-align: center;
    padding-bottom: 15px;
}

.players-section .players-grid:last-of-type {
    grid-template-columns: repeat(2, 280px);
    justify-content: center;
    gap: 30px;
}


@media (max-width: 768px) {
    .players-section .players-grid:last-of-type {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sponsor-card {
    width: 85%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .header-container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1a3a8f;
        flex-direction: column;
        padding: 20px;
    }

    .nav-links a,
    .nav-links p {
        color: white !important;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .players-grid,
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .nav-links {
    p{
        color: #1a3a8f;
    }
    }
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .button {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    .section {
        padding: 60px 15px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .players-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}
