@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Mulish:wght@300;400;700&display=swap');

        body {
            font-family: 'Mulish', sans-serif;
            background-color: #fffaf0; /* Soft cream */
            color: #5a4e46; /* Earthy brown */
            margin: 0;
            line-height: 1.7;
        }

        .navbar {
            background-color: rgba(255, 250, 240, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 10;
            border-bottom: 1px solid #f0e5d8;
        }

        .nav-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Marcellus', serif;
            font-size: 1.8rem;
            color: #d4af37; /* Gold */
            text-decoration: none;
        }

        .nav-links a {
            color: #5a4e46;
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 700;
        }

        .hero {
            background-image: linear-gradient(rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=2120&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }

        .hero h1 {
            font-family: 'Marcellus', serif;
            font-size: 5rem;
            margin: 0;
        }
        
        .hero p {
            font-size: 1.5rem;
            font-weight: 300;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        section {
            margin-bottom: 4rem;
            padding-top: 2rem; /* For anchor linking */
        }

        h2 {
            font-family: 'Marcellus', serif;
            font-size: 2.5rem;
            text-align: center;
            color: #b8860b; /* Darker gold */
            margin-bottom: 2rem;
        }

        .team-grid, .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .card {
            background-color: #fff;
            border: 1px solid #f0e5d8;
            padding: 2rem;
            border-radius: 5px;
        }
        
        .card h3 {
            color: #b8860b;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }

        .schedule-table th, .schedule-table td {
            border: 1px solid #f0e5d8;
            padding: 1rem;
        }

        .schedule-table thead {
            background-color: #fdf8f0;
        }

        .footer {
            background-color: #5a4e46;
            color: #fffaf0;
            text-align: center;
            padding: 3rem 2rem;
        }

        .social-media {
            margin-bottom: 1rem;
        }

        .social-media a {
            color: #fffaf0;
            text-decoration: none;
            margin: 0 1rem;
        }
