/*=============== GOOGLE FONTS ===============*/
/* Imported via HTML link tag */

/*=============== VARIABLES CSS ===============*/
:root {
    /* Colors */
    --primary-color: #007bff; /* Electric Blue Example */
    --primary-color-alt: #0056b3;
    --secondary-color: #00ADB5; /* Teal Accent Example */
    --title-color: #222831; /* Deep Charcoal */
    --text-color: #393E46;
    --text-color-light: #6c757d;
    --body-color: #FFFFFF;
    --container-color: #EEEEEE; /* Light Gray */
    --border-color: #dee2e6;
    --highlight-gradient: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  
    /* Font and typography */
    --body-font: 'Lato', sans-serif;
    --title-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  
    /* Font weight */
    --font-medium: 400;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
  
    /* Margins & Paddings */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
  
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
  
    /* Animations */
    --transition-speed: 0.4s ease;
  }
  
  /* Responsive typography */
  @media screen and (min-width: 992px) {
    :root {
      --biggest-font-size: 4rem;
      --h1-font-size: 3rem;
      --h2-font-size: 2rem;
      --h3-font-size: 1.5rem;
      --normal-font-size: 1.1rem;
      --small-font-size: 0.938rem;
      --smaller-font-size: 0.875rem;
    }
  }
  
  /*=============== BASE ===============*/
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    line-height: 1.3;
  }
  
  h1 { font-size: var(--h1-font-size); }
  h2 { font-size: var(--h2-font-size); margin-bottom: var(--mb-1-5); }
  h3 { font-size: var(--h3-font-size); margin-bottom: var(--mb-0-75); }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
  }
  
  a:hover {
    color: var(--primary-color-alt);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /*=============== REUSABLE CSS CLASSES ===============*/
  .section {
    padding: 6rem 0 2rem;
  }
  
  .section-title {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: var(--mb-3);
    font-weight: var(--font-extra-bold);
    position: relative;
    padding-bottom: var(--mb-0-75);
  }
  
  /* Optional Title Underline */
  .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 4px;
      background: var(--highlight-gradient);
      border-radius: 2px;
  }
  
  .section-subtitle {
      display: block;
      font-size: var(--small-font-size);
      text-align: center;
      color: var(--text-color-light);
      margin-top: -var(--mb-2);
      margin-bottom: var(--mb-3);
  }
  
  .container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .highlight {
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .text-center {
      text-align: center;
  }
  
  
  /*=============== HEADER & NAV ===============*/
  .header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: background-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px); /* Blur effect */
  }
  
  .navbar {
    height: 4.5rem; /* Adjust as needed */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    color: var(--title-color);
    transition: transform 0.3s ease;
  }
  .logo:hover {
      transform: scale(1.05);
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem; /* Spacing between menu items */
  }
  
  .nav-link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    position: relative;
    transition: color var(--transition-speed);
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: var(--highlight-gradient);
      transition: width var(--transition-speed);
  }
  
  .nav-link:hover::after,
  .nav-link.active-link::after {
      width: 100%;
  }
  
  .nav-link:hover,
  .nav-link.active-link {
    color: var(--primary-color); /* Or use highlight gradient color */
  }
  
  
  /* Mobile Menu Styles */
  .nav-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* Hidden on desktop */
    flex-direction: column;
     justify-content: space-around;
      width: 30px;
      height: 25px;
  }
  .nav-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--title-color);
      border-radius: 3px;
      transition: all 0.3s ease-in-out;
  }
  
  /* Add scroll header shadow */
  .scroll-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--body-color); /* Solid on scroll */
  }
  
  /*=============== BUTTONS ===============*/
  .button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--title-font);
  }
  
  .button:hover {
    background-color: var(--primary-color-alt);
    transform: translateY(-2px);
     box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  }
  
  .button--flex {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .button-icon {
      transition: transform 0.3s ease;
  }
  .button:hover .button-icon {
      transform: translateX(4px);
  }
  
  
  .button--ghost {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .button--ghost:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-color-alt);
    border-color: var(--primary-color-alt);
    box-shadow: none;
  }
  
  .button--small {
      padding: 0.4rem 0.8rem;
      font-size: var(--smaller-font-size);
  }
  
  /*=============== HERO SECTION ===============*/
  .hero {
    background-color: var(--container-color); /* Light background */
    /* Optional: Add background image or gradient */
    /* background: url('images/hero-bg.jpg') no-repeat center center/cover; */
    /* background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,173,181,0.1)); */
    padding-top: 8rem; /* Adjust for fixed header */
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  /* Ensure your hero content stays above the video */
  .hero-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-extra-bold);
    margin-bottom: var(--mb-1);
  }
  
  .hero-description {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-2);
    max-width: 500px;
    color: var(--text-color-light);
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-img {
      width: 100%;
      max-width: 450px;
      justify-self: center;
      /* Add subtle animation */
      animation: float 4s ease-in-out infinite;
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
  }
  
  .scroll-down-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      animation: bounce 2s infinite;
  }
  .scroll-down-indicator a {
      color: var(--text-color-light);
      font-size: var(--small-font-size);
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .scroll-down-indicator span {
      display: block;
      width: 1px;
      height: 30px;
      background-color: var(--text-color-light);
      margin-bottom: 5px;
  }
  
  @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
      40% { transform: translate(-50%, -10px); }
      60% { transform: translate(-50%, -5px); }
  }
  
  
  /*=============== INTRO & SKILLS BADGES ===============*/
  .intro {
      background-color: var(--body-color);
  }
  .intro .grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      align-items: center;
      gap: 3rem;
  }
  .intro-text p {
      margin-bottom: var(--mb-1-5);
  }
  .skills-title {
      font-size: var(--h3-font-size);
      color: var(--title-color);
      margin-bottom: var(--mb-1);
  }
  
  .badges-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: flex-start; /* Align badges */
  }
  
  .badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem;
      background-color: var(--container-color);
      border-radius: 0.5rem;
      transition: transform var(--transition-speed), box-shadow var(--transition-speed);
      min-width: 100px;
      text-align: center;
  }
  
  .badge:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .badge img {
      width: 40px; /* Adjust size */
      height: 40px;
  }
  
  .badge span {
      font-size: var(--small-font-size);
      font-weight: var(--font-semi-bold);
      color: var(--title-color);
  }
  
  
  /*=============== PROJECTEN ===============*/
  .projecten {
      background-color: var(--container-color);
  }
  .projecten-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax for better flexibility */
    gap: 2rem;
    align-items: stretch; /* This helps make grid items of the same height if they are direct children */
  }
  
  .project-card {
    background-color: var(--body-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex; /* Make card a flex container */
    flex-direction: column; /* Stack children (image, data) vertically */
  }
  
  .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10; /* Maintain a widescreen aspect ratio */
    max-height: 230px; /* Prevent it from becoming too tall, adjust as needed */
    background-color: #e9ecef; /* UPDATED to match the 4th card's desired color */
    width: 100%; /* Ensure image area takes full width of card */
  }
  
  /* New styles for the responsive showcase */
  .project-showcase-image-container {
    position: relative; /* Establishes a positioning context for children */
    width: 100%;
    height: 100%; /* Ensure it fills the .project-image container */
    display: flex; /* Using flex to help center items if needed, though absolute positioning is primary */
    justify-content: center;
    align-items: center;
  }

  .project-showcase-image-container img {
    position: absolute; /* Key for layering */
    object-fit: cover; /* Cover the area, might crop */
    object-position: top center; /* Show top part of image if cropped */
    border: 2px solid #ddd; /* Subtle border for device screens */
    border-radius: 8px; /* Slightly rounded corners for screens */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Shadow for depth */
    transition: transform 0.3s ease, opacity 0.3s ease, left 0.3s ease, top 0.3s ease;
  }

  /* Desktop Screen - Largest, at the back */
  .showcase-desktop {
    width: 75%;  /* Relative to parent .project-showcase-image-container */
    height: auto;
    aspect-ratio: 16/10;
    max-height: 90%; /* Ensure it doesn't overflow too much */
    z-index: 1;
    /* Centered using absolute positioning and transform */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Tablet Screen - Middle layer */
  .showcase-tablet {
    width: 45%; /* Adjusted width for landscape */
    height: auto;
    aspect-ratio: 4/3; /* Changed to landscape */
    max-height: 70%; /* Adjusted max-height */
    z-index: 2;
    /* Positioned slightly offset */
    top: 55%;
    left: 30%; /* Pushed more to the left */
    transform: translate(-50%, -50%) rotate(-5deg); /* Slight rotation */
    border-width: 4px; /* Thicker border for smaller device */
    border-radius: 6px;
  }

  /* Mobile Screen - Smallest, at the front */
  .showcase-mobile {
    width: 22%;  /* Smallest */
    height: auto;
    aspect-ratio: 9/19;
    max-height: 65%;
    z-index: 3;
    /* Positioned to the right and slightly lower */
    top: 60%;
    left: 70%; /* Pushed more to the right */
    transform: translate(-50%, -50%) rotate(5deg); /* Slight rotation other way */
    border-width: 3px;
    border-radius: 4px;
  }

  /* Hide original image if using this new showcase method */
  .project-image > img:not(.showcase-desktop):not(.showcase-tablet):not(.showcase-mobile) {
      display: none; /* Hide the original single project image if present directly under .project-image */
  }

  .project-card:hover .showcase-desktop {
    left: 50%; /* Stays centered horizontally */
    top: 40%;  /* Moves up significantly */
    transform: translate(-50%, -50%) scale(1.05); /* Slight scale */
  }
  .project-card:hover .showcase-tablet {
    left: 21%; /* Moves left */
    top: 50%;  /* Moves up slightly */
    transform: translate(-50%, -50%) scale(1.08) rotate(-10deg); /* Scales up, rotates more */
  }
  .project-card:hover .showcase-mobile {
    left: 79%; /* Moves right */
    top: 50%;  /* Moves up slightly */
    transform: translate(-50%, -50%) scale(1.08) rotate(10deg); /* Scales up, rotates more */
  }
  /* End of new responsive showcase styles */
  
  .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 123, 255, 0.7); /* Primary color overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity var(--transition-speed);
  }
  
  .project-card:hover .project-overlay {
      opacity: 1;
  }
  
  .project-overlay .button {
      background-color: #fff;
      color: var(--primary-color);
  }
  .project-overlay .button:hover {
       background-color: var(--container-color);
  }
  
  
  .project-data {
    padding: 1.5rem;
    padding-bottom: 2.5rem; /* Increased bottom padding */
    flex-grow: 1; /* Allow this area to grow and push content below it down */
    display: flex; /* Make this a flex container too */
    flex-direction: column; /* Stack titles and button vertically */
  }
  
  .project-category-title {
    font-size: var(--small-font-size); /* e.g., 0.875rem or 0.938rem on desktop */
    font-weight: var(--font-semi-bold);
    color: var(--secondary-color); /* Using teal accent for distinction */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--mb-0-5); /* Space below this title */
    opacity: 1; /* Ensure visibility */
    visibility: visible; /* Ensure visibility */
  }
  
  .project-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    color: var(--title-color); /* Explicitly set color, though inherited */
    opacity: 1; /* Ensure visibility */
    visibility: visible; /* Ensure visibility */
  }
  
  .project-description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: var(--mb-1);
    min-height: 50px; /* Ensure cards have similar text height */
  }
  
  .project-tags {
      display: block;
      font-size: var(--smaller-font-size);
      color: var(--primary-color);
      font-weight: var(--font-semi-bold);
  }
  
  
  /*=============== OVER MIJ ===============*/
  .over-mij {
      background-color: var(--body-color);
  }

  /* Update container and section title for Over Mij if needed, or use general styles */
  .over-mij .container {
      /* Behoud bestaande container padding, etc. */
  }

  .over-mij .section-title {
      text-align: center; /* Of de bestaande styling als die er is */
      margin-bottom: 2.5rem; /* Ruimte tussen titel en grid */
  }
  /* Ensure the ::after pseudo-element for the title is centered if title is centered */
  .over-mij .section-title::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .over-mij-grid-container {
      display: grid;
      gap: 2rem; /* Ruimte tussen de kolommen */
  }

  .over-mij-column .over-mij-subtitle {
      /* margin-top: 0; Reset top margin if it's the first element - in HTML it might not be */
      margin-bottom: 0.75rem;
  }
  .over-mij-column .over-mij-intro { /* Style for the intro text under the image */
      font-size: var(--normal-font-size); /* Adjust as needed */
      font-weight: var(--font-medium);
      margin-bottom: var(--mb-1);
      color: var(--text-color-light);
  }


  .over-mij-column p {
      margin-bottom: 1rem;
  }

  .over-mij-column p:last-child { /* To prevent double margin if a p is the last element in a column */
      margin-bottom: 0;
  }
  .over-mij-column .skills-badges-about {
      margin-top: 1.5rem; /* Ensure consistent spacing */
  }

  .over-mij-column .skills-badges-about h4 {
      margin-bottom: var(--mb-0-75);
      font-weight: var(--font-bold);
  }
  .over-mij-column .skills-badges-about span {
      display: inline-block;
      background-color: var(--container-color);
      padding: 0.3rem 0.8rem;
      border-radius: 0.25rem;
      font-size: var(--small-font-size);
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-color);
  }


  /* Profile Image Mask - Smaller & Circular */
  .profile-image-masked {
      width: 100%;
      max-width: 150px; /* Default max-width for mobile */
      height: 150px;    /* Default height for mobile */
      object-fit: cover; 
      border-radius: 50%; 
      margin-bottom: 1rem; 
      display: block;
      margin-left: auto; 
      margin-right: auto; 
      box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
      position: relative; /* Default position */
      transform: rotate(0deg); /* Default rotation */
      border: none; /* Default border */
      z-index: 1; /* Default z-index */
  }


  .over-mij-content .section-title { /* This class might be from old structure, ensure it's not conflicting or remove if not used */
      text-align: left;
      margin-bottom: var(--mb-1-5);
  }
  .over-mij-content .section-title::after { /* This class might be from old structure */
      left: 0;
      transform: none;
  }

  /* .over-mij-intro is already defined within .over-mij-column, this one can be removed if it's a duplicate from old structure */
  /*
  .over-mij-intro {
      font-size: var(--h3-font-size); 
      font-weight: var(--font-semi-bold);
      margin-bottom: var(--mb-1);
  }
  */

  /* .over-mij-subtitle is already defined within .over-mij-column */

  /* .over-mij-content p is covered by .over-mij-column p */

  /* .skills-badges-about is already defined within .over-mij-column */


  /* Desktop: 3 kolommen voor .over-mij-grid-container */
  @media screen and (min-width: 992px) {
      .over-mij-grid-container {
          grid-template-columns: repeat(3, 1fr);
          align-items: start; /* Lijn items bovenaan de kolommen uit */
      }
       .profile-image-masked {
          margin-left: 0; /* Lijn links uit in de grid kolom op desktop */
          margin-right: auto; 
      }
      .over-mij-column { /* Reset text-align for desktop if it was centered for mobile */
          text-align: left;
      }
      .over-mij-column .over-mij-subtitle { /* Reset text-align for desktop */
          text-align: left;
      }
       .over-mij-column .skills-badges-about { /* Reset text-align for desktop */
          text-align: left;
      }
  }

  /* Tablet: 1 kolom is default, can be adjusted to 2 if desired */
  @media screen and (max-width: 991px) and (min-width: 768px) {
      .over-mij-grid-container {
          grid-template-columns: 1fr; /* Or repeat(2, 1fr) if that looks better */
      }
      /* Image is already centered by margin-left/right auto */
       .profile-image-masked {
          /* max-width: 150px; /* Already set, no need to change for tablet unless desired */
      }
      .over-mij-column { /* Center content in the column on tablet */
          text-align: center;
      }
      .over-mij-column .over-mij-subtitle {
          text-align: center;
      }
      .over-mij-column .skills-badges-about {
          text-align: center;
      }
  }

  @media screen and (max-width: 767px) {
      .over-mij-grid-container {
          grid-template-columns: 1fr; /* Standaard 1 kolom voor mobiel */
      }
       /* Image is already centered by margin-left/right auto */
      .profile-image-masked {
           /* max-width: 150px; /* Already set, no need to change for mobile unless desired */
      }
      .over-mij-column {
          text-align: center; /* Centreer tekst in de kolom op mobiel */
      }
      .over-mij-column .over-mij-subtitle {
          text-align: center;
      }
      .over-mij-column .skills-badges-about {
          text-align: center;
      }
  }
  
  
  /*=============== PRIJZEN ===============*/
  .prijzen {
    background-color: var(--container-color);
  }
  
  .prijzen-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Make cards equal height */
  }
  
  .prijs-card {
    background-color: var(--body-color);
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
     position: relative;
     overflow: hidden;
  }
  
  .prijs-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .prijs-card.featured {
      border: 3px solid var(--primary-color);
      transform: scale(1.05); /* Make featured stand out */
      box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
  }
  .prijs-card.featured:hover {
      transform: scale(1.05) translateY(-5px); /* Keep scale on hover */
  }
  
  .featured-tag {
      position: absolute;
      top: 10px;
      right: -35px; /* Adjust to position */
      background: var(--highlight-gradient);
      color: white;
      padding: 0.3rem 2rem;
      font-size: var(--smaller-font-size);
      font-weight: var(--font-bold);
      transform: rotate(45deg);
  }
  
  
  .prijs-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
  }
  
  .prijs-description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: var(--mb-1-5);
    min-height: 40px; /* Help align descriptions */
  }
  
  .prijs-price {
    margin-bottom: var(--mb-2);
  }
  
  .price-amount {
    font-size: 1.8rem; /* Make price prominent */
    font-weight: var(--font-extra-bold);
    color: var(--primary-color);
  }
  
  .prijs-features {
    text-align: left;
    margin-bottom: var(--mb-2);
    flex-grow: 1; /* Push button to bottom */
  }
  
  .prijs-features li {
    margin-bottom: var(--mb-0-75);
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--small-font-size);
  }
  
  .prijs-features li::before {
    content: '✓'; /* Checkmark */
    color: var(--secondary-color); /* Accent color */
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .prijs-features .highlight-feature {
      font-weight: var(--font-bold);
      color: var(--title-color);
  }
  .prijs-features .highlight-feature::before {
       content: '⭐'; /* Star for highlight */
       color: var(--primary-color);
  }
  
  
  .prijs-card .button {
      margin-top: auto; /* Pushes button to bottom */
  }
  
  .service-highlight {
      background-color: var(--body-color);
      padding: 1.5rem;
      margin-top: 3rem;
      border-radius: 0.5rem;
      border-left: 5px solid var(--secondary-color);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  .service-highlight h4 {
      margin-bottom: var(--mb-0-5);
      font-weight: var(--font-bold);
  }
  
  
  /*=============== CONTACT ===============*/
  .contact {
      background-color: var(--body-color);
  }
  .contact-container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
  }
  
  .contact-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1-5);
  }
  
  .contact-form-div {
    margin-bottom: var(--mb-1-5);
    position: relative;
  }
  
  .contact-form-tag {
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    font-size: var(--smaller-font-size);
    padding: 0 0.25rem;
    background-color: var(--body-color); /* Match background */
    color: var(--text-color-light);
    z-index: var(--z-tooltip);
  }
  
  .contact-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    color: var(--text-color);
    outline: none;
    transition: border-color var(--transition-speed);
  }
  
  .contact-form-input:focus {
    border-color: var(--primary-color);
  }
  
  textarea.contact-form-input {
      height: auto; /* Allow textarea to resize based on rows */
      resize: vertical; /* Allow vertical resize only */
  }
  
  .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: var(--mb-1-5);
  }
  .info-icon {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-top: 0.2rem; /* Align icon better */
  }
  .contact-info-item h4 {
      font-size: var(--normal-font-size);
      font-weight: var(--font-semi-bold);
      margin-bottom: 0.2rem;
  }
  .contact-info-item a {
      font-size: var(--small-font-size);
      color: var(--text-color-light);
  }
  .contact-info-item a:hover {
      color: var(--primary-color);
  }
  
  /*=============== FOOTER ===============*/
  .footer {
    background-color: var(--title-color); /* Dark footer */
    padding: 2rem 0;
    color: var(--container-color); /* Light text on dark */
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-copy {
    font-size: var(--small-font-size);
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: var(--container-color);
    font-size: var(--small-font-size);
    transition: color var(--transition-speed);
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  
  /*=============== SCROLL UP ===============*/
  .scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%; /* Initially hidden */
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    z-index: var(--z-tooltip);
    transition: bottom 0.4s, transform 0.4s;
     opacity: 0.8;
  }
  
  .scrollup:hover {
     background-color: var(--primary-color-alt);
     transform: translateY(-4px);
     opacity: 1;
  }
  
  /* Show scroll up button */
  .show-scroll {
    bottom: 3rem;
  }
  
  /*=============== SCROLL BAR ===============*/
  ::-webkit-scrollbar {
    width: 0.6rem;
    background-color: var(--container-color);
    border-radius: 0.5rem;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    transition: background-color var(--transition-speed);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color-alt);
  }
  
  /*=============== ANIMATIONS ON SCROLL ===============*/
  .animate-on-scroll {
      opacity: 0;
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in { transform: translateY(20px); }
  .fade-in-up { transform: translateY(40px); }
  .fade-in-left { transform: translateX(-40px); }
  .fade-in-right { transform: translateX(40px); }
  
  /* Class added by JS when element is visible */
  .visible {
      opacity: 1;
      transform: translate(0, 0) !important; /* Use important if needed */
  }
  
  
  /*=============== MEDIA QUERIES ===============*/
  /* For medium devices (tablets) */
  @media screen and (max-width: 768px) {
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .section {
        padding: 4rem 0 2rem;
    }
    .hero {
        padding-top: 6rem;
        min-height: auto; /* Adjust height on smaller screens */
        padding-bottom: 4rem;
    }
    .hero-container {
        grid-template-columns: 1fr; /* Stack hero content */
        text-align: center;
    }
     .hero-img {
         margin-top: 2rem;
          max-width: 350px;
     }
      .hero-buttons {
          justify-content: center;
      }
      .hero-description {
          margin-left: auto;
          margin-right: auto;
      }
  
     .nav-menu {
          position: fixed;
          background-color: var(--body-color);
          top: 4.5rem; /* Positioned to be always visible below header */
          left: 0;
          width: 100%;
          padding: 1rem 0; 
          text-align: center;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          flex-direction: row; 
          justify-content: space-around; 
          align-items: center; 
          gap: 0.5rem; 
          z-index: calc(var(--z-fixed) - 1); 
      }
      
      .nav-toggle {
          display: none !important; /* Hide the toggle button */
      }
      /* Hamburger animation styles below are no longer strictly necessary if the toggle is hidden,
         but can be kept if you might re-enable the toggle later. */
      .nav-toggle.active span:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
      }
      .nav-toggle.active span:nth-child(2) {
          opacity: 0;
      }
      .nav-toggle.active span:nth-child(3) {
          transform: rotate(-45deg) translate(6px, -6px);
      }
  
      .nav-link { /* Adjust nav-link for smaller horizontal space */
          font-size: var(--small-font-size); /* Potentially reduce font size */
          padding: 0.5rem 0.25rem; /* Adjust padding if needed */
      }

      .nav-link::after { /* Adjust underline for smaller items */
          bottom: -2px;
      }

      .intro .grid,
      .over-mij .grid,
      .contact-container {
          grid-template-columns: 1fr;
      }
      .skills-badges {
          justify-content: center;
          margin-top: 2rem;
      }
      .over-mij-image { order: -1; /* Image first */ margin-bottom: 2rem; }
      .over-mij-content .section-title { text-align: center; }
       .over-mij-content .section-title::after { left: 50%; transform: translateX(-50%); }
      .contact-info { margin-top: 2rem; }
  }
  
  /* For large devices (desktops) - Adjusting project container for 4 columns */
  @media screen and (min-width: 1024px) { /* Start adjusting for 4 columns around this breakpoint */
    .projecten-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem; /* Slightly reduce gap if needed to fit 4 cards comfortably */
    }
  }

  /* For small devices (mobiles) */
  @media screen and (max-width: 576px) {
   :root {
      --biggest-font-size: 2rem;
      --h1-font-size: 1.8rem;
      --h2-font-size: 1.3rem;
      --h3-font-size: 1.1rem;
    }
    .projecten-container,
    .prijzen-container {
        grid-template-columns: 1fr; /* Single column */
        max-width: 340px; /* Center content */
        margin-left: auto;
        margin-right: auto;
    }
    .prijs-card.featured {
        transform: scale(1); /* Don't scale featured card on mobile */
    }
     .featured-tag {
         font-size: 0.7rem;
         padding: 0.2rem 1.5rem;
         right: -30px;
     }
     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }
      .footer-container {
          flex-direction: column;
      }
      .footer-links {
          margin-top: 1rem;
      }
  }

  /* Specific style for the button in the last project card if it needs to be aligned to bottom */
  .project-card .button--small {
      margin-top: auto; /* Push to the bottom of the .project-data flex container */
  }

  /* ===== Over Mij Section Enhancements ===== */

  /* Card styling for each column on desktop and tablet */
  @media screen and (min-width: 768px) { /* Apply card style from tablet upwards */
      .over-mij-column {
          background-color: #f8f9fa; /* Light background for the card */
          padding: 1.5rem;
          border-radius: 0.5rem; /* Rounded corners for card */
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .over-mij-column:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      }

      .over-mij-column:first-child {
          position: relative; /* Ensures card transforms or layout shifts don't break context for absolute child if intro wasn't relative */
      }

      .over-mij-column:first-child .over-mij-intro {
          position: relative; /* Crucial for positioning the image ON the intro text */
          padding-top: 2rem;  /* More space for the image to overlap from top */
          padding-right: 1.5rem; /* Space for the image to overlap from right */
          /* background: #fff; /* Optional: if intro text needs a solid background */
          min-height: 100px; /* Ensure enough height for overlap to look good, adjust as needed */
      }

      .over-mij-column:first-child .profile-image-masked {
          position: absolute;
          width: 85px;   /* Post-it size */
          height: 85px;  /* Post-it size */
          top: -25px;    /* Negative to pull it upwards over the intro text's top edge */
          right: -20px;  /* Negative to pull it rightwards over the intro text's right edge (adjust to not go too far out of card) */
          border-radius: 50%; /* Stays round */
          object-fit: cover;
          border: 4px solid white; /* White border to simulate paper */
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Post-it shadow */
          transform: rotate(6deg); /* Slight tilt */
          z-index: 5;      /* Ensure it's above the intro text */
          margin-bottom: 0; /* Override base style */
          margin-left: unset; /* Override base style */
          margin-right: unset;/* Override base style */
          max-width: none;   /* Override base style */
      }
  }

  /* Styling for "Vaardigheden" as Badges */
  .over-mij-column .skills-badges-about span {
      display: inline-block; /* Already set, but ensure it is */
      background-color: var(--container-color); /* Or a slightly different shade */
      padding: 0.4rem 0.9rem; /* Adjusted padding */
      border-radius: 1rem;    /* More rounded for a pill/badge shape */
      font-size: var(--smaller-font-size); /* Slightly smaller font */
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-color);
      font-weight: var(--font-medium);
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  .over-mij-column .skills-badges-about span:hover {
      background-color: var(--primary-color);
      color: #fff;
  }


  /* Ensure subtitles and text within cards have appropriate styling if overridden */
  .over-mij-column .over-mij-subtitle {
      color: var(--primary-color); /* Ensure it keeps its color */
      /* margin-top: 0; /* Adjust if it's the first element in the card - handled by :first-child */
  }
  .over-mij-column .over-mij-subtitle:first-child { /* If a subtitle is the very first thing in a column card */
      margin-top: 0;
  }


  /* On mobile, the columns stack, so card styling might be optional or different */
  @media screen and (max-width: 767px) {
      .over-mij-column {
          /* Optional: Add some distinction on mobile if desired, e.g., a border top */
          /* border-top: 1px solid var(--border-color); */
          /* padding-top: 1.5rem; */
          /* Remove card-like background and shadow if it doesn't look good stacked */
          background-color: transparent;
          box-shadow: none;
          padding-left: 0; /* Reset padding if columns are full width */
          padding-right: 0;
      }

      /* Center skills badges container content on mobile if not already */
      .over-mij-column .skills-badges-about {
          text-align: center;
      }
       .profile-image-masked { /* Ensure it's centered on mobile */
          margin-left: auto;
          margin-right: auto;
      }
  }