:root {
    --accent: #0057AD;
    --accent-light: #41A0FF;
    --bg: #f6f8fb;
    --text: #1a1a1a;
    --card-bg: #fff;
    --shadow: rgba(0,0,0,0.1);
    --green: #4CAF50;
    --red: #F44336;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: var(--bg);
    color: var(--text);
    padding-top: 150px; /* Voor fixed header */
  }
  
  
  /* Sections */
  section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: auto;
  }
  
  h1 {
    color: var(--accent);
    font-size: 35px;
  }
  

  h2 {
    color: var(--accent);
    margin-bottom: 1rem;
  }

  p {
    font-weight: 600;
  }

  .h-p {
    font-size: 100px;
    color: var(--accent-light);
    display: inline-block;
  }

  .h-byte {
    font-size: 100px;
    color: white;
    display: inline-block;
  }

  .sub-head {
    font-size: 18px;
    color: white;
    font-weight: 600;
  }


  /* PARTNERS LINK EFFECT */
.link-head {
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.link-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1.5px;
  background: white;
  transition: width 0.3s ease-in-out;
}

.link-head:hover::after {
  width: 0;
}



  .body-head {
    padding: 50px;
    background-color: var(--accent);
    border-radius: 1.25rem;
    max-width: 1400px;
    margin-top: 5px;
  }
  
  /* Cards */
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .card {
    background: var(--card-bg);
    padding: 1.5rem;
    flex: 1 1 250px;
    border-radius: 8px;
    box-shadow: 0 2px 6px var(--shadow);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent);
  }
  
  .status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
    transition: box-shadow 0.2s ease;
  }
  
  .status-badge.occupied {
    background: var(--red);
  }
  
  .status-badge.available {
    background: var(--green);
  }
  
  .status-badge:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .subdomain-check {
    margin-top: -100px;
    padding-left: 18px;
    padding-top: 18px;
    padding-bottom: 7px;
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 15px 25px -5px rgba(74,85,104,.1),0 -2px 15px -5px rgba(74,85,104,.2)!important;
    max-width: 1350px;
  }
  
  /* Subdomain check */
  .subdomain-check h2 {
    margin-bottom: 1rem;
  }
  
  .subdomain-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: stretch; /* input en knop even hoog */
    margin-bottom: 1rem;
  }
  
  .subdomain-inputs input,
  .subdomain-inputs button {
    height: 48px; /* zelfde hoogte */
    font-size: 1.125rem;
  }
  
  .subdomain-inputs input {
    flex: 1; /* neemt rest van de ruimte */
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e0;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .subdomain-inputs input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0,87,173,0.2);
  }
  
  .subdomain-inputs button {
    padding: 0 1rem;
    border-radius: 0.75rem;
    border: none;
    background-color: var(--accent);
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.15s ease;
  }
  
  .subdomain-inputs button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
  }
  
  /* Result cards */
  #resultArea {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .result-card {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between; /* tekst links, knop rechts */
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 100%;
  }
  
  .result-card.available {
    background: var(--green);
  }
  
  .result-card.occupied {
    background: var(--red);
  }
  
  .result-card button {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    transition: background-color 0.2s ease;
  }
  
  .result-card.available button:hover {
    background-color: rgba(255,255,255,0.4);
  }
  
  .result-card.occupied button {
    cursor: default;
    opacity: 0.7;
  }
  

  .contact {
    max-width: 1400px;

  }
  
  /* Contact form */
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 500px;
  }
  
  input, textarea, button {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
  }
  
  button {
    background-color: var(--accent);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.556;
    padding: 0.5rem 0.75rem;
    text-align: center;
    transition: transform 0.15s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    vertical-align: middle;
  }
  
  /* Section offset voor projecten */
  .projects {
    margin-top: 100px;
  }
  
  .sendBtn:hover {
    background-color: var(--accent-light);
  }

  ::selection {
    background: var(--accent-light); /* achtergrondkleur van de selectie */
    color: white;        /* tekstkleur */
  }
  
  