:root {
            --primary-bg: #1A1915;
            /* Deep Charcoal */
            --accent-color: #B59410;
            /* Rich Gold */
            --light-cream: #FFFDF5;
            /* Light Cream */
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--light-cream);
            color: var(--primary-bg);
            margin: 0;
        }

        /* --- Project Hero --- */
        .project-hero {
            background-color: var(--primary-bg);
            padding: 80px 0 50px 0;
            border-radius: 0 0 50px 50px;
            text-align: center;
            color: white;
        }

        /* --- Project Card Styling --- */
        .project-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #F0ECE0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .project-img-container {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .project-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-img-container img {
            transform: scale(1.1);
        }

        /* Floating Badge */
        .project-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(26, 25, 21, 0.8);
            backdrop-filter: blur(5px);
            color: var(--accent-color);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            border: 1px solid var(--accent-color);
        }

        .project-content {
            padding: 25px;
        }

        .tech-stack {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .tech-tag {
            font-size: 10px;
            background: #FDFBF0;
            padding: 2px 10px;
            border-radius: 5px;
            color: #666;
            font-weight: 600;
            border: 1px solid #EEE;
        }

        .view-btn {
            color: var(--primary-bg);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .view-btn:hover {
            color: var(--accent-color);
        }

        /* --- Filter Styling --- */
        .filter-btn {
            background: white;
            border: 1px solid #EEE;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin: 5px;
            transition: 0.3s;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }

        @media (max-width: 768px) {
            .display-4 {
                font-size: 2rem;
            }
        }