
        :root {
            --primary: #004977;
            --accent: #ec1621;
            --dark: #000;
            --light: #fff;
            --gray: #f4f4f4;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            line-height: 1.6;
            color: #333;
        }

        /* Header & Nav */
        header {
            background: var(--light);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        .logo-box {
            width: 200px;
        }

        .logo-box img {
            width: 100%;
            height: auto;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: bold;
            font-size: 14px;
        }

        /* Hero */
        .hero {
            height: 500px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/backgroundforathleticbarn.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--light);
            text-align: center;
            padding: 20px;
        }

        h1 { font-size: 3rem; margin-bottom: 0.5rem; }

        /* Sections */
        .container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
        }

        footer {
            background: var(--dark);
            color: var(--light);
            text-align: center;
            padding: 40px;
            margin-top: 50px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul { flex-direction: column; }
            header { flex-direction: column; gap: 20px; }
        }
    