
    :root {
        --primary-color: #ce5a13;
        --secondary-color: #e9671a;
        --tertiary-color: #d4aa50;
        --dark-brown: #2a1a08;
        --medium-brown: #5a3010;
        --light-brown: #b09060;
        --light-yellow: #e8e0cc;
        --white: #fff;
        --black: #000;
        --gray: #ccc;
        --dark-gray: #444;
        --red: #cc0000;
        --blue: #2a60a0;
        --light-blue: #4a90d9;
        --text-color: #000000;
        --bg-color: #fff9eb;
        --font-arial: Arial, Helvetica, sans-serif;
    }

    body {
        font-family: var(--font-arial);
        color: var(--text-color);
        background-color: var(--bg-color);
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    a {
        color: var(--primary-color);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

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

    header {
        background-color: var(--bg-color);
        padding: 10px 0;
        text-align: center;
    }

    .top-banner {
        width: 100%;
        height: 150px; /* Placeholder height, adjust as needed */
        background: linear-gradient(to right, var(--dark-brown), var(--medium-brown), var(--dark-brown));
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 2em;
        font-weight: bold;
    }
    .top-banner img {
        max-height: 100%;
        width: auto;
    }

    nav {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 5px 0;
        text-align: center;
    }

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        color: var(--white);
        padding: 5px 10px;
        display: block;
        text-decoration: none;
    }

    nav ul li a:hover {
        background-color: var(--secondary-color);
        text-decoration: none;
    }

    .main-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }

    .main-content > div {
        background-color: var(--white);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar {
        flex: 1 1 280px;
        min-width: 280px;
    }

    .content-area {
        flex: 2 1 600px;
        min-width: 300px;
    }

    h2, h3, h4 {
        color: var(--dark-brown);
        border-bottom: 1px solid var(--gray);
        padding-bottom: 5px;
        margin-top: 0;
    }

    .warning-box {
        background-color: var(--red);
        color: var(--white);
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .warning-box strong {
        color: var(--yellow); /* No yellow in palette, using --tertiary-color */
        color: var(--tertiary-color);
    }
    .warning-box small {
        display: block;
        margin-top: 5px;
    }

    .roundcnr1, .roundcnr2 {
        border-radius: 5px;
        padding: 10px;
        border: 1px solid var(--gray);
        margin-bottom: 15px;
    }
    .roundcnr1 { background-color:#F5F5F5; } /* Simulating a light background for emphasis */
    .roundcnr2 { background-color:#E0C898; }
    
    .weather-outlook {
        overflow-x: auto;
        white-space: nowrap;
        border: 1px solid var(--black);
        background-color: var(--white);
        padding: 5px;
        margin-bottom: 10px;
    }

    .weather-outlook table {
        width: 100%;
        border-collapse: collapse;
    }

    .weather-outlook td {
        display: inline-block;
        padding: 5px;
        text-align: center;
        border-right: 1px solid #eee;
    }
    .weather-outlook td:last-child {
        border-right: none;
    }

    .weather-outlook img {
        vertical-align: middle;
        margin: 5px 0;
    }

    .forecast-links ul {
        list-style: none;
        padding: 0;
    }

    .forecast-links li {
        margin-bottom: 5px;
    }

    .moon-sun-info img {
        max-width: 80px;
        height: auto;
        float: left;
        margin-right: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .fire-danger-board {
        width: 100%;
        height: 100px; /* Placeholder for missing image */
        background-color: #ffaa00; /* Orange color for fire danger */
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
        border-radius: 5px;
        border: 2px dashed var(--red);
        font-size: 1.2em;
    }

    .flexslider {
        margin: 20px 0;
        background: var(--gray);
        border: 1px solid var(--dark-gray);
        padding: 10px;
        text-align: center;
        border-radius: 5px;
    }

    .flexslider .slides li {
        display: inline-block;
        margin: 5px;
        padding: 10px;
        background-color: var(--white);
        border: 1px solid var(--gray);
        border-radius: 3px;
        width: 130px; /* Fixed width */
        vertical-align: top;
    }

    .flexslider .slides {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
        scroll-snap-type: x mandatory;
        padding-bottom: 10px; /* Space for scrollbar */
    }
    .flexslider .slides li:first-child {
        margin-left: 0;
    }
    .flexslider .slides li:last-child {
        margin-right: 0;
    }

    .flexslider .slides::-webkit-scrollbar {
        height: 8px;
    }

    .flexslider .slides::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .flexslider .slides::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .flexslider .slides::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .flexslider .slides li div {
        font-size: 0.8em;
    }

    .park-shot, .getting-high {
        text-align: center;
        margin-bottom: 20px;
    }
    .park-shot img, .getting-high img {
      max-width: 100%;
      height: auto;
      margin: 10px 0;
      border-radius: 5px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
      object-fit: cover;
    }

    .park-news ul, .general-info ul {
        list-style-type: disc;
        margin-left: 20px;
    }

    .local-weather-data {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 15px;
    }

    .local-weather-data > div {
        flex: 1 1 45%;
        min-width: 250px;
    }

    footer {
        background-color: var(--dark-brown);
        color: var(--white);
        padding: 20px;
        text-align: center;
        margin-top: 20px;
    }

    footer a, footer font {
        color: var(--tertiary-color);
    }
    footer hr {
        border-color: var(--tertiary-color);
        margin: 15px auto;
        width: 75%;
    }
    .valid-xhtml-logo {
        display: inline-block;
        width: 88px;
        height: 31px;
        background-color: var(--light-blue);
        color: var(--white);
        text-align: center;
        line-height: 31px;
        font-size: 0.7em;
        border-radius: 3px;
        font-weight: bold;
        text-transform: uppercase;
        vertical-align: middle;
    }
    .valid-xhtml-logo:hover {
        opacity: 0.8;
    }

    .river-high-alert {
        background-color: var(--red);
        color: var(--white);
        padding: 8px;
        text-align: center;
        font-weight: bold;
        margin-top: 10px;
        border-radius: 3px;
    }

    /* Webcams */
    .webcam-container .webcam-image {
        width: 100%;
        height: 150px; /* Example fixed height for webcams */
        background-color: #333; /* Dark background as placeholder */
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 0.9em;
        border-radius: 5px;
    }
    .webcam-container {
        text-align: center;
    }
    .webcam-container br { display: none; } /* Remove extra breaking tags */
    .webcam-container strong { display: block; margin-bottom: 5px;}


    @media (max-width: 1024px) {
        .main-content {
            flex-direction: column;
        }
        .sidebar, .content-area {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            flex-direction: column;
        }
        nav ul li {
            margin: 5px 0;
        }
        .main-content > div {
            padding: 10px;
        }
        .local-weather-data {
            flex-direction: column;
        }
        .local-weather-data > div {
            flex: 1 1 100%;
        }
        .weather-outlook {
            white-space: normal;
        }
        .weather-outlook td {
            display: block;
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #eee;
        }
        .weather-outlook td:last-child {
            border-bottom: none;
        }
         .flexslider .slides {
            display: block; /* Stack items vertically */
            overflow-x: hidden;
            scroll-snap-type: none;
        }
        .flexslider .slides li {
            width: 90%; /* Make items fill width */
            margin: 10px auto;
        }
    }
