/* --- moved out of arch.html inline <style> --- */
/* Custom cursor styles */

        body, html {
            background-color: #ffffff !important;

            cursor: none; /* Hide the default cursor */
        }

        .cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    background-color: white;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease-out, height 0.15s ease-out, border-radius 0.15s ease-out;
    will-change: transform, width, height;
}

/* Make all interactive elements use the custom cursor */
a, button, .project-card, .contact-button, input, 
select, textarea, [role="button"], .lets-chat-button,
.nav-button, .title-icon, .icon-container {
    cursor: none !important;
}

/* Duplicate declaration to match other pages */
body, html {
    cursor: none;
}
        
        /* Updated project card styles to match homepage */
        .project-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            width: 100%;
        }
        
        .project-card {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .project-card-image-container {
            width: 100%;
            height: 523px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .project-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-card-image {
            transform: scale(1.05);
        }
        
        .project-card-content {
            margin-top: 16px;
        }
        
        .project-title-with-icon {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .icon-container {
            position: relative;
            width: 24px;
            height: 24px;
        }
        
        .icon-default {
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .icon-hover {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover .icon-default {
            opacity: 0;
        }
        
        .project-card:hover .icon-hover {
            opacity: 1;
        }
        
        .project-card-title-container {
            position: relative;
        }
        
        .default-title {
            opacity: 1;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(0);
            font-size: var(--font-size-h3);
            font-weight: 500;
            margin: 0;
        }
        
        .hover-title {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(10px);
            font-size: var(--font-size-normal);
            color: var(--color-gray);
        }
        
        .project-card:hover .default-title {
            opacity: 0;
            transform: translateY(-10px);
        }
        
        .project-card:hover .hover-title {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .project-cards {
                grid-template-columns: 1fr;
            }
            
            .project-card-image-container {
                height: 400px;
            }
        }
