/*
    Vantage Point — marketing page
    App-specific styles layered on top of the shared theme (main.css + pizza.css).
    Loaded only by vantage-point.html.
*/

/* ---- Intro / hero icon ---- */
#intro img.vp-hero {
    width: 160px;
    height: auto;
    margin-bottom: 0.75rem;
}

#intro .vp-price {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---- Screenshot frames ---- */
.vp-shot {
    display: block;
    border: solid 2px #3a4653;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

    .vp-shot img {
        display: block;
        width: 100%;
        height: auto;
    }

    .vp-shot-caption {
        margin-top: 0.75rem;
        font-style: italic;
        text-align: center;
    }

/* ---- Feature rows: screenshot and story, side by side, alternating ---- */
#main > .vp-rows {
    padding-top: 0;
    padding-bottom: 0;
}

    .vp-rows .vp-row {
        display: flex;
        align-items: center;
        gap: 3rem;
        padding: 3rem 0;
    }

        .vp-rows .vp-row + .vp-row {
            border-top: solid 2px #eeeeee;
        }

        .vp-rows .vp-row .vp-shot-wrap {
            flex: 0 0 52%;
        }

        .vp-rows .vp-row .vp-copy {
            flex: 1;
            min-width: 0;
        }

            .vp-rows .vp-copy h3 {
                font-size: 1.5rem;
                line-height: 1.2;
                margin-bottom: 0.75rem;
            }

        .vp-rows .vp-copy p {
            font-size: 1rem;
        }

    /* Even rows: screenshot on the right */
    .vp-rows .vp-row:nth-child(even) {
        flex-direction: row-reverse;
    }

/* ---- Price line ---- */
.vp-price {
    margin-top: 1rem;
    text-align: center;
}

/* ---- Requirements table ---- */
table.vp-reqs td:first-child {
    font-weight: bold;
    width: 40%;
}

@media screen and (max-width: 736px) {

    #intro img.vp-hero {
        width: 118px;
    }

    .vp-rows .vp-row,
    .vp-rows .vp-row:nth-child(even) {
        flex-direction: column;
    }

        .vp-rows .vp-row .vp-shot-wrap {
            flex: none;
            width: 100%;
            max-width: 25rem;
            margin-left: auto;
            margin-right: auto;
        }

}