/* ==========================
   PROJECTS PAGE CLEAN CSS
   ========================== */

/* HERO BANNER */
.projects-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.projects-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 50, 0.55);
}

.projects-hero .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 90px;
}

/* SECTION HEADER */
.project-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* PROJECT CARDS */
.project-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.project-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* FIX IMAGE SIZES */
.project-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-body {
    padding: 20px;
}

.project-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.project-body p {
    color: #666;
    line-height: 1.6;
}

/* CATEGORY BADGE */
.project-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--main-red);
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
