:root {
    /* Premium Color Palette - Black, White, Green */
    --primary-color: #006400;
    /* Dark Green */
    --primary-light: #228B22;
    /* Forest Green */
    --secondary-color: #000000;
    /* Black */
    --accent-color: #ffffff;
    /* White */
    --bg-color: #f4f4f4;
    --card-bg: #ffffff;
    --text-dark: #000000;
    --text-light: #333333;
    --white: #ffffff;
    --border-color: #e0e0e0;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);

    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--secondary-color);
    /* Black Header */
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-light);
    /* Green Logo Text */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-light);
    /* Green Active/Hover */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-section img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1rem;
}

.hero-overlay h2 {
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.news-content h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Right Column: Sidebar */
.sidebar-widget {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.widget-header {
    padding: 1rem;
    color: var(--white);
}

.football-header {
    background: linear-gradient(to right, #006400, #228B22);
    /* Green Gradient */
}

.volleyball-header {
    background: linear-gradient(to right, #000000, #333333);
    /* Black Gradient */
}

.widget-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.widget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-widget:hover .widget-image img {
    transform: scale(1.05);
}

.volleyball-img {
    object-position: top;
}

.widget-content {
    padding: 1.5rem;
}

.widget-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Tables */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.standings-table th {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.standings-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.standings-table tr:last-child td {
    border-bottom: none;
}

.standings-table tr:nth-child(1) td {
    font-weight: 700;
    color: var(--primary-color);
}

/* Fixture Card */
.fixture-card {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.fixture-card .team {
    font-weight: 600;
    margin: 0.25rem 0;
}

.fixture-card .vs {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    margin: 0.25rem 0;
}

.fixture-card .match-info {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
        /* Hide nav on mobile for now */
    }

    .mobile-menu-btn {
        display: block;
    }

    .news-card {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }
}