/* ================= FONT – CORMORANT GARAMOND ================= */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

/* ================= WHY GPC TEAM – IMAGE BG LEFT / TEXT RIGHT ================= */

.why-gpc {
    background: #1A061F;
    padding: 0;
    color: #f4f1ec;
}

.why-gpc-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.why-gpc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 650px;
}

/* ================= LEFT SIDE BACKGROUND IMAGE ================= */

.why-gpc-image {
    width: 100%;
    height: 100%;
    min-height: 650px;

    background-image: url("/images/gpc-team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

.why-gpc-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
}

.why-gpc-image img {
    display: none;
}

/* ================= TEXT CONTENT RIGHT ================= */

.why-gpc-content {
    padding: 90px 90px;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 55%);
}

/* ================= LABEL GOLD ================= */

.why-gpc-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #c79a5a;
    margin-bottom: 18px;
}

/* ================= HEADLINE – CORMORANT GARAMOND ================= */

.why-gpc-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* ================= PARAGRAPH ================= */

.why-gpc-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #e7e2d8;
    margin-bottom: 24px;
}

/* ================= QUOTE ================= */

.why-gpc-quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: #d8d2c6;

    border-left: 3px solid #c79a5a;
    padding-left: 18px;
    margin-top: 28px;
}

/* ================= CTA ================= */

.why-gpc-cta {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ================= BUTTON GOLD ================= */

.why-gpc-cta .hero-button {
    display: inline-block;
    background: #c79a5a;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 0;

    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;

    border: 1px solid rgba(199, 154, 90, 0.9);
    transition: 0.25s ease;
    text-decoration: none;
}

.why-gpc-cta .hero-button:hover {
    background: #b8874d;
    border-color: #b8874d;
    transform: translateY(-1px);
}

.why-gpc-sub {
    margin-top: 14px;
    font-size: 14px;
    color: #d8d2c6;
    max-width: 360px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .why-gpc-layout {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .why-gpc-image {
        min-height: 320px;
    }

    .why-gpc-content {
        padding: 55px 20px;
        max-width: 100%;
    }

    .why-gpc-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .why-gpc-content h2 {
        font-size: 28px;
    }

    .why-gpc-content p {
        font-size: 16px;
    }
}
/*.why-gpc-layout {
    grid-template-columns: 1fr 1fr;
}

.why-gpc-image {
    order: 2;
}

.why-gpc-content {
    order: 1;
}

.why-gpc-content{
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    padding-right: 90px;
    padding-left: 40px;
}*/


.why-gpc-label,
.why-gpc-cta{
    align-self: flex-end;
}

.why-gpc-quote{
    border-left: none;
    border-right: 3px solid #c79a5a;
    padding-left: 0;
    padding-right: 18px;
}
/* ================= SERIF HEADINGS (like "We are here for you") ================= */

.section-title-serif,
.contact-mail-title,
.what-to-expect-title {
    font-family: "Playfair Display", serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.contact-us-by-mail h2,
.what-to-expect h2 {
    font-family: "Playfair Display", serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}
/* ================= DESKTOP: TEXT RIGHT / IMAGE RIGHT ================= */
@media (min-width: 901px) {
    .why-gpc-layout {
        grid-template-columns: 1fr 1fr;
    }

    .why-gpc-image {
        order: 2;
    }

    .why-gpc-content {
        order: 1;

        /* ✅ LICOWANIE DO PRAWEJ */
        text-align: right;

        /* ✅ dociśnięcie contentu do prawej strony kolumny */
        margin-left: auto;
        margin-right: 0;

        /* możesz zostawić symetryczne, ale lepiej dać więcej z prawej */
        padding: 90px 90px;
    }

    .why-gpc-label,
    .why-gpc-cta{
        align-self: flex-end;
    }

    .why-gpc-quote{
        border-left: none;
        border-right: 3px solid #c79a5a;
        padding-left: 0;
        padding-right: 18px;
    }
}

/* ================= MOBILE: STACK (FULL WIDTH) ================= */
@media (max-width: 900px) {
    .why-gpc-layout {
        grid-template-columns: 1fr !important;
    }

    .why-gpc-image {
        order: 1 !important;
        min-height: 320px;
    }

    .why-gpc-content {
        order: 2 !important;
        text-align: left !important;
        padding: 55px 20px !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .why-gpc-label,
    .why-gpc-cta {
        align-self: flex-start !important;
    }

    .why-gpc-quote {
        border-right: none !important;
        border-left: 3px solid #c79a5a !important;
        padding-right: 0 !important;
        padding-left: 18px !important;
    }
}
/* ================= ACCENT COLOR – IVORY / OFF-WHITE ================= */

:root {
    --accent-main: #F2EFEA;
    --accent-hover: #E6E1D9;
    --accent-border: rgba(242,239,234,0.9);
}

/* ================= LABEL ================= */

.why-gpc-label {
    color: var(--accent-main);
}

/* ================= QUOTE ================= */

.why-gpc-quote {
    border-left: 3px solid var(--accent-main);
}

/* desktop – prawa krawędź */
@media (min-width: 901px) {
    .why-gpc-quote {
        border-right: 3px solid var(--accent-main);
        border-left: none;
    }
}

/* mobile */
@media (max-width: 900px) {
    .why-gpc-quote {
        border-left: 3px solid var(--accent-main) !important;
        border-right: none !important;
    }
}

/* ================= BUTTON ================= */

.why-gpc-cta .hero-button {
    background: var(--accent-main);
    color: #1A061F;
    border: 1px solid var(--accent-border);
}

.why-gpc-cta .hero-button:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}






