
/*=========================================*
* PROJECTS
*=========================================*/

.projects {
    background: #ffffff;
    padding: 120px 0;
}


/*=========================================*
* SECTION TITLE
*=========================================*/

.projects .section-title {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.projects .section-tag {
    display: inline-block;

    color: #D4AF37;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.projects .section-title h2 {
    font-size: 52px;

    color: #111;

    margin-bottom: 20px;

    line-height: 1.2;
}

.projects .section-title p {
    color: #666;

    font-size: 17px;

    line-height: 1.8;
}


/*=========================================*
* PROJECT GRID
*=========================================*/

.projects-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}


/*=========================================*
* PROJECT CARD
*=========================================*/

.project-card {
    display: block;

    text-decoration: none;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #ececec;

    transition: 0.35s ease;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}


/*=========================================*
* PROJECT IMAGE
*=========================================*/

.project-card img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}


/*=========================================*
* PROJECT CONTENT
*=========================================*/

.project-content {
    padding: 24px;
}

.project-category {
    display: inline-block;

    color: #D4AF37;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.project-content h3 {
    color: #111;

    font-size: 24px;

    margin-bottom: 10px;

    line-height: 1.3;
}

.project-content p {
    color: #666;

    font-size: 16px;

    line-height: 1.7;
}


/*=========================================*
* PROJECTS BUTTON
*=========================================*/

.projects-btn {
    margin-top: 60px;

    text-align: center;
}


/*=========================================*
* TABLET
*=========================================*/

@media (max-width: 992px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card img {
        height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 22px;
    }

}


/*=========================================*
* MOBILE
*=========================================*/

@media (max-width: 768px) {

    .projects {
        padding: 90px 0;
    }

    .projects .section-title h2 {
        font-size: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 240px;
    }

}


/*=========================================*
* SMALL MOBILE
*=========================================*/

@media (max-width: 480px) {

    .projects {
        padding: 80px 0;
    }

    .projects .section-title h2 {
        font-size: 32px;
    }

    .projects .section-title p {
        font-size: 15px;
    }

    .project-card {
        border-radius: 14px;
    }

    .project-card img {
        height: 210px;
    }

    .project-content {
        padding: 18px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .project-category {
        font-size: 11px;
    }

    .project-content p {
        font-size: 14px;
    }

}
