  :root {
      --bg: #ffffff;
      --pink-pastel: #ffd9e8;
      --pink-strong: #ff6faa;
      --accent: #ff6faa;
      --text: #121212;
      --muted: #666;
      --card: #fff0f5;
      --gap: 24px;
      --radius: 8px;
      --container: 1100px;
  }

  * {
      box-sizing: border-box
  }

  html,
  body {
      height: 100%
      
  }
  body {
      background: linear-gradient(to right,
              #f8c8dc 10%,
              /* pastelroze links */
              white 10%,
              white 90%,
              #f8c8dc 90%);
      /* pastelroze rechts */
      background-attachment: fixed;
      margin: 0;
      padding: 0;
  }


  
  body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      line-height: 1.45;
  }
  

  a {
      color: inherit;
      text-decoration: none
  }

  .wrap {
      max-width: var(--container);
      margin: 0 auto;

      padding: 10px
  }

  /* NAV */
  header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
      backdrop-filter: blur(4px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.04)
  }

  .nav-inner {
      max-width: var(--container);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      gap: 12px
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 12px
  }

  .logo {
      width: 56px;
      height: 56px;
      border-radius: 6px;
      background: linear-gradient(180deg, var(--pink-strong), #ff9fc7);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-family: Playfair Display, serif;
      font-size: 20px;
      box-shadow: 0 6px 20px rgba(255, 105, 150, 0.12)
  }

  nav {
      display: flex;
      gap: 10px;
      align-items: center
  }

  nav a {
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: 600;
      color: var(--muted);
      font-size: 14px
  }

  nav a:hover {
      background: var(--pink-pastel);
      color: var(--text)
  }

  .cta {
      background: var(--pink-strong);
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: 700
  }

  /* Hero */
  .hero {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 60px 0;
            height: 500px;

      
  }

  .hero-left {
      flex: 1;
                  background-color: #fff2f7;
                  box-shadow: 0 12px 30px rgba(255, 110, 160, 0.12);
  }

.hero {
    text-align: center;
    background: linear-gradient(to bottom, #fff5fa, #ffe6f0);
    padding: 60px 20px;
    box-shadow: 0 12px 30px rgba(255, 110, 160, 0.12);
    border-radius: 8px;
    margin-bottom: 40px;
}

/* De grote titel */
.eyebrow {
    font-family: 'Playfair Display', serif;
    color: #ff6ca4;
    font-size: 240px;
    /* Groot, zoals je wilde */
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 12px rgba(255, 110, 160, 0.25);
        flex-direction: column;
        align-items: center;
    
}

/* Je naam eronder */
.hero-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
    background-color: #ff6ca4;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Ondertekst */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #ff7aad;
    display: inline-block;
    padding: 6px 24px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
        flex-direction: column;
        align-items: center;
}

/* Responsieve weergave voor mobiel */
@media (max-width: 768px) {
    .eyebrow {
        font-size: 80px;
    }

    .hero-name {
        font-size: 24px;
        padding: 8px 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}
  

  h1 {
      font-family: Playfair Display, serif;
      font-size: 44px;
      margin: 8px 0 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
     height: 70px;
      background-color: #ff6ca4;
        color: #ffffff;
            flex-direction: column;
            align-items: center;
  }

  p.lead {
      color: var(--muted);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
        background-color: #ff6ca4;
        color: #ffffff;
  }

  .hero-right {
      width: 300px;
          flex-direction: column;
          align-items: center;
  }

  .title-band {
      background: linear-gradient(90deg, var(--pink-pastel), #ffeef6);
      padding: 18px;
      border-radius: 6px;
      border-left: 6px solid var(--pink-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
          flex-direction: column;
          align-items: center;
      
  }

  /* Sections */
  section {
      padding: 36px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
          flex-direction: column;
          align-items: center;
  }

  .section-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 24px;
      align-items: start
  }

  .profile-photo {
      width: 100%;
      height: 420px;
      background: linear-gradient(180deg, #ffd6e6, #ff9ec9);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      font-weight: 800;
      color: white;
      border: 6px solid white;
      box-shadow: 0 12px 30px rgba(255, 110, 160, 0.12);
          background-image: url("leueke\ foto.png");
          background-size: 900px;
          background-position: 20cm;
          background-position-y: 33cm;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              flex-direction: column;
              align-items: center;
      }
      


  .about-text {
      padding: 18px;
      background: linear-gradient(180deg, #fff0f5, white);
      border-radius: 8px;
      border: 1px solid rgba(255, 110, 160, 0.06)
  }

  .about-text h2 {
      margin-top: 0;
      font-family: Playfair Display, serif;
      color: var(--pink-strong)
  }

  /* Projects vertical list */
  .projects {
      display: grid;
      gap: 22px
      
  }

  .project {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 18px;
      align-items: center;
      background: white;
      padding: 12px;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(17, 9, 24, 0.03);
      border: 1px solid rgba(255, 110, 160, 0.05);
          flex-direction: column;
          align-items: center;
      
      
  }

  .project .thumb {
      height: 160px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      background-size: cover;
      background-position: center;
      border: 6px solid var(--pink-pastel)
      
  }

  .project .meta h3 {
      margin: 0 0 8px;
      font-size: 20px;
      color: var(--pink-strong);
      font-family: Playfair Display, serif;
      
      
  }

  .project .meta p {
      margin: 0;
      color: var(--muted)
  }

  .project .meta .more {
      margin-top: 10px;
      font-weight: 700;
      color: var(--pink-strong);
      font-size: 13px
  }

  /* Grid variant for smaller screens */
  @media (max-width:980px) {
      .section-inner {
          grid-template-columns: 1fr;
          gap: 18px
      }

      .project {
          grid-template-columns: 1fr;
          align-items: start
      }

      .project .thumb {
          height: 220px
      }
  }

  /* Contact */
  .contact-grid {
      display: flex;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap
  }

  .contact-card {
      flex: 1;
      min-width: 240px;
      padding: 18px;
      border-radius: 8px;
      background: linear-gradient(180deg, #fff, #fff0f7);
      border: 1px solid rgba(255, 110, 160, 0.05)
  }

  .socials {
      display: flex;
      gap: 10px;
      padding-top: 6px
  }

  .skillbar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 12px
  }

  .chip {
      background: var(--pink-pastel);
      padding: 8px 10px;
      border-radius: 7px;
      font-weight: 700;
      color: var(--text)
  }

  footer {
      padding: 30px 0;
      text-align: center;
      color: var(--muted);
      font-size: 14px
  }

  /* Floating quick nav for project pages (optional) */
  .modal {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(5, 5, 10, 0.45);
      z-index: 60;
      padding: 20px
  }

  .modal.open {
      display: flex
  }

  .modal-card {
      max-width: 900px;
      width: 100%;
      background: white;
      border-radius: 10px;
      padding: 18px;
      position: relative
  }

  .modal-card .close {
      position: absolute;
      right: 12px;
      top: 12px;
      background: var(--pink-strong);
      color: white;
      border: none;
      padding: 8px;
      border-radius: 8px;
      cursor: pointer
  }

  .modal-card h2 {
      margin-top: 0;
      font-family: Playfair Display, serif
  }

  /* Utility */
  .muted {
      color: var(--muted)
  }

  .center {
      display: flex;
      align-items: center;
      justify-content: center
  }