@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&family=Handjet:wght@100..900&display=swap');

:root {
    --font-heading: "SUSE";
    --font-body: "Handjet";
    --aero-ease: ease-in-out;
    --aero-shimmer-speed: 8s;
    --aero-float-speed: 8s;
    --aero-glow-speed: 6s;
    --aero-title-speed: 4.5s;
    --aero-nav-speed: 7s;
    --aero-button-speed: 6.5s;
}

*,
*::before,
*::after {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 86% 18%, rgba(175, 239, 255, 0.58) 0%, rgba(175, 239, 255, 0) 30%),
        linear-gradient(180deg, #00a8ff 0%, #3ec7ff 28%, #9fe8ff 58%, #ecfbff 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-top: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-end;
    font-family: var(--font-body);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 44% at 50% 108%, rgba(89, 236, 129, 1) 0%, rgba(61, 196, 107, 0.98) 46%, rgba(61, 196, 107, 0) 66%),
        radial-gradient(100% 30% at 55% 102%, rgba(182, 255, 199, 0.78) 0%, rgba(182, 255, 199, 0) 62%),
        radial-gradient(circle at 80% 84%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 10%);
    opacity: 1;
    animation: aero-hill-breathe 10s var(--aero-ease) infinite;
    will-change: transform;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 11%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.58) 8%, rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 16% 16%, rgba(255, 242, 173, 0.82) 0%, rgba(255, 242, 173, 0) 16%),
        radial-gradient(ellipse 62% 14% at 52% 18%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 5%),
        radial-gradient(circle at 62% 32%, rgba(210, 248, 255, 0.55) 0%, rgba(210, 248, 255, 0) 6%),
        radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 4%);
    opacity: 1;
    mix-blend-mode: screen;
    animation: aero-shimmer var(--aero-shimmer-speed) linear infinite;
    will-change: transform;
}

@keyframes aero-shimmer {
    0% {
        transform: translateX(-1.5%);
    }

    50% {
        transform: translateX(1.5%);
    }

    100% {
        transform: translateX(-1.5%);
    }
}

@keyframes aero-hill-breathe {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.015);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes aero-card-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes aero-soft-glow {
    0% {
        box-shadow: 0 12px 24px rgba(16, 92, 166, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    50% {
        box-shadow: 0 16px 32px rgba(20, 116, 202, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    100% {
        box-shadow: 0 12px 24px rgba(16, 92, 166, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

@keyframes aero-sheen-slide {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes aero-bubble-drift {
    0% {
        transform: translateY(6px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }

    100% {
        transform: translateY(6px);
        opacity: 0.7;
    }
}

@keyframes aero-nav-glow {
    0% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(0, 94, 186, 0.36);
    }

    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 10px 28px rgba(0, 130, 220, 0.42);
    }

    100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(0, 94, 186, 0.36);
    }
}

@keyframes aero-title-pulse {
    0% {
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.95), 0 0 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.95), 0 0 12px rgba(208, 246, 255, 0.55);
    }

    100% {
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.95), 0 0 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes aero-subtitle-breathe {
    0% {
        opacity: 0.96;
        letter-spacing: 0;
    }

    50% {
        opacity: 1;
        letter-spacing: 0.4px;
    }

    100% {
        opacity: 0.96;
        letter-spacing: 0;
    }
}

@keyframes aero-button-sheen {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes aero-icon-glow {
    0% {
        filter: drop-shadow(0 2px 4px rgba(0, 92, 170, 0.22));
    }

    50% {
        filter: drop-shadow(0 4px 10px rgba(0, 154, 231, 0.4));
    }

    100% {
        filter: drop-shadow(0 2px 4px rgba(0, 92, 170, 0.22));
    }
}

@keyframes aero-widget-pulse {
    0% {
        box-shadow: 0 6px 14px rgba(11, 88, 166, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    50% {
        box-shadow: 0 9px 20px rgba(11, 129, 205, 0.42), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    100% {
        box-shadow: 0 6px 14px rgba(11, 88, 166, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}

@keyframes aero-button-breathe {
    0% {
        box-shadow: 0 6px 14px rgba(8, 87, 170, 0.28), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -6px 12px rgba(42, 162, 255, 0.24);
    }

    50% {
        box-shadow: 0 10px 20px rgba(8, 126, 205, 0.42), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -8px 14px rgba(42, 162, 255, 0.3);
    }

    100% {
        box-shadow: 0 6px 14px rgba(8, 87, 170, 0.28), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -6px 12px rgba(42, 162, 255, 0.24);
    }
}

@keyframes aero-tile-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes aero-tile-glow {
    0% {
        box-shadow: 0 6px 12px rgba(14, 86, 156, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.96);
        filter: saturate(1);
    }

    50% {
        box-shadow: 0 10px 20px rgba(18, 132, 209, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.98);
        filter: saturate(1.18);
    }

    100% {
        box-shadow: 0 6px 12px rgba(14, 86, 156, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.96);
        filter: saturate(1);
    }
}

@keyframes aero-section-fade {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.clock-text {
    font: bold 20px var(--font-body);
    margin: 0;
    display: block;
}

.bar1 {
    width: 100%;
    background-color: green;
    height: 20px;
    border-radius: 20px;
    font: bold 20px var(--font-body);
    text-align: center;
    animation: progress 1500ms ease-in 1;
}

.bar2 {
    width: 100%;
    background-color: rgb(255, 0, 0);
    height: 20px;
    border-radius: 20px;
    font: bold 20px var(--font-body);
    text-align: center;
}

.bar3 {
    width: 100%;
    background-color: rgb(0, 47, 255);
    height: 20px;
    border-radius: 20px;
    font: bold 20px var(--font-body);
    text-align: center;
}

.bar4 {
    width: 100%;
    background-color: rgb(221, 255, 0);
    height: 20px;
    border-radius: 20px;
    font: bold 20px var(--font-body);
    text-align: center;
}

.lijn1,
.lijn3,
.lijn6,
.lijn8,
.lijn10 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 6vw, 55px);
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.95);
    animation: aero-title-pulse var(--aero-title-speed) var(--aero-ease) infinite;
}

.lijn2,
.lijn4,
.lijn7,
.lijn9,
.lijn11 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3.6vw, 30px);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    font-style: oblique;
    color: #04192d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow-wrap: anywhere;
    animation: aero-subtitle-breathe 6s var(--aero-ease) infinite;
}

.lijn6 b,
.lijn7 b,
.lijn9 b,
.lijn11 b {
    font-weight: inherit;
}

.project1,
.project2,
[class^="xp"],
.techsdiv,
.progcontainer1,
.progcontainer2,
.prog,
.clock,
.navigatie,
.hamburger,
.menu-items {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.project1 {
    width: 100%;
    max-width: 800px;
    height: 150px;
    padding: 30px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    text-align: center;
    background-color: rgba(26, 110, 255, 0.667);
    border-radius: 25px;
}

.project2 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.4;
    width: 100%;
    max-width: 800px;
    min-height: 70px;
    height: auto;
    padding: 40px;
    border: 4px solid rgba(75, 153, 255, 0.8);
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(196, 236, 255, 0.56) 38%, rgba(92, 188, 246, 0.56) 100%);
    border-radius: 25px;
    border: 1px solid rgba(212, 242, 255, 0.95);
    box-shadow: 0 14px 28px rgba(18, 96, 170, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    animation: aero-card-float var(--aero-float-speed) var(--aero-ease) infinite;
    will-change: transform;
}

.project2::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0) 64%);
    transform: translateX(-120%);
    animation: aero-sheen-slide 5.5s linear infinite;
}

.project2 .grote-tekst {
    font-size: 24px;
    font-family: var(--font-heading)
}

.project2 .grotere-tekst {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: bold;
    border: none;
    background-color: transparent;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9);
}

.card-subtitle {
    font-family: var(--font-body);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.25;
    font-style: oblique;
    color: #04233d;
}

.card-meta {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    line-height: 1.3;
    color: #07314f;
}


.xp1 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.3vw, 25px);
    width: 500px;
    height: 50px;
    padding: 30px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    text-align: center;
    background-color: rgba(26, 110, 255, 0.667);
    border-radius: 25px;
}

.xp2 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.3vw, 25px);
    width: 500px;
    height: 50px;
    padding: 30px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    text-align: center;
    background-color: rgba(26, 110, 255, 0.667);
    border-radius: 25px;
}

.xp3 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.3vw, 25px);
    width: 500px;
    height: 50px;
    padding: 30px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    text-align: center;
    background-color: rgba(26, 110, 255, 0.667);
    border-radius: 25px;
}

.xp4 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.3vw, 25px);
    width: 500px;
    height: 50px;
    padding: 30px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    text-align: center;
    background-color: rgba(26, 110, 255, 0.667);
    border-radius: 25px;
}

[class^="xp"] {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.3vw, 25px);
    line-height: 1.35;
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 50px;
    padding: 40px;
    border: 5px solid rgb(0, 4, 255);
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(176, 227, 255, 0.54) 40%, rgba(74, 170, 236, 0.6) 100%);
    border: 1px solid rgba(210, 241, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 12px 24px rgba(16, 92, 166, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    animation: aero-soft-glow var(--aero-glow-speed) var(--aero-ease) infinite;
}

.foot {
    width: 330px;
    height: 20px;
    margin: auto;
    text-align: center;
    transition: transform .2s;
}

.foot:hover {
    transform: scale(1.1);
}

.icons-container {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    width: auto;
    position: absolute;
    right: 50px;
    bottom: 20px;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    transition: transform .2s;
    animation: aero-icon-glow 5s var(--aero-ease) infinite;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.github-icon,
.discord-icon {
    width: 50px;
    height: 50px;
}

.icon-wrapper .tooltiptext {
    font: 20px var(--font-heading);
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.icon-wrapper:hover .tooltiptext {
    visibility: visible;
}


.techs {
    width: fit-content;
    height: 50px;
    padding: 10px;
    border: 2px solid rgba(39, 135, 218, 0.95);
    margin: auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(206, 239, 255, 0.84) 46%, rgba(155, 214, 246, 0.9) 100%);
    box-shadow: 0 6px 12px rgba(14, 86, 156, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    animation: aero-tile-float 3.8s var(--aero-ease) infinite, aero-tile-glow 4.8s var(--aero-ease) infinite;
    will-change: transform, box-shadow, filter;
}

.techicon:nth-child(2n) .techs {
    animation-delay: 0.35s, 0.15s;
}

.techicon:nth-child(3n) .techs {
    animation-delay: 0.7s, 0.3s;
}

.techsdiv {
    width: 100%;
    max-width: 90%;
    height: auto;
    padding: 25px;
    border: 1px solid rgba(205, 240, 255, 0.96);
    margin: auto;
    margin-bottom: 70px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(186, 232, 255, 0.52) 40%, rgba(80, 178, 239, 0.58) 100%);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 18px 34px rgba(14, 88, 160, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -16px 26px rgba(43, 166, 235, 0.2);
    backdrop-filter: blur(2px);
    overflow: visible;
    animation: aero-card-float var(--aero-float-speed) var(--aero-ease) infinite;
    will-change: transform;
}

.techsdiv::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0) 66%),
        radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 6%),
        radial-gradient(circle at 32% 84%, rgba(212, 247, 255, 0.34) 0%, rgba(212, 247, 255, 0) 5.5%),
        radial-gradient(circle at 77% 80%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 5.5%);
    animation: aero-bubble-drift 9s var(--aero-ease) infinite;
    will-change: transform, opacity;
}

.techsdiv::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0.34) 49%, rgba(255, 255, 255, 0) 66%),
        radial-gradient(ellipse 70% 30% at 50% 0%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.8;
    transform: translateX(-120%);
    animation: aero-sheen-slide 6.5s linear infinite;
    will-change: transform;
}


.progcontainer1,
.progcontainer2 {
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}


.progress {
    box-sizing: content-box;
    height: 20px;
    margin: 60px 0 20px 0;
    background: #555;
    border-radius: 25px;
    padding: 10px;
    box-shadow: inset 0 -1px 1px rgba(30, 255, 0, 0.3);
    overflow: hidden;
}

[id$="Bar"] {
    border-radius: 20px !important;
    min-width: 30px;
}

.techicon,
.html {
    position: relative;
    display: inline-block;
    transition: transform .2s;
    margin: 5px;
    animation: aero-icon-glow 5.8s var(--aero-ease) infinite;
}

.techicon:hover,
.html:hover {
    transform: scale(1.1);
}

.techicon .tooltiptext,
.html .tooltiptext {
    font: 20px var(--font-heading);
    visibility: hidden;
    width: 150px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(191, 233, 255, 0.92) 100%);
    color: #042442;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -75px;
    border: 1px solid rgba(174, 224, 255, 0.95);
    box-shadow: 0 8px 16px rgba(14, 88, 160, 0.24);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    white-space: normal;
    z-index: 1200;
}

.techicon:hover .tooltiptext,
.html:hover .tooltiptext {
    visibility: visible;
}

.clock {
    pointer-events: none;
    width: 180px;
    max-width: 100%;
    height: auto;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(161, 222, 255, 0.95) 45%, rgba(43, 163, 244, 0.95) 100%);
    border: 1px solid rgba(193, 234, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(11, 88, 166, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    margin: 0;
    transition: all 0.3s ease;
    animation: aero-widget-pulse 6.4s var(--aero-ease) infinite;
}

.clock:hover {
    transform: scale(1.1);
    background: linear-gradient(180deg, rgba(231, 248, 255, 0.96) 0%, rgba(192, 233, 255, 0.86) 100%);
}

.clock.animate {
    transform: rotate(180deg) scale(0.8);
    opacity: 0.5;
}

.alinea {
    margin-bottom: 70px;
    padding: 30px 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 25px;
    animation: aero-section-fade 700ms ease-out both;
}


.proj1 {
    transition: transform .2s;
    margin-bottom: 60px;
}

.proj1:hover {
    transform: scale(0.9);
}

.prog {
    transition: transform .2s;
    width: 100%;
    max-width: 40%;
}

.prog:hover {
    transform: scale(0.9);
}

.techsdiv>div>img {
    border-radius: 25px;
}

.navigatie {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background:
        linear-gradient(180deg, rgba(245, 253, 255, 0.58) 0%, rgba(173, 229, 255, 0.46) 28%, rgba(18, 147, 255, 0.88) 100%);
    border: 1px solid rgba(220, 245, 255, 0.95);
    border-radius: 0;
    min-height: 92px;
    height: auto;
    padding: 10px clamp(8px, 2vw, 24px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 3vw, 44px);
    z-index: 9;
    margin: 0;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(0, 94, 186, 0.36);
    animation: aero-nav-glow var(--aero-nav-speed) var(--aero-ease) infinite;
}

.buttons {
    border: none;
    color: white;
    padding: clamp(10px, 1.2vw, 16px) clamp(14px, 2.6vw, 28px);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font: bolder clamp(18px, 2vw, 20px) var(--font-body);
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    background:
        linear-gradient(180deg, #ffffff 0%, #d4f3ff 32%, #7bd8ff 58%, #3dbbff 100%);
    background-size: 220% 220%;
    background-position: 0% 50%;
    color: #01203a;
    border: 1px solid rgba(166, 225, 255, 0.98);
    box-shadow: 0 6px 14px rgba(8, 87, 170, 0.28), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -6px 12px rgba(42, 162, 255, 0.24);
    animation: aero-button-sheen var(--aero-button-speed) linear infinite, aero-button-breathe 4.6s var(--aero-ease) infinite;
}

.buttons:hover {
    background: linear-gradient(180deg, #ffffff 0%, #e6f9ff 28%, #90ddff 58%, #4fc6ff 100%);
    color: #001a32;
    transform: scale(0.9);
}

.buttons1,
.buttons2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2.6vw, 34px);
    flex-wrap: wrap;
    width: 100%;
    max-width: 560px;
}

.copyright-footer {
    text-align: left;
    padding: 55px 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-top: 1px solid rgba(205, 238, 255, 0.92);
    background:
        linear-gradient(180deg, rgba(233, 249, 255, 0.35) 0%, rgba(60, 167, 245, 0.76) 34%, rgba(19, 94, 173, 0.96) 100%);
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 -8px 20px rgba(11, 74, 143, 0.34);
}

.copyright-footer p {
    font: bold 24px var(--font-heading);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0 20px;
}

.copyright-footer .icons-container {
    padding-right: 20px;
}

@media only screen and (max-width: 1200px) {

    .project1,
    .project2 {
        width: 100%;
        max-width: 90%;
        height: auto;
        min-height: 150px;
        padding: 30px;
        box-sizing: border-box;
    }

    .copyright-footer {
        text-align: left;
        padding: 85px 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        border-top: 1px solid rgba(205, 238, 255, 0.92);
        background:
            linear-gradient(180deg, rgba(233, 249, 255, 0.35) 0%, rgba(60, 167, 245, 0.76) 34%, rgba(19, 94, 173, 0.96) 100%);
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 -8px 20px rgba(11, 74, 143, 0.34);
    }

    [class^="xp"] {
        width: 100%;
        max-width: 90%;
        height: auto;
        min-height: 100px;
        padding: 30px;
        box-sizing: border-box;
    }

    .techsdiv {
        width: 100%;
        max-width: 95%;
        padding: 15px;
    }

    .progcontainer1,
    .progcontainer2 {
        flex-direction: column;
        gap: 30px;
    }

    .prog {
        max-width: 90%;
    }

    .navigatie {
        max-width: 100%;
        min-height: 84px;
        padding: 8px 12px;
    }

    main {
        max-width: 100%;
        padding: 0 10px;
    }

    .buttons {
        border: none;
        color: rgb(0, 0, 0);
        padding: 16px 32px;
        text-align: center;
        text-decoration: none;
        display: flex;
        margin: 4px 2px;
        transition-duration: 0.4s;
        cursor: pointer;
        font: bolder 20px var(--font-body);
        margin-left: auto;
        margin-right: auto;
        border-radius: 25px;
        flex-direction: column;
    }

    .buttons1,
    .buttons2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
}

@media only screen and ((min-width: 600px) and (max-width: 1200px)) {
    .navigatie {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background:
            linear-gradient(180deg, rgba(245, 253, 255, 0.58) 0%, rgba(173, 229, 255, 0.46) 28%, rgba(18, 147, 255, 0.88) 100%);
        border: 1px solid rgba(220, 245, 255, 0.95);
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        z-index: 9;
        border-radius: 0;
        box-sizing: border-box;
        margin: 0;
    }

    .buttons {
        border: none;
        color: white;
        padding: 16px 32px;
        text-align: center;
        text-decoration: none;
        display: flex;
        margin: 4px 2px;
        transition-duration: 0.4s;
        cursor: pointer;
        font: bolder 20px var(--font-body);
        margin-left: auto;
        margin-right: auto;
        border-radius: 25px;
        flex-direction: row;
        width: auto;
    }

    .buttons1,
    .buttons2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .navigatie .buttons {
        color: black;
    }
}

@media only screen and (max-width: 600px) {
    .navigatie {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        background:
            linear-gradient(180deg, rgba(245, 253, 255, 0.58) 0%, rgba(173, 229, 255, 0.46) 28%, rgba(18, 147, 255, 0.88) 100%);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        z-index: 999;
        box-sizing: border-box;
        margin: 0;
        overflow-x: hidden;
        max-width: 100%;
        border-radius: 0;
        display: none !important;
    }

    .buttons1,
    .buttons2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin: 5px 0;
        flex-wrap: wrap;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .buttons {
        background-color: #48cae4;
        color: black;
        border: none;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 16px;
        margin: 2px;
        white-space: nowrap;
        width: 120px;
        height: 40px;
        flex: none;
        box-sizing: border-box;
    }

    .alinea {
        max-width: 96%;
        margin-bottom: 45px;
        padding: 18px 0;
    }

    .techsdiv {
        max-width: 95%;
        padding: 10px;
    }

    .techicon {
        margin: 3px;
    }

    .techs {
        width: 80px;
        height: 80px;
    }

    body {
        padding-top: 20px;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .clock {
        width: min(170px, calc(100vw - 20px));
        bottom: 80px;
        right: 10px;
        font-size: 14px;
    }

    .clock-text {
        font-size: 16px;
    }

    .project1,
    .project2,
    [class^="xp"] {
        padding: 20px;
    }

    main {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1000px) {
    .navigatie {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 8px;
        display: flex !important;
        justify-content: center;
        gap: 15px;
        z-index: 999;
        box-sizing: border-box;
    }

    body {
        padding-top: 60px;
    }

    .techs {
        width: 90px;
        height: 90px;
    }
}

#menuIcon {
    transition: all 1s ease;
    width: 40px;
    height: 40px;
}

#menuIcon:hover {
    cursor: pointer;
}

.animate {
    transform: rotate(180deg) scale(0.8);
    opacity: 0.5;
}

main {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    position: relative;
    margin-top: auto;
    padding-top: clamp(120px, 16vh, 180px);
}

.extra-space {
    display: block;
    height: 20px;
}

#projects-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 70px;
}

#experiences-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 70px;
}

#skills-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 140px;
}

@media only screen and (max-width: 768px) {
    .prog {
        max-width: 90%;
        margin-bottom: 20px;
    }

    .progcontainer1,
    .progcontainer2 {
        gap: 30px;
    }
}

.interestingbuttona {
    text-decoration: none;
}

.hamburger-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.hamburger {
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(161, 222, 255, 0.95) 45%, rgba(43, 163, 244, 0.95) 100%);
    border: 1px solid rgba(193, 234, 255, 0.95);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    box-shadow: 0 6px 14px rgba(11, 88, 166, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: aero-widget-pulse 6.8s var(--aero-ease) infinite;
}

.hamburger span {
    color: white;
    font: bolder 20px var(--font-body);
    text-align: center;
}

.menu-items {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(217, 245, 255, 0.96) 0%, rgba(96, 190, 247, 0.92) 45%, rgba(35, 126, 214, 0.95) 100%);
    padding-top: 20px;
    transition: left 0.3s ease;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: 2px 0 14px rgba(8, 74, 140, 0.35);
    z-index: 1000;
}

.menu-items a {
    display: block;
    padding: 15px 25px;
    color: #012846;
    text-decoration: none;
    font: bolder 20px var(--font-body);
    transition: background-color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.menu-items a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-menu.active .menu-items {
    left: 0;
}

.hamburger-menu.active .hamburger {
    left: 270px;
}

@media only screen and (max-width: 1000px) {
    .hamburger-menu {
        display: block;
    }

    .navigatie {
        display: none !important;
    }

    main {
        max-width: 100%;
        padding: 0 10px;
        padding-top: 90px;
    }

    .copyright-footer {
        max-width: 100%;
    }

    body {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .hamburger-menu.active .hamburger {
        left: 205px;
    }

    .menu-items {
        width: 200px;
    }

    .hamburger {
        width: 60px;
        height: 60px;
    }

    #menuIcon {
        width: 50px;
        height: 50px;
    }
}

