/* PROJECTS SECTION */

.projects-section {
    padding: 120px 20px;
    background: #f7f7f7;
}


/* FILTER BUTTONS */

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    background: #eee;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: .3s;
}

.filter-btn.active {
    background: var(--primary-green);
    color: white;
}

.filter-btn:hover {
    background: var(--gold);
    color: white;
}


/* PROJECT GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}


/* PROJECT CARD */

.project-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: .35s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}


/* INFO */

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-info p {
    color: #555;
    line-height: 1.6;
    font-size: .95rem;
}


/* MOBILE */

@media(max-width:768px) {
    .projects-section {
        padding: 80px 20px;
    }
    .project-card img {
        height: 200px;
    }
    .section-title {
        font-size: 2rem;
    }
}