/* File: css/styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    background: #333;
    padding: 10px;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

h1, h2 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Matches Grid */
.matches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.match {
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.match h4 {
    margin-bottom: 10px;
    color: #007bff; /* Blue color for team names */
    font-family: 'Arial Black', sans-serif; /* Bold font */
    font-size: 1.2em;
}

.match p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}

/* Links Section */
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.link-item {
    text-align: center;
    flex: 1;
    margin: 10px;
}

.link-item a {
    text-decoration: none;
    color: inherit;
}

.link-item i {
    font-size: 5em;
    color: #28a745; /* Green color for all icons */
    transition: transform 0.3s ease;
}

.link-item i:hover {
    transform: scale(1.1);
}

.link-item p:first-of-type {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.link-item p:last-of-type {
    font-size: 0.9em;
    color: #666;
}

/* Page Background */
.page-background {
    background-image: url('images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh; /* Ensure the background spans the full height of the viewport */
}

/* Match Boxes */
.match {
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.match h4 {
    margin-bottom: 10px;
    color: #007bff;
    font-family: 'Arial Black', sans-serif;
    font-size: 1.2em;
}

.match p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}

/* Links Section */
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.link-item {
    text-align: center;
    flex: 1;
    margin: 10px;
}

.link-item i {
    font-size: 3em;
    color: #28a745;
    transition: transform 0.3s ease;
}

.link-item i:hover {
    transform: scale(1.1);
}

.link-item p:first-of-type {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.link-item p:last-of-type {
    font-size: 0.9em;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .matches {
        grid-template-columns: repeat(2, 1fr);
    }

    .links {
        flex-direction: column;
        align-items: center;
    }

    .link-item {
        margin: 20px 0;
        width: 100%;
    }
}