
        :root {
            --forest-primary: #2f855a;
            --forest-light: #68d391;
            --forest-lighter: #e6f0e6;
            --forest-dark: #1a4d2e;
            --bg-primary: #ffffff;
            --bg-secondary: #f7fafc;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            --forest-primary: #48bb78;
            --forest-light: #9ae6b4;
            --forest-lighter: #2d3748;
            --forest-dark: #68d391;
            --bg-primary: #1a202c;
            --bg-secondary: #2d3748;
            --text-primary: #f7fafc;
            --text-secondary: #cbd5e0;
            --shadow-color: rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color 0.5s ease, color 0.5s ease;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 10px, var(--forest-lighter) 10px, var(--forest-lighter) 11px);
        }

        body.modal-open {
            overflow: hidden;
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: var(--bg-primary);
            box-shadow: 0 2px 8px var(--shadow-color);
            transition: background-color 0.5s ease;
        }

        .leaf-icon {
            fill: var(--forest-primary);
            transition: fill 0.5s ease;
        }

        nav a {
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--forest-primary);
        }

        .contact-btn {
            background-color: var(--forest-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
        }

        .contact-btn:hover {
            background-color: var(--forest-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        .dark-mode-toggle {
            background-color: var(--forest-lighter);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dark-mode-toggle:hover {
            background-color: var(--forest-light);
        }

        /* Hero Section */
        .hero {
            background-image: url('/images/james_ks1920x800.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 1rem;
            margin: 2rem;
            box-shadow: 0 10px 30px var(--shadow-color);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(47, 133, 90, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 2rem;
        }

        /* Filter Buttons */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .filter-btn {
            background-color: var(--forest-lighter);
            color: var(--text-primary);
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover {
            background-color: var(--forest-light);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background-color: var(--forest-primary);
            color: white;
            border-color: var(--forest-dark);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem;
        }

        @media (min-width: 640px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1280px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 4px 12px var(--shadow-color);
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item.loaded {
            opacity: 1;
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px var(--shadow-color);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(47, 133, 90, 0.95), transparent);
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .share-btn {
            background-color: white;
            color: var(--forest-primary);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            margin-top: 0.5rem;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background-color: var(--forest-light);
            color: white;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100;
            padding: 2rem;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -3rem;
            right: 0;
            background-color: var(--forest-primary);
            color: white;
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background-color: var(--forest-dark);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--forest-primary);
            color: white;
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background-color: var(--forest-dark);
        }

        .lightbox-prev {
            left: 1rem;
        }

        .lightbox-next {
            right: 1rem;
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background-color: var(--bg-primary);
            padding: 2rem;
            border-radius: 1rem;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 10px 40px var(--shadow-color);
            position: relative;
            transition: background-color 0.5s ease;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--forest-lighter);
            color: var(--text-primary);
            border: none;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background-color: var(--forest-primary);
            color: white;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--forest-lighter);
            border-radius: 0.5rem;
            background-color: var(--bg-secondary);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--forest-primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background-color: var(--forest-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--forest-dark);
            transform: translateY(-2px);
        }

        /* Alert Box */
        .alert-box {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--forest-primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px var(--shadow-color);
            z-index: 200;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            max-width: 300px;
        }

        .alert-box.show {
            opacity: 1;
            transform: translateY(0);
        }

        .alert-box.error {
            background-color: #e53e3e;
        }

        /* Footer */
        footer {
            background-color: var(--forest-dark);
            color: var(--forest-light);
            padding: 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--forest-light);
            color: var(--forest-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .social-icon:hover {
            background-color: white;
            transform: translateY(-3px);
        }

