:root {
    --ST-secondarybeige-300:   #FAF9F5;
    --ST-secondaryblue-400:     #6A7EFF;
    --ST-neutral-500:       #7C7880;
    --ST-neutral-600:       #4B484D;
    --ST-neutral-700:       #323033;
}

* { box-sizing: border-box; }

body {
    background: var(--ST-secondarybeige-300, #FAF9F5);
    color: #4B484D;
    font-weight: 300;
    margin: 0;
    overflow-x: hidden;
}


.st-secondary-blue-bg {
    background: var(--ST-secondaryblue-400, #6A7EFF);
}

.st-secondaryblue-400 {
    color: var(--ST-secondaryblue-400, #6A7EFF);
}

.st-secondarybrown-600 {
    color: var(--ST-secondarybrown-400, #876E12);
}

.st-primarypurple-300 {
    color: #A59FAA;
}

.st-primarypurple-400 {
    color: #4C4055;
}

.st-primarypurple-600 {
    color: #1F102A;
}

.st-neutral-500 {
    color: var(--ST-neutral-500, #7C7880);
}

.st-neutral-600 {
    color: var(--ST-neutral-600, #4B484D);
}

.st-neutral-700 {
    color: var(--ST-neutral-700, #323033);
}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}






@keyframes icon-fly {
    0%   { transform: translateY(0);    opacity: 1; }
    49%  { transform: translateY(-8px); opacity: 0; }
    50%  { transform: translateY(8px);  opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}

a:hover .bi-arrow-up-right {
    animation: icon-fly 0.3s ease forwards;
}

a {
    overflow: hidden; /* verbergt het icoon buiten de bounds */
}

a .bi-arrow-up-right {
    display: inline-block; /* nodig voor transform */
}



/* ─── BLOG ──────────────────────────── */

.blog {
    background: #fff;
    overflow: hidden;
    transition: all .3s;
    position: relative;
}

.blog .image {
    width: 50%;
    margin-bottom: 20%;
    transition: all .3s;
    background-size: cover;
    background-position: center;
}

.blog:hover .image {
    width: 70%;
    margin-bottom: 0%;
}

.blog h2 {
    transition: all .3s;
    margin-top: 18px;
    margin-bottom: 18px;
}

.blog:hover h2 {
    margin-top: 8px;
    margin-bottom: 8px;
}


.blog .read-more-icon {
    transition: all .3s;
    transform: rotate(0deg);
}

.blog:hover .read-more-icon {
    transform: rotate(45deg);
}

.blog .tag {
    transition: all .3s;
    margin-top: 0;
}

.blog:hover .tag {
    margin-top: 20px;
}

.blog .tag i {
    transition: all .3s;
    font-size: 0.95em;
}

.blog:hover .tag i {
    font-size: 0.8em;
}

.tag-case  { background: #E3E375;  color: #111; }
.tag-backstory { background: #4ecce8; color: #111; }
.tag-project { background: #e84e8a; color: #fff; }





.team {
    background: none;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)), var(--bg-image) lightgray 50% / cover no-repeat;
    transform: scale(1);
    transition: transform 0.35s ease;
    z-index: 0;
}

.team:hover::before {
    transform: scale(1.1);
}

.team > * {
    position: relative;
    z-index: 1;
}


.team .read-more-icon {
    transition: all .3s;
    transform: rotate(0deg);
}

.team:hover .read-more-icon {
    transform: rotate(45deg);
}

.team .description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.team:hover .description {
    max-height: 250px;
}



.masonry-item {
    width: calc(33.333% - 14px);
    margin-bottom: 20px;
    cursor: pointer;
}

@media (min-width: 560px) {
    .masonry-grid .masonry-item:nth-of-type(2) {
        margin-top: 5rem;
    }

    .masonry-grid .masonry-item:nth-of-type(3) {
        margin-top: 2rem;
    }
}

@media (max-width: 900px) {
    .masonry-item { width: calc(50% - 10px); }
}
@media (max-width: 560px) {
    .masonry-item { width: 100%; }
}