/*
Theme Name:   Speedway Portal Child
Template:     twentytwentyone
Version:      1.0.0
Author:       Your Name
Description:  A child theme for a speedway news portal
*/

/* Import the parent theme styles */
@import url("../twentytwentyone/style.css");

/* Custom styles for the child theme */
:root {
    --primary-color: #FF6600;
    --secondary-color: #000000;
    --text-light: #FFFFFF;
    --text-dark: #333333;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.header {
    background-color: var(--secondary-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('path-to-your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.news-section, .table-section, .upcoming-section {
    padding: 2rem;
}

.news-card {
    background-color: var(--secondary-color);
    border: 1px solid #333;
    margin-bottom: 1rem;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: auto;
}

.news-card-content {
    padding: 1rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.footer-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
}
