/* PROJECTS PAGE STYLES */

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Projects Section */
.projects-section {
    margin-top: 3rem;
}

.projects-grid {
    display: grid;
    gap: 2rem;
}

/* Project Cards (Light Theme) */
.project-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #d5d5d5;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-type {
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.project-date {
    font-size: 0.9rem;
    color: #999;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.project-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #4ade80;
}

.project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-badge {
    background: #f5f5f5;
    color: #666;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

/* Project Links */
.project-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.view-project {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.view-project::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
}

.view-project:hover {
    color: #4ade80;
}

.view-project:hover::after {
    background: #4ade80;
}

.secondary-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.secondary-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #666;
    transition: width 0.3s ease;
}

.secondary-link:hover {
    color: #666;
}

.secondary-link:hover::before {
    width: 100%;
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.load-more-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.load-more-btn:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 0 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .project-card {
        padding: 1.25rem;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}