/* Shared styles for all project pages */
.project-container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.project-container h1.project-title {
    color: #1976d2 !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
    text-align: center !important;
    font-family: Arial, sans-serif !important;
}
.project-image {
    width: 100%;
    max-width: 1024px;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
    /* Prevent image downloading and right-click */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    transition: transform 0.2s ease;
}

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

/* Special class for clickable project images (linked downloads) */
.clickable-project-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: transform 0.2s ease;
}

.clickable-project-image:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .project-image {
        max-width: 320px;
    }
    .clickable-project-image {
        max-width: 240px;
    }
}

/* Download section used by individual project pages */
.download-section {
    text-align: center;
    margin: 20px 0;
}

.download-text {
    font-size: 1.2rem;
    color: #1976d2;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}
.project-text {
    color: black;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 20px auto;
    width: 60%;
    max-width: 800px;
} 