@import url('https://fonts.googleapis.com/css2?family=Poller+One&family=Roboto:wght@400;500&display=swap');


* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4efe6;
    background-image: radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px);
    background-size: 6px 6px;
    color: #333;
}

header {
    padding: 30px 20px;
    text-align: center;
}

#pa-courts {
    height: 9em;
    vertical-align: middle;
    margin: 0 10px;
    margin-bottom: -1em;
}

h1, h2 {
    font-family: 'Poller One', sans-serif;
    font-weight: 400;
    margin: 10px 0 0;
    color: #0F2B65;
}

h1 {
    margin-top: .1em;
    font-size: 2em;
}

h2 {
    font-weight: 500;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0F2B65;
    font-size: 1.1rem;
}

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

.menu-columns {
    column-count: 2;
    column-gap: 30px;
}

section {
    break-inside: avoid;
    padding: 0 20px 20px;
    margin: 0 0 30px;
}

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

li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    transform-origin: center;
    transition: transform 0.15s ease-out;
}

ul li:last-child {
    margin-bottom: 0;
}

ul:has(img) li:hover {
    transform: scale(1.06);
}

ul a {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

ul a:hover {
    color: #016FB3;
    text-decoration: underline;
}

ul img {
    width: 24px;
    height: 24px;
    max-width: 24px;
    flex-shrink: 0;
}

.legend-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.legend-list dt {
    font-weight: 700;
    margin: 0;
}

.legend-list dd {
    margin: 0;
}

.legend-list dd::before {
    content: "– ";
}

section:not(:has(:is(ul li, dl dd))) {
  display: none;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .menu-columns {
        column-count: 1;
    }
}

