/* Project Page Stylesheet: project-pages.css */

.project-image {
    display: block;
    width: auto;
    max-width: 80%;
    height: auto;
    margin-bottom: 18px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.project-content-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.project-image-description-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(80%, fit-content);
    
}

.project-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.wip-gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    width: fit-content;
    max-width: 80%;
    margin: 0 auto;
    justify-items: center;
}

.project-gallery-heading {
    width: 100%;
    font-family: "Inter";
    font-size: 1.3em;
    color: #2E67B1;
    margin: 0;
    text-align: left;
}

.wip-gallery-row .project-image {
    width: 100%;
    max-width: 320px;
    margin: 0;
}

.project-page {
    display: flex;
    flex-direction: column;
    padding: 10%;
    padding-top: 5%;
}

.project-gradient-box {
    width: 80vw;
    margin: 48px auto 150px auto;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(50, 52, 109, 0.10);
    background: linear-gradient(to bottom, #FFFFFF 0%, #96CEFF 50%, #FFFFFF 100%);
    padding: 150px 4vw 150px 4vw;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-title-section {
    text-align: center;
    margin-bottom: 32px;
}
.project-title {
    font-family: "Inter";
    font-size: 3.2em;
    color: #2E67B1;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
    font-weight: 700;
}
.project-subtitle {
    font-family: "Inter";
    font-size: 1.5em;
    color: #20508C;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.project-image-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #20508C;
    margin-top: 12px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 80%;
}

.project-body-text {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #32346D;
    text-align: left;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 80%;
}

.quote-text {
    font-family: "Poppins", sans-serif;
    color: #32346D;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin: 20px 0;
}

@media (max-width: 900px) {
    .project-gradient-box {
        width: 96vw;
        padding: 24px 2vw 24px 2vw;
        border-radius: 16px;
    }

    .project-title {
        font-size: 30px;
    }
    .project-subtitle {
        font-size: 20px;
    }
    .project-content-row {
        flex-direction: column;
        gap: 24px;
    }
    .project-image-description-col,
    .project-body-text-col {
        flex: unset;
        width: 100%;
        align-items: flex-start;
    }
    .project-image-description {
        max-width: 100%;
    }
    .project-gallery-row,
    .wip-gallery-row {
        grid-template-columns: 1fr;
    }
    .wip-gallery-row .project-image {
        max-width: 100%;
    }
}
