﻿/* ============================================================
   Collections Page
============================================================ */

/* Layout */
.collectionsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 0;
}

/* Card */
.collectionCard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 24px;
    min-height: 160px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: #ffffff;
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 140ms ease, transform 140ms ease;
}

    .collectionCard:hover {
        border-color: var(--color-accent);
        transform: translateY(-2px);
    }

.collectionCard__meta {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(30,36,38,.45);
    margin-bottom: 12px;
}

.collectionCard__title {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

.collectionCard__desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 36ch;
    color: rgba(30,36,38,.65);
}

/* Intro refinements */
.collections__lead {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.collections__body {
    margin-top: 0;
    max-width: 62ch;
}

/* Responsive */
@media (max-width: 900px) {
    .collectionsGrid {
        grid-template-columns: 1fr;
    }

    .collections__closing {
        max-width: 62ch;
    }
}



/* ============================================================
   COLLECTIONS SHOWROOM (Scoped)
============================================================ */

.collections-page .strategic-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(30,36,38,.55);
    margin-bottom: 24px;
}

.collections-page .strategic-card {
    border-color: rgba(30,36,38,.18);
}

    .collections-page .strategic-card:hover {
        border-color: var(--color-text);
    }

.collections-page .strategic-closing {
    padding-top: 20px;
    padding-bottom: 24px;
}

.collections-page .strategic__closing {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.03em;
    max-width: 56ch;
    color: var(--color-text);
}




.nameCard {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-text);
    background: #ffffff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    position: relative; /* nodig voor absolute child */
    overflow: hidden;
}

    .nameCard:hover {
        border-color: rgba(0,0,0,0.12);
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }



/* ----------------------------- */
/* NAME */
/* ----------------------------- */

.nameCard__name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ----------------------------- */
/* META */
/* ----------------------------- */

.nameCard__meta {
    font-size: 0.85rem;
    font-weight: 400; /* lichter */
    color: rgba(30,36,38,.55); /* minder visueel gewicht */
    line-height: 1.4;
    margin-bottom: 4px;
}

/* ----------------------------- */
/* TAGLINE */
/* ----------------------------- */

.nameCard__tagline {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(30,36,38,.45); /* subtieler */
    line-height: 1.35;
}


/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */

.nameCard__footer {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------------------------- */
/* PRICE */
/* ----------------------------- */

.nameCard__price {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #1e2426;
    padding: 6px 10px;
    border: 1px solid rgba(30,36,38,.12);
    border-radius: 999px;
    background: rgba(30,36,38,.03);
}


/* ----------------------------- */
/* CTA */
/* ----------------------------- */

.nameCard__cta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    color: #1f7a73; /* muted teal */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nameCard:hover .nameCard__cta {
    transform: translateX(2px);
    opacity: 0.85;
}

/* ----------------------------- */
/* VARIANT LABEL */
/* ----------------------------- */

.nameCard__variant {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

    /* Momentum – primary teal */
    .nameCard__variant[data-variant="Momentum"] {
        color: #1f7a73;
    }

    /* Authority – deeper teal */
    .nameCard__variant[data-variant="Authority"] {
        color: #17635d;
    }

    /* Foundation – balanced teal */
    .nameCard__variant[data-variant="Foundation"] {
        color: #2b8f87;
    }

    /* Structure – soft teal */
    .nameCard__variant[data-variant="Structure"] {
        color: #5ea9a3;
    }

    /*.nameCard__variant::before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 1px;
        background: rgba(31,122,115,.25);
        margin-right: 8px;
        vertical-align: middle;
    }*/



.collectionCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 28px; /* ruimte voor lijn */
    background-color: #ffffff;
}

    .collectionCard::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 6px;
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

.collectionCard__cta {
    margin-top: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.collectionCard:hover .collectionCard__cta {
    opacity: 1;
}

/* STRATEGIC — hoogste autoriteit */
.collectionCard[data-collection="strategic"]::before {
    background: #102B30; /* deep petrol */
}

/* EXECUTIVE */
.collectionCard[data-collection="executive"]::before {
    background: #3E5F7C;
}

/* GROWTH */
.collectionCard[data-collection="growth"]::before {
    background: #4F8A82;
}

/* LAUNCH */
.collectionCard[data-collection="launch"]::before {
    background: #A7B2BA;
}

/*-----*/

.nameCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px; /* hoogte van de lijn */
}

/* STRATEGIC — hoogste autoriteit */
.nameCard[data-collection="strategic"]::before {
    background: #102B30; /* deep petrol */
}

/* EXECUTIVE */
.nameCard[data-collection="executive"]::before {
    background: #3E5F7C;
}

/* GROWTH */
.nameCard[data-collection="growth"]::before {
    background: #4F8A82;
}

/* LAUNCH */
.nameCard[data-collection="launch"]::before {
    background: #A7B2BA;
}




.pagination {
    margin-top: 3rem;
    display: flex;
    gap: .6rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination__link {
    padding: .55rem .85rem;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: .9rem;
    color: #222;
    transition: all .2s ease;
}

    .pagination__link:hover {
        border-color: #000;
    }

    .pagination__link.is-active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

.pagination__dots {
    padding: .55rem .4rem;
    color: #999;
}


//-------------------------------------

