﻿.project-info {
    padding: 15px;
    background: #fff;
    text-align: center;
}

.project-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

    .project-name a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .project-name a:hover {
            color: #007bff; /* Change to your theme color */
        }

/* Overlay title styling */
.project-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 10px 15px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.project-title-link {
    text-decoration: none;
    display: block;
}

    .project-title-link:hover .project-title {
        transform: translateY(-5px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-name {
        font-size: 16px;
    }

    .project-title {
        font-size: 18px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .project-name {
        font-size: 14px;
    }

    .project-title {
        font-size: 16px;
        padding: 6px 10px;
    }

    .project-info {
        padding: 10px;
    }
}
