/* ---------------- PROJECTS PAGE STYLES ---------------- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #1a1a1a;
    /* Dark card */
    border-radius: 20px;
    overflow: hidden;
    color: white;
    padding: 1rem;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: white;
}

.project-img-container {
    width: 100%;
    height: 200px;
    background-color: #333;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-info p {
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}