/* --- moved out of descript.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.2s, height 0.2s;
        }
        
        /* 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;
        }
        
        body, html {
            cursor: none;
        }

        .project-hero-content h1 {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    font-size: 120px;
    font-weight: 400;
    text-align: center;
}

        
        /* 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;
            }
        }

            /* Make projects-container background transparent on project pages */

    .projects-container {
        background: transparent !important;
    }
    
    /* Make contact section full width */
    .contact-section-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Match the contact window width to the projects container width */
    .contact-window {
        max-width: none !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Match contact section to homepage */
.contact-window {
    background-color: transparent !important; /* Make background transparent like on homepage */
}

.window-content {
    padding: 32px !important; /* Match the padding to your homepage (adjust this value as needed) */
}

/* Fix padding for homepage-style contact buttons */
.contact-buttons {
    padding: 0 !important;
}

/* Ensure contact text styling matches homepage */
.contact-text {
    width: auto !important; /* Reset width constraint */
}


    /* Make projects-container background transparent on project pages */

    .projects-container {
        background: transparent !important;
    }
    
    /* Make contact section full width */
    .contact-section-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Match the contact window width to the projects container width */
    .contact-window {
        max-width: none !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Match contact section to homepage */
.contact-window {
    background-color: transparent !important; /* Make background transparent like on homepage */
}

.window-content {
    padding: 32px !important; /* Match the padding to your homepage (adjust this value as needed) */
}

/* Fix padding for homepage-style contact buttons */
.contact-buttons {
    padding: 0 !important;
}

/* Ensure contact text styling matches homepage */
.contact-text {
    width: auto !important; /* Reset width constraint */
}

        /* Medium screens (tablets) */
        @media (max-width: 1024px) {
    .project-hero-content h1 {
        font-size: 80px !important; /* Reduced size for tablets */
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .project-hero-content h1 {
        font-size: 56px; /* Significantly smaller on mobile */
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .project-hero-content h1 {
        font-size: 48px; /* Even smaller on very small screens */
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .project-hero-content h1 {
        font-size: 32px; /* Minimum size for very small screens */
    }
}
