* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lightsel ::selection {
    background-color: #000;
    color: #fff;
  }
  
  .darksel ::selection {
    background-color: #fff;
    color: #000;
  }

[id] {
    scroll-margin-top: 150px;
  }

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    margin: 1vh;
}

.smoll{
    font-size: xx-small;
}
.lesssmoll{
    font-size: small;
}

.generalUnderline{
    text-decoration: underline;
}

.topspace{
    margin-top: 50px;
}

body {
    background-color: black;
    font-family: Helvetica, Arial, sans-serif;
    color: white;
    margin-top: 100px;
}

/* CV foto */

.cv-foto {
    display: block; /* Ensures the image behaves as a block element */
    max-width: 100%; /* Prevents the image from overflowing the viewport */
    max-height: 100vh; /* Ensures the image fits within the viewport height */
    width: auto; /* Maintains the image's original width */
    height: auto; /* Maintains the image's original height */
    margin: 0 auto; /* Centers the image horizontally */
}

/* Header */
.header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header h1 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    display: inline-block;
}

.header .by-line {
    font-size: 24px;
    display: inline-block;
    margin-left: 10px;
}

.header a:link {
    color: #fff;
    text-decoration: none;
}

.header a:visited{
    color: white;
}

.header a:hover {
    text-decoration: underline;
}



/* Footer */
.site-footer {
    background: white;
    padding: 20px 10px;
    color: black;
    text-align: center;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.site-footer li {
    margin-right: 20px;
}

.site-footer a {
    text-decoration: none;
    color: black;
}

.site-footer a:hover {
    text-decoration: underline;
}

.golden-texture {
    background-image: url('./assets/images/goldentexture.jpg');
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

/*-----Creative Corner-------------------------------------------------*/
.CreativeCorner {
    max-width: 1000px;
    margin: 5vh auto;
    padding: 5vh;
    background-color: black;
    color: white;
    height: auto;
}

.CreativeCorner a{
    color: white;
}

.CreativeCorner h2{
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 2vh;
}


.OM_MusicPlayers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("/assets/images/musicBG.png");
}

.OM_AudioP{
    margin: 2vh auto;
    background-color: #F1F3F4;
}

.OM_Foto1 {
    width: 48%;
    height: 48%;
    margin: 2% 1%;
    box-sizing: border-box;
}
.OM_Fotogram{
    display: flex;
    flex-wrap: wrap;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./assets/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-btn {
    background-color: transparent;
    border: 2px solid white;
    padding: 12px 24px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    /*border-radius: 30px;*/
    border-radius: 10px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: white;
    color: black;
}

/* About Me Section */
.about {
    background-color: black;
    color: white;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 10vw;
    gap: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 100%;
}

.cv-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cv-link:hover {
    background-color: white;
    color: black;
}

.about-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo img {
    width: 100%;
    max-width: 400px;
    max-height: 500px;
    object-fit: contain;
}


/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact */

.contact-buttons-section {
    text-align: center;
    max-width: 800px;
    margin: 375px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.contact-buttons-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 10px;
}

/* Specific Button Colors */
.email-btn {
    background-color: #007bff; /* Blue */
}

.school-btn {
    background-color: #6c757d; /* Gray */
}

.linkedin-btn {
    background-color: #0077b5; /* LinkedIn Blue */
}

.instagram-btn {
    background-color: #e4405f; /* Instagram Pink */
}

/* Hover Effects */
.contact-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}



.PrivacyPolicy {
    max-width: 800px;
    margin: 8vh auto;
    padding-top: 9vh;
    background-color: black;
    color: white;
    height: auto;
}

.PrivacyPolicy h1{
    text-align: center;
}

.PrivacyPolicy p{
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.NerdEmojiGif{
    height: 35px;
    width: 40px;
    vertical-align: middle;
}

/* Responsieve Layout */
@media only screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    .navbar a {
        font-size: 16px;
    }

    .about {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        text-align: left;
    }

    .about-content {
        align-items: center;
    }

    .about-photo {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content p {
        margin-bottom: 10px;
        width: 100%;
    }

    .site-footer ul {
        flex-direction: row; /* ✅ Houd horizontaal */
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .site-footer li {
        margin: 0;
    }
}

/* Download button */

@font-face {
    font-family: 'NSMBU'; /* Name you’ll use in CSS */
    src: url('./assets/files/NSMBU_font.ttf') format('truetype'); /* Path to your font file */
    font-weight: normal;
    font-style: normal;
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 30px;
    background-color: #FEDE00; /* of een kleur die je mooi vindt */
    color: white;
    text-shadow:
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black,
            2px  2px 0 rgba(0, 0, 0, 0.8); /* optionele extra schaduw voor diepte */
    text-decoration: none;
    font-family: 'NSMBU', sans-serif; /* Hier het andere font */
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #DDA300;
}

/* Projects Section */

.projects-section {
    padding: 80px 20px;
    background-color: black;
    color: white;
    text-align: center;
}

.projects-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

/* Accordion Style */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid white;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 15px auto;
    display: block;
    /*border-radius: 8px;*/
}

.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.accordion-button {
    background-image: url('./assets/images/offWhiteTapeStraight.png');
    background-size: cover;
    background-position: center;
    color: black;
    padding: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    margin-left: 1rem;
    font-weight: bold;
    font-size: 1.4rem;
}



.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: black; /* inhoud blijft zwart */
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-content p {
    margin: 20px 0;
}

.accordion-content ul {
    padding-left: 20px; /* inspringing van de hele lijst */
    list-style-type: disc; /* of 'circle', 'square', of 'none' als je geen bullet wilt */
}

.accordion-content li {
    margin-bottom: 8px; /* wat ruimte tussen de lijntjes */
}

/* Als geopend */
.accordion-content.open {
    padding-bottom: 20px;
}

/* Standalone Carousel Section */
.carousel-section {
    max-width: 800px; /* Match the accordion's max-width */
    margin: 0 auto;
    text-align: center;
}

.carousel-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.standalone-carousel {
    position: relative;
    width: 100%;
    max-width: 800px; /* Match the red square width */
    height: 400px; /* Match the red square height */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    display: none;
    text-align: center;
}

.carousel-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image {
    width: 100%;
    max-width: 760px; /* Slightly less than 800px to account for padding/margins */
    height: auto;
    max-height: 350px; /* Leave space for dots and arrows */
    object-fit: contain; /* Ensure the image scales without cropping */
    border-radius: 8px;
}

/* Navigation Arrows */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 5%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: -10px; /* Adjusted to move the dots lower */
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

/* clickable image */

.clickable-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.clickable-img:hover {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* tribute section */

.tribute-section {
    display: flex;
    justify-content: center; /* horizontaal centreren van het blok */
    align-items: center;     /* verticaal centreren */
    gap: 20px;               /* ruimte tussen foto en quote */
    background-color: black;
    color: white;
    height: 300px;           /* of wat je zelf wil */
    padding: 0 20px;
    text-align: left;
}

.left-image-container img {
    max-height: 200px;       /* pas aan naar wens */
    width: auto;
    object-fit: contain;
}

.quote-container {
    max-width: 400px;        /* limiet voor quote breedte */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

blockquote {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
}

/* divider */
.section-divider {
    background-image: url('./assets/images/offWhiteBelt.png');
    background-repeat: repeat-x; /* horizontaal herhalen */
    background-position: center;
    background-size: auto; /* niet stretchen */
    height: 40px; /* hoogte van de strook, pas aan naar wens */
    width: 100%;
    margin: 40px 0; /* wat ruimte boven en onder */
}

.section-divider1 {
    background-image: url('./assets/images/offWhiteTapeStraight.png');
    background-repeat: repeat-x; /* horizontaal herhalen */
    background-position: center top;
    background-size: auto 100%;
    height: 60px; /* hoogte van de strook, pas aan naar wens */
    width: 100%;
    margin: 40px 0; /* wat ruimte boven en onder */
}

/* Eindreflectie */

#eindreflectie {
    display: block;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}


#eindreflectie a h1 {
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}


#eindreflectie h2{
    font-size: 3rem;
    margin-bottom: 40px;
}

#eindreflectie a h1:hover {
    text-decoration: underline;
}


#eindreflectie .pdfEmbed {
    display: block;
    width: 50%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ====== ALGEMENE NAVBAR STIJLEN ====== */
.navbar {
    background-color: #f0f0f0;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar a {
    color: #000;
    text-decoration: none;
    margin: 5px 15px 5px 15px; /* Top, right, bottom, left */
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block; /* Ensures margin works consistently */
}
/* ====== DROPDOWN DESKTOP ====== */
.navbar .dropdown {
    display: inline-block;
    position: relative;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}

.navbar .dropdown-content a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    white-space: nowrap;
    color: black;
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
}

/* Hover styling */
.navbar a:hover,
.navbar .dropdown-content a:hover {
    text-decoration: underline;
}

/* ====== MOBILE MENU ICON ====== */
.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 85px;
    right: 20px;
    z-index: 1001;
}

/* Hamburger menu animatie */
.mobile-menu-icon.open span {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* ====== MOBIELE NAVIGATIE ====== */
.mobile-nav {
    display: flex;
    flex-direction: column;
    background-color: black;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    position: fixed;
    top: 150px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

.mobile-nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

.mobile-nav a:hover {
    background-color: #333;
}

.mobile-nav.open {
    max-height: 1000px; /* aanpassen indien nodig */
}

/* Mobiele submenu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    background-color: #222;
}

.mobile-submenu a {
    padding-left: 30px;
    background-color: #222;
    font-size: 16px;
}

/* Toon submenu als open */
.mobile-submenu.open {
    display: flex;
}

/* Submenu toggle knop styling */
.mobile-submenu-toggle {
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    background: none;
    border: none;
    text-align: center;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.mobile-submenu-toggle:hover {
    background-color: #333;
}

/* Mobiele submenu standaard dicht */
.mobile-submenu {
    display: none;
    flex-direction: column;
    background-color: #222;
}

/* Open submenu */
.mobile-submenu.open {
    display: flex;
}

.mobile-submenu a {
    padding-left: 30px;
    background-color: #222;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.mobile-submenu a:hover {
    background-color: #333;
}

/* Andere weetjes */

#andere-weetjes {
    padding: 60px 20px;
    background: black;
    color: white;
}

#andere-weetjes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Container om de content gecentreerd te houden */
.weetje-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Reverse layout voor afwisseling */
.weetje-section.reverse {
    flex-direction: row-reverse;
}

.weetje-text {
    flex: 1;
    padding: 0 20px;
}

.weetje-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.weetje-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.weetje-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.weetje-image img {
    width: 80%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Fade-in animatie */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WPL2 omschrijving */

.omschrijving-section {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .omschrijving-content {
    max-width: 800px;
    text-align: left;
  }
  
  .omschrijving-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .omschrijving-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .omschrijving-image-wrapper {
    margin-top: 2rem;
    text-align: center;
  }
  
  .omschrijving-img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .omschrijving-img:hover {
    transform: scale(1.02);
  }

  /* Image Slider */

  .image-compare-section {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .image-compare-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .compare-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    cursor: ew-resize;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    user-select: none;
  }
  
  .compare-img {
    width: 100%;
    display: block;
    user-select: none;
    pointer-events: none;
  }

  .compare-container img.compare-img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .compare-resize {
    position: absolute;
    top: 0; left: 0;
    width: 50%; /* dit wordt dynamisch aangepast door JS */
    height: 100%;
    overflow: hidden;
    z-index: 2;
  }
  
  .compare-resize img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* zodat het niet stoort met drag */
    user-select: none;
  }
  
  .compare-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* <-- fix hier */
    width: 4px;
    height: 100%;
    background-color: #fff;
    border: 1px solid #000;
    z-index: 3;
  }
  


@media (min-width: 769px) {
    .mobile-menu-icon,
    .mobile-nav {
        display: none;
    }
}



/* Responsive rules */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }

        .wip-message h1 {
        font-size: 2rem;
    }


    .wip-message p {
        font-size: 1rem;
    }

    .navbar {
        display: none;
    }
    .download-btn{
        display: none;
    }
    .left-image-container{
        display: none;
    }
    h2 {
        font-size: 1.5rem;
    }
    .weetje-section,
    .weetje-section.reverse {
        flex-direction: column;

    }



    #werkplekleren h2{
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    #eindreflectie h2{
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-buttons-section {
        margin: 320px auto;
    }

    .hero {
        background-image: url('./assets/images/mirrorSelfie3.jpg');
    }

    .weetje-text {
        padding: 20px 0;
    }

    .pdfWindow{
        display: none;
    }
}
/* =========================================================
   STAGE PORTFOLIO UPDATE - behoudt OG stijl, vervangt inhoud
   ========================================================= */

.stage-portfolio {
    margin-top: 145px;
}

.stage-portfolio .navbar {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.stage-portfolio .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.3));
    z-index: 0;
}

.stage-portfolio .hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding: 0 24px;
    text-align: left;
}

.stage-portfolio .stage-kicker {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 14px;
}

.stage-portfolio .hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.06em;
}

.stage-portfolio .hero .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    max-width: 760px;
    opacity: 1;
}

.stage-portfolio .hero blockquote {
    max-width: 780px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-top: 20px;
    opacity: 0.9;
}

.stage-hero-links,
.stage-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ghost-link {
    background: white;
    color: black;
}

.ghost-link:hover {
    background: black;
    color: white;
}

.section-intro {
    max-width: 760px;
    margin: -20px auto 40px auto;
    line-height: 1.6;
    opacity: 0.78;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.three-grid .accordion-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    margin: 0;
}

.inline-project-link {
    color: white;
    font-weight: bold;
}

.project-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 6px;
}

.project-link-group .inline-project-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    padding: 9px 12px;
    text-decoration: none;
}

.project-link-group .inline-project-link:hover,
.project-link-group .inline-project-link:focus-visible {
    background: white;
    color: black;
}

.asset-placeholder {
    border: 2px dashed white;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
    margin: 20px auto;
    max-width: 640px;
    background: repeating-linear-gradient(45deg, #111, #111 10px, #161616 10px, #161616 20px);
}

.asset-placeholder span {
    max-width: 420px;
    opacity: 0.75;
    line-height: 1.5;
}

.work-method-section,
.pc-teaser-section,
.stage-contact-section {
    padding: 80px 10vw;
    background: black;
    color: white;
}

.work-method-section h2,
.pc-teaser-section h2,
.stage-contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-grid article {
    border: 1px solid white;
    padding: 24px;
    min-height: 240px;
}

.method-grid h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.method-grid p,
.pc-teaser-section p,
.stage-contact-section p {
    line-height: 1.6;
    opacity: 0.85;
}

.pc-teaser-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pc-teaser-section h2,
.stage-contact-section h2 {
    text-align: left;
}

.pc-teaser-copy {
    max-width: 650px;
}

.pc-teaser-screen {
    display: flex;
    justify-content: center;
}

.fake-window-preview {
    width: min(100%, 520px);
    border: 3px solid white;
    background: #d8d8d8;
    color: black;
    box-shadow: 12px 12px 0 rgba(255,255,255,0.15);
}

.fake-titlebar {
    background: linear-gradient(90deg, #0b3aa7, #2f78ff);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    font-weight: bold;
}

.fake-window-body {
    padding: 24px;
    display: grid;
    gap: 16px;
    font-weight: bold;
}

.stage-contact-section {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pc-teaser-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stage-portfolio {
        margin-top: 115px;
    }

    .stage-portfolio .hero-content {
        text-align: left;
    }

    .stage-portfolio .hero h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .stage-hero-links,
    .stage-contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .stage-hero-links .cv-link,
    .stage-contact-links .cv-link {
        text-align: center;
    }

    .three-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .work-method-section,
    .pc-teaser-section,
    .stage-contact-section {
        padding: 60px 20px;
    }

    .work-method-section h2,
    .pc-teaser-section h2,
    .stage-contact-section h2 {
        font-size: 2rem;
    }
}

/* =========================================================
   RICCARDO'S PC - fullscreen desktopervaring
   ========================================================= */

.pc-page {
    margin: 0;
    overflow: hidden;
    background: #0f6b75;
    color: #111;
    font-family: Tahoma, Verdana, Arial, sans-serif;
}

.pc-page img {
    margin: 0;
}

.pc-startup {
    position: fixed;
    inset: 0;
    background: #050505;
    color: white;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pc-startup.hide {
    opacity: 0;
    visibility: hidden;
}

.startup-box {
    width: min(420px, 86vw);
    text-align: center;
}

.startup-logo {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.startup-bar {
    height: 18px;
    border: 2px solid white;
    padding: 2px;
    overflow: hidden;
}

.startup-bar span {
    display: block;
    height: 100%;
    width: 45%;
    background: white;
    animation: startupLoad 1s infinite alternate ease-in-out;
}

@keyframes startupLoad {
    from { transform: translateX(-70%); }
    to { transform: translateX(180%); }
}

.pc-desktop {
    position: relative;
    height: 100vh;
    width: 100vw;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 22%),
        linear-gradient(135deg, #118e9f 0%, #0b5c99 45%, #143c8c 100%);
    overflow: hidden;
    padding: 24px 24px 54px 24px;
}

.desktop-wallpaper-label {
    position: absolute;
    right: 34px;
    top: 26px;
    text-align: right;
    color: rgba(255,255,255,0.8);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.35);
    pointer-events: none;
}

.desktop-wallpaper-label h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.desktop-wallpaper-label p {
    margin-top: 10px;
}

.desktop-icons {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 88px;
    gap: 18px;
}

.desktop-icon {
    width: 88px;
    min-height: 86px;
    border: 1px solid transparent;
    background: transparent;
    color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
    font: inherit;
    padding: 6px;
}

.desktop-icon:hover,
.desktop-icon:focus-visible {
    border-color: rgba(255,255,255,0.8);
    background: rgba(20, 80, 170, 0.45);
}

.icon-symbol {
    font-size: 2.2rem;
    filter: drop-shadow(1px 1px 0 #000);
}

.pc-window {
    position: absolute;
    z-index: 5;
    background: #ece9d8;
    border: 3px solid #0a246a;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.28);
    display: none;
    min-width: 320px;
    min-height: 220px;
    overflow: hidden;
}

.pc-window.active {
    display: flex;
    flex-direction: column;
}

.pc-window.focused {
    z-index: 50;
}

.pc-titlebar {
    min-height: 34px;
    background: linear-gradient(90deg, #0a246a 0%, #3a8dff 100%);
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 6px 5px 10px;
    cursor: move;
    user-select: none;
}

.media-titlebar {
    background: linear-gradient(90deg, #1f1f1f, #555);
}

.window-controls {
    display: flex;
    gap: 4px;
}

.window-controls button {
    width: 26px;
    height: 24px;
    border: 1px solid white;
    background: #d6d3ce;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.window-controls button:last-child {
    background: #c7352f;
    color: white;
}

.explorer-toolbar {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid #aaa;
    background: #f4f2e8;
}

.xp-button {
    border: 1px solid #777;
    border-top-color: white;
    border-left-color: white;
    background: linear-gradient(#fff, #d7d2c2);
    padding: 7px 12px;
    cursor: pointer;
    font-family: inherit;
    color: black;
}

.xp-button:active {
    border-top-color: #777;
    border-left-color: #777;
    border-bottom-color: white;
    border-right-color: white;
}

.explorer-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 0;
    flex: 1;
}

.explorer-sidebar {
    background: linear-gradient(#7497d7, #d9e7ff);
    padding: 16px;
    color: #0a246a;
    border-right: 1px solid #888;
}

.explorer-sidebar h3 {
    margin-bottom: 12px;
}

.explorer-sidebar button {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.2);
    padding: 8px;
    color: #0a246a;
    cursor: pointer;
    font-family: inherit;
}

.explorer-sidebar p {
    margin-top: 14px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.explorer-content {
    padding: 16px;
    background: white;
    overflow: auto;
}

.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.file-item {
    border: 1px solid transparent;
    background: transparent;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: black;
    font: inherit;
}

.file-item:hover,
.file-item:focus-visible {
    border-color: #7aa7e8;
    background: #dbeaff;
}

.file-thumb {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border: 1px solid #aaa;
    background: #eee;
    display: block;
    margin: 0 auto 8px auto;
}

.file-music-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #1a1a1a, #555);
    color: white;
    border: 1px solid #333;
}

.info-panel {
    line-height: 1.6;
    max-width: 620px;
}

.info-panel h2 {
    margin-bottom: 16px;
}

.photo-viewer-body {
    flex: 1;
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 14px;
}

.photo-viewer-body img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.photo-viewer-toolbar {
    background: #ece9d8;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid #999;
}

.media-player-body {
    flex: 1;
    background: linear-gradient(135deg, #111, #373737);
    color: white;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: auto;
}

.media-player-body h2 {
    font-size: 1.5rem;
}

.media-player-body p {
    line-height: 1.5;
    opacity: 0.78;
}

.media-player-body audio {
    width: 100%;
}

.visualizer {
    height: 90px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 14px;
    background: radial-gradient(circle, #0b8, #002018);
    border: 2px inset #555;
}

.visualizer span {
    width: 18%;
    background: linear-gradient(#fff, #00ff99);
    animation: bounceBars 0.9s infinite ease-in-out alternate;
}

.visualizer span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.visualizer span:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.visualizer span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.visualizer span:nth-child(4) { height: 75%; animation-delay: 0.4s; }
.visualizer span:nth-child(5) { height: 38%; animation-delay: 0.5s; }

@keyframes bounceBars {
    to { transform: scaleY(0.55); }
}

.track-list {
    display: grid;
    gap: 8px;
}

.track-list button {
    text-align: left;
}

.notepad-body {
    background: white;
    color: black;
    flex: 1;
    padding: 22px;
    line-height: 1.6;
    overflow: auto;
    font-family: "Courier New", monospace;
}

.notepad-body h2 {
    margin-bottom: 16px;
}

.pc-taskbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42px;
    background: linear-gradient(#245edb, #1746a2);
    border-top: 2px solid #74a6ff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    z-index: 100;
}

.start-button {
    height: 32px;
    padding: 0 18px;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.7);
    background: linear-gradient(#63c34a, #1d7d22);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.task-button {
    height: 30px;
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.12);
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
}

.task-clock {
    margin-left: auto;
    color: white;
    border-left: 1px solid rgba(255,255,255,0.35);
    padding-left: 14px;
    min-width: 58px;
    text-align: right;
}

@media (max-width: 768px) {
    .pc-page {
        overflow: auto;
    }

    .pc-desktop {
        min-height: 100vh;
        height: auto;
        overflow: visible;
        padding: 20px 12px 72px 12px;
    }

    .desktop-wallpaper-label {
        position: static;
        text-align: left;
        margin-bottom: 20px;
    }

    .desktop-icons {
        grid-template-columns: repeat(4, minmax(72px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .desktop-icon {
        width: auto;
        min-height: 78px;
        font-size: 0.8rem;
    }

    .pc-window,
    .pc-window.active {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 18px;
        display: flex;
    }

    .photo-window,
    .media-window,
    .readme-window {
        display: none !important;
    }

    .photo-window.active,
    .media-window.active,
    .readme-window.active {
        display: flex !important;
    }

    .pc-titlebar {
        cursor: default;
    }

    .explorer-layout {
        grid-template-columns: 1fr;
    }

    .explorer-sidebar {
        border-right: 0;
        border-bottom: 1px solid #888;
    }

    .file-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pc-taskbar {
        overflow-x: auto;
    }

    .task-button {
        min-width: 105px;
        flex: 0 0 auto;
    }
}

/* =========================================================
   PATCH 2 - contact terug cleaner/origineel + PC verfijning
   ========================================================= */

/* Contactpagina: terug dichter bij de oude versie, maar met nieuwe header en zonder formulier */
.contact-reverted-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-reverted-page header,
.contact-reverted-page footer {
    flex: 0 0 auto;
}

.contact-revert-main {
    flex: 1 0 auto;
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(70px, 10vw, 140px) 20px;
}

.contact-revert-card {
    width: min(860px, 92vw);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 8px;
    text-align: center;
    color: #222;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.18);
    box-shadow: 0 18px 50px rgba(255,255,255,0.08);
}

.contact-mini-label {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
}

.contact-revert-card h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.04em;
}

.contact-revert-text {
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.6;
    color: #333;
}

.contact-revert-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-revert-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 7px;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #0a0a0a;
    transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.contact-revert-buttons a:hover,
.contact-revert-buttons a:focus-visible {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Simpele info-pagina's: CV, privacy, voorwaarden */
.simple-info-page {
    background: #000;
    color: #fff;
}

.simple-page-main {
    min-height: 70vh;
    padding: clamp(64px, 8vw, 110px) 20px;
}

.simple-page-card {
    width: min(1040px, 94vw);
    margin: 0 auto;
    background: #f5f5f5;
    color: #111;
    border-radius: 8px;
    padding: clamp(28px, 5vw, 54px);
    box-shadow: 0 18px 50px rgba(255,255,255,0.08);
}

.simple-page-card h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 8vw, 6rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.simple-page-card p {
    max-width: 760px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.simple-page-card a {
    color: inherit;
}

.cv-preview-frame {
    margin-top: 28px;
    border: 1px solid rgba(0,0,0,0.14);
    background: #fff;
    padding: clamp(10px, 2vw, 22px);
}

.simple-page-card .cv-foto {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}

.legal-simple-card {
    max-width: 850px;
}

/* PC: stabielere Windows-layout en titel-uitlijning */
.pc-titlebar {
    gap: 10px;
}

.pc-titlebar > span {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.window-controls {
    flex: 0 0 auto;
}

.file-grid {
    grid-template-columns: repeat(auto-fill, minmax(122px, 122px));
    justify-content: start;
    align-items: start;
    gap: 22px 28px;
}

.file-item {
    width: 122px;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 6px;
}

.file-thumb,
.file-music-icon {
    flex: 0 0 auto;
}

.file-name,
.file-item span:last-child {
    display: block;
    width: 100%;
    max-width: 118px;
    min-height: 2.4em;
    text-align: center;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.music-file-item .file-name {
    font-size: 0.92rem;
}

/* Windows Media Player-achtig venster */
.media-window {
    background: #050505;
    border-color: #0b397d;
}

.media-titlebar {
    background: linear-gradient(#2e2e2e, #4d4d4d 48%, #202020 49%, #111);
    border-bottom: 1px solid #000;
}

.wmp-shell {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #050505;
    color: #fff;
    font-family: Tahoma, Verdana, Arial, sans-serif;
}

.wmp-topbar {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    background: #070707;
    color: #fff;
    font-size: 0.86rem;
}

.wmp-view-icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

.wmp-screen {
    flex: 1;
    min-height: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 55% 46%, rgba(37, 105, 159, 0.78), rgba(8, 25, 40, 0.7) 34%, rgba(0,0,0,0.95) 78%),
        linear-gradient(140deg, #000, #0d3552 46%, #000);
    box-shadow: inset 0 0 90px rgba(0,0,0,0.9);
}

.wmp-note-card {
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(170, 210, 255, 0.45);
    background: rgba(100, 150, 190, 0.22);
    color: #c7e2ff;
    font-size: 8rem;
    text-shadow: 0 2px 0 #fff, 0 12px 25px rgba(0,0,0,0.6);
    box-shadow: inset 0 0 40px rgba(255,255,255,0.08), 0 16px 45px rgba(0,0,0,0.45);
}

.wmp-track-meta {
    position: absolute;
    left: 16px;
    top: 54px;
    z-index: 2;
    pointer-events: none;
    max-width: 55%;
}

.wmp-track-meta h2 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 1px 4px #000;
}

.wmp-track-meta p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 1px 4px #000;
}

.wmp-progress {
    height: 7px;
    margin: 0 12px;
    background: linear-gradient(#1a1a1a, #333);
    border: 1px solid #777;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.wmp-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3ac0ff, #c9f3ff);
}

.wmp-controls {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px 10px;
    background: linear-gradient(#090909, #1b1b1b);
}

.wmp-round,
.wmp-play {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: radial-gradient(circle at 40% 30%, #dff5ff, #4173b2 45%, #102d65 70%);
    color: #fff;
    cursor: pointer;
    text-shadow: 0 1px 2px #000;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 2px 8px rgba(0,0,0,0.7);
}

.wmp-round {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
}

.wmp-play {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    font-weight: 800;
}

.wmp-time {
    min-width: 48px;
    font-size: 0.82rem;
    color: #e5e5e5;
}

.wmp-volume-label {
    font-size: 0.74rem;
    opacity: 0.75;
    margin-left: 6px;
}

.wmp-volume {
    width: 86px;
}

.wmp-shell audio {
    display: none;
}

.wmp-shell .track-list {
    max-height: 128px;
    overflow: auto;
    display: grid;
    gap: 0;
    border-top: 1px solid #333;
    background: #151515;
}

.wmp-track-button {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #2f2f2f;
    background: #111;
    color: #f5f5f5;
    padding: 9px 12px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.wmp-track-button:hover,
.wmp-track-button.active {
    background: #273f68;
}

.wmp-track-button small {
    color: rgba(255,255,255,0.62);
    font-size: 0.76rem;
}

@media (max-width: 768px) {
    .contact-revert-main {
        min-height: 62vh;
        padding: 56px 16px;
    }

    .contact-revert-buttons {
        flex-direction: column;
    }

    .contact-revert-buttons a {
        width: 100%;
    }

    .simple-page-main {
        padding: 48px 16px;
    }

    .file-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .file-item {
        width: 100%;
    }

    .media-window.active {
        min-height: 560px;
    }

    .wmp-track-meta {
        position: static;
        max-width: none;
        padding: 12px;
        background: #050505;
    }

    .wmp-screen {
        min-height: 220px;
    }

    .wmp-note-card {
        width: 160px;
        height: 160px;
        font-size: 6rem;
    }

    .wmp-controls {
        flex-wrap: wrap;
    }

    .wmp-track-button {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}


/* Kleine WMP-fix: geen dubbele titel-look, nettere pause knop en klikbare progressbar */
.wmp-screen {
    position: relative;
}

.wmp-track-meta h2,
.wmp-track-meta p {
    line-height: 1.18;
}

button.wmp-progress {
    display: block;
    width: calc(100% - 24px);
    padding: 0;
    appearance: none;
}

.wmp-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.pause-bars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 18px;
    height: 22px;
}

.pause-bars i {
    display: block;
    width: 5px;
    height: 20px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* =========================================================
   MOBILE PATCH - Riccardo's PC beter bruikbaar op gsm
   Verandert alleen de pc-page, niet het hoofdportfolio.
   ========================================================= */
@media (max-width: 768px) {
    .pc-page {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .pc-desktop {
        min-height: 100dvh;
        height: auto;
        overflow: visible;
        padding: 14px 10px 68px;
    }

    .desktop-wallpaper-label {
        position: static;
        text-align: left;
        margin: 2px 0 14px;
        max-width: 100%;
    }

    .desktop-wallpaper-label h1 {
        font-size: clamp(2rem, 12vw, 3.1rem);
        letter-spacing: -0.06em;
    }

    .desktop-wallpaper-label p {
        font-size: 0.88rem;
        margin-top: 6px;
    }

    .desktop-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .desktop-icon {
        width: 100%;
        min-height: 72px;
        padding: 6px 4px;
        font-size: 0.74rem;
        line-height: 1.12;
    }

    .icon-symbol {
        font-size: 1.75rem;
    }

    .pc-window {
        display: none !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0;
        min-height: 0;
        max-width: 100%;
        margin: 0 0 14px;
        box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
    }

    .pc-window.active {
        display: flex !important;
    }

    .pc-titlebar {
        min-height: 32px;
        cursor: default;
        gap: 8px;
    }

    .pc-titlebar > span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .window-controls button {
        width: 28px;
        height: 26px;
        flex: 0 0 auto;
    }

    .explorer-toolbar {
        flex-wrap: wrap;
        gap: 6px;
        padding: 7px;
    }

    .xp-button {
        padding: 7px 10px;
        font-size: 0.86rem;
    }

    .explorer-layout {
        grid-template-columns: 1fr;
    }

    .explorer-sidebar {
        border-right: 0;
        border-bottom: 1px solid #888;
        padding: 10px;
    }

    .explorer-sidebar h3 {
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .explorer-sidebar button {
        padding: 7px;
        margin-bottom: 6px;
    }

    .explorer-sidebar p {
        display: none;
    }

    .explorer-content {
        padding: 10px;
        max-height: 52dvh;
        overflow: auto;
    }

    .file-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .file-item {
        width: 100%;
        padding: 8px 5px;
        font-size: 0.86rem;
        overflow-wrap: anywhere;
    }

    .file-thumb,
    .file-music-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 6px;
    }

    .photo-viewer-body {
        min-height: 42dvh;
        padding: 8px;
    }

    .photo-viewer-toolbar {
        gap: 8px;
        flex-wrap: wrap;
        padding: 8px;
    }

    .media-window.active {
        min-height: 0;
    }

    .media-window .wmp-shell {
        max-height: calc(100dvh - 132px);
        overflow: hidden;
    }

    .wmp-track-meta {
        position: static;
        max-width: none;
        padding: 10px 12px 6px;
        background: #050505;
    }

    .wmp-track-meta h2 {
        font-size: 0.95rem;
    }

    .wmp-track-meta p {
        font-size: 0.76rem;
    }

    .wmp-screen {
        flex: 0 0 170px;
        min-height: 170px;
    }

    .wmp-note-card {
        width: 118px;
        height: 118px;
        font-size: 4.6rem;
    }

    button.wmp-progress {
        width: calc(100% - 18px);
        margin: 0 9px;
    }

    .wmp-controls {
        min-height: 70px;
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px;
    }

    .wmp-round {
        width: 32px;
        height: 32px;
    }

    .wmp-play {
        width: 46px;
        height: 46px;
    }

    .wmp-time {
        min-width: 42px;
        font-size: 0.78rem;
        text-align: center;
    }

    .wmp-volume-label {
        display: none;
    }

    .wmp-volume {
        width: 90px;
    }

    .wmp-shell .track-list {
        max-height: 168px;
        overflow: auto;
    }

    .wmp-track-button {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 9px 10px;
    }

    .notepad-body {
        padding: 16px;
        font-size: 0.92rem;
    }

    .pc-taskbar {
        height: 46px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px 7px;
        gap: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .start-button {
        height: 34px;
        padding: 0 13px;
        flex: 0 0 auto;
    }

    .task-button {
        min-width: 112px;
        height: 34px;
        flex: 0 0 auto;
        font-size: 0.78rem;
    }

    .task-clock {
        flex: 0 0 auto;
        padding-left: 10px;
    }
}

@media (max-width: 380px) {
    .desktop-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wmp-volume {
        width: 74px;
    }
}
