.angie-modern-projects-showcase {
    position: relative;
    width: 100%;
}

.angie-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff; /* Default white per request */
}

.angie-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.angie-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.angie-project-image {
    width: 100%;
    height: 100%;
}

.angie-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.angie-project-card:hover .angie-project-image img {
    transform: scale(1.1);
}

.angie-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.angie-project-card:hover .angie-project-overlay {
    opacity: 1;
    background-color: rgba(0,0,0,0.7);
}

.angie-project-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.angie-project-card:hover .angie-project-info {
    transform: translateY(0);
}

.angie-project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.angie-project-category {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.angie-project-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease;
}

.angie-project-arrow:hover {
    background-color: #fff;
    color: #000;
}

.angie-project-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
