.gradient-text {
  background: linear-gradient(135deg, #1a9fff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.stretch-link{
    position: relative;
}
.stretch-link a::after{
    content: '';
    position: absolute;
    inset: 0;
}
.stretch-link a:is(:focus-visible)::after{
    outline: 2px solid;
}
.stretch-link a:is(:hover, :focus){
    outline: none;
}

.phone-link {
    position: relative;
    cursor: pointer;
}

.phone-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* De Blueprint Grid Klasse */
.blueprint-grid {
    --grid-color: rgba(0, 85, 255, 0.05); /* Het blauw van de lijntjes */
    --grid-size: 40px; /* Grootte van de vakjes */
    
    background-color: #ffffff; /* Achtergrondkleur */
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px), 
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
}

/* De verticale blueprint lijn */
.blueprint-line-container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.blueprint-line-container::before {
    content: '';
    position: absolute;
    left: 50%; /* Lijn in het midden */
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #0055ff; /* Jouw blauwe kleur */
    opacity: 0.3;
    z-index: 1;
}

/* De bolletjes op de Grid blokken */
.blueprint-node {
    position: relative;
}

.blueprint-node::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 2px solid #0055ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Mobiel: Lijn naar links verplaatsen */
@media (max-width: 768px) {
    .blueprint-line-container::before {
        left: 20px;
    }
    .blueprint-node::after {
        left: 20px;
    }
}
