<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

        @page {
            size: 8.5in 11in;
            margin: 0.5in;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            margin: 0;
            padding: 0;
        }

        header {
            text-align: center;
            border-bottom: 3px solid #2e7d32;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

        h1 {
            margin: 0;
            font-size: 36pt;
            color: #2e7d32;
        }

        .subtitle {
            font-size: 18pt;
            color: #666;
        }

        .calendar-container {
            width: 100%;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        th, td {
            border: 1px solid #eee;
            padding: 15px 10px;
            text-align: center;
        }

        th {
            background-color: #f9f9f9;
            font-weight: 700;
            font-size: 14pt;
        }

        .crop-name {
            text-align: left;
            font-weight: 700;
            width: 150px;
        }

        /* Action Bars */
        .bar {
            height: 25px;
            border-radius: 12px;
            margin: 5px 0;
        }

        .indoor { background-color: #2e7d32; } /* Green */
        .sow { background-color: #1976d2; }    /* Blue */
        .transplant { background-color: #f57c00; } /* Orange */

        .legend {
            margin-top: 40px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
            display: flex;
            justify-content: space-around;
        }

        .legend-item {
            display: flex;
            align-items: center;
            font-size: 12pt;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
        }

        footer {
            position: fixed;
            bottom: 0.5in;
            width: 100%;
            text-align: center;
            font-size: 12pt;
            color: #888;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }

        .brand {
            font-weight: 700;
            color: #2e7d32;
        }
    </style>
</head>
<body>

    <header>
        <h1>Spring 2026 Planting Guide</h1>
        <div class="subtitle">Heirloom & Open-Pollinated Seeds</div>
    </header>

    <div class="calendar-container">
        <table>
            <thead>
                <tr>
                    <th class="crop-name">Crop</th>
                    <th>February</th>
                    <th>March</th>
                    <th>April</th>
                    <th>May</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td class="crop-name">Tomato</td>
                    <td><div class="bar indoor"></div></td>
                    <td></td>
                    <td></td>
                    <td><div class="bar transplant"></div></td>
                </tr>
                <tr>
                    <td class="crop-name">Basil</td>
                    <td><div class="bar indoor"></div></td>
                    <td></td>
                    <td></td>
                    <td><div class="bar transplant"></div></td>
                </tr>
                <tr>
                    <td class="crop-name">Kale</td>
                    <td></td>
                    <td></td>
                    <td><div class="bar transplant"></div></td>
                    <td></td>
                </tr>
                <tr>
                    <td class="crop-name">Lettuce</td>
                    <td></td>
                    <td><div class="bar sow"></div></td>
                    <td><div class="bar transplant"></div></td>
                    <td></td>
                </tr>
                <tr>
                    <td class="crop-name">Radish</td>
                    <td></td>
                    <td><div class="bar sow"></div></td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td class="crop-name">Carrot</td>
                    <td></td>
                    <td><div class="bar sow"></div></td>
                    <td><div class="bar sow"></div></td>
                    <td></td>
                </tr>
            </tbody>
        </table>
    </div>

    <div class="legend">
        <div class="legend-item">
            <div class="legend-color indoor"></div> Indoor Sowing
        </div>
        <div class="legend-item">
            <div class="legend-color sow"></div> Direct Sowing
        </div>
        <div class="legend-item">
            <div class="legend-color transplant"></div> Transplanting
        </div>
    </div>

    <footer>
        Get your heirloom seeds at <span class="brand">seedvault.market</span><br>
        <small>Bitcoin Accepted • Mylar Protected • Non-GMO</small>
    </footer>

</body>
</html>