.dev-theme .nav-brand,
.dev-theme .section-title,
.dev-theme .intro-title,
.dev-theme .terminal-output-wrap,
.dev-theme .nav-menu li a {
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
    text-transform: none;
}


.dev-theme .nav-menu li a:hover {
    color: white;
}


/* Explore Projects Button */
.explore-projects-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.explore-projects-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.explore-projects-btn .arrows-down {
    font-size: 20px;
    animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.dev-theme .footer {
    position: relative;
    z-index: 1;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    width: 100%;
}

/* Project Card */
.project-card {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Project Preview (Screenshot) */
.project-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.project-card:hover .project-preview img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

/* Overlay on hover */
.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-visit {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(10, 10, 10, 0.8);
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

/* Project Info */
.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Live status dot */
.project-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.project-status--live {
    background: rgba(0, 255, 100, 0.7);
    animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; box-shadow: 0 0 4px rgba(0, 255, 100, 0.2); }
}

.project-name {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.project-desc {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    flex: 1;
}



/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
