/* body {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 10px;
} */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --primary-color: #ffb71c;      /* Energetic red */
    --secondary-color: #1d3557;    /* Deep blue */
    --background-color: #f1faee;   /* Light background */
    --text-color: #1d1d1d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 2rem;
    max-width: 1000px; /* Increased from 800px to 1000px */
    margin: auto;
}

h1, h2, h4 {
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

ul {
    list-style-type: square;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

#parkruns li {
    padding: 0.3rem 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 0.6rem;
    background-color: #ffffff;
    margin-bottom: 0.5rem;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

#parkrun-summary {
    font-style: italic;
    background-color: #ffffff;
    padding: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.05);
}

/* Styles for the menu button */
.menu-button {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #1d3557;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 5px;
}

/* Styles for the side pane */
.side-pane {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #f1faee;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    padding: 20px;
}

/* When the pane is open */
.side-pane.open {
    right: 0;
}

/* Link styles */
.side-pane a {
    display: block;
    margin: 10px 0;
    color: #1d3557;
    text-decoration: none;
    font-size: 18px;
}

.side-pane a:hover {
    text-decoration: underline;
}



