/* Base route */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus-visible {
  outline: .5rem solid #ff0000;
  scale: 1.05;
  transition: 150ms scale;
}
html {
  hanging-punctuation: first last;
  color-scheme: light dark; /* optional */
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  text-rendering: optimizeSpeed;
}
ol:not([role="list"]), ul:not([role="list"]) {
  list-style-type: none;
}
a:not([role="inline-link"]) {
  text-decoration: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img:not(.frame img) {
  max-width: 100%;
  display: block;
}
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
      scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@font-face {
  font-family: "franchise";
  src:
    local("Franchise_Bold"),
    url("/franchise_bold.ttf") format("truetype")
}
body {
  font-family: system-ui, sans-serif;
  font-weight: 400;
}
.h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.nav-text, .h3, .p{
  font-family: 'franchise', impact, sans-serif;
  text-transform: uppercase;
}
.h3 {
  font-size: 1.5rem;
}
.p {
  font-size: 1rem;
}
:root{
    --link-border-color: black;
  }
/* Curtains Transition - Fixed to match your HTML structure */
/* Prevent flash - hide page content initially when transitioning */
body.transitioning {
    visibility: hidden;
}
#curtainsTransition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    pointer-events: none;
    display: none; /* Hidden by default */
    transform-style: preserve-3d;
    translate: 0 0 17px;
    --curtain-pattern: repeating-linear-gradient(90deg,
            #5a0000 0,
            #a00000 30px,
            #cc0000 40px,
            #720000 60px,
            #2d0000 80px,
            #420000 112px,
            #5a0000 120px,
            #a00000 124px,
            #a00000 132px,
            #5a0000 140px,
            #7b0000 164px,
            #a00000 175px,
            #a00000 180px,
            #a00000 200px,
            #7a0000 205px,
            #5a0000 220px);
    --custom-easing: cubic-bezier(0.140, 0.935, 0.240, 0.940);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#curtainsTransition.curtains-active {
    display: flex;
    pointer-events: all;
}
/* CSS-first approach - curtains start closed when active to prevent flash */
#curtainsTransition.curtains-active .curtain-left,
#curtainsTransition.curtains-active .curtain-right {
    transform: translate(0vw, 0vh); /* Start closed by default */
}
/* Curtain styling - no box shadow, extra height to prevent glitches */
.curtain-left {
    position: absolute;
    top: -10px; /* Start slightly above viewport */
    left: -1px;
    background-image: var(--curtain-pattern);
    width: 51vw;
    height: 110vh; /* Increased height to prevent bottom gaps */
    z-index: 5;
    clip-path: polygon(0% 100%,
            0% 0%,
            100% 0%,
            100% 50%,
            98% 57%,
            97% 63%,
            95% 68%,
            93% 74%,
            91% 79%,
            88% 83%,
            86% 86%,
            84% 89%,
            81% 94%,
            77% 96%,
            72% 99%,
            50% 100%);
    /* Default closed state */
    transform: translate(0vw, 0vh);
}
.curtain-right {
    position: absolute;
    top: -10px; /* Start slightly above viewport */
    right: -1vw;
    background-image: var(--curtain-pattern);
    width: 51vw;
    height: 110vh; /* Increased height to prevent bottom gaps */
    z-index: 5;
    clip-path: polygon(100% 100%,
            100% 0%,
            0% 0%, 0% 50%,
            2% 57%,
            3% 63%,
            5% 68%,
            7% 74%,
            9% 79%,
            12% 83%,
            14% 86%,
            16% 89%,
            19% 94%,
            23% 96%,
            28% 99%,
            50% 100%);
    /* Default closed state */
    transform: translate(0vw, 0vh);
}
.curtain-light {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
    z-index: 4;
    pointer-events: none;
}
/* Container state animations */
/* Closed state - curtains cover the screen */
#curtainsTransition.curtains-closed .curtain-left {
    transform: translate(0vw, 0vh);
}
#curtainsTransition.curtains-closed .curtain-right {
    transform: translate(0vw, 0vh);
}
/* Closing animation */
#curtainsTransition.curtains-closing .curtain-left {
    animation: curtain-left-close 2s var(--custom-easing) forwards;
}
#curtainsTransition.curtains-closing .curtain-right {
    animation: curtain-right-close 2s var(--custom-easing) forwards;
}
/* Opening animation */
#curtainsTransition.curtains-opening .curtain-left {
    animation: curtain-left-open 2s var(--custom-easing) forwards;
}
#curtainsTransition.curtains-opening .curtain-right {
    animation: curtain-right-open 2s var(--custom-easing) forwards;
}
/* Open state - curtains off screen */
#curtainsTransition.curtains-open .curtain-left {
    transform: translate(-52vw, -105vh);
}
#curtainsTransition.curtains-open .curtain-right {
    transform: translate(52vw, -105vh);
}
/* Keyframes - adjusted for better coverage */
@keyframes curtain-left-close {
    0% {
        transform: translate(-52vw, -105vh);
    }
    100% {
        transform: translate(0vw, 0vh);
    }
}
@keyframes curtain-right-close {
    0% {
        transform: translate(52vw, -105vh);
    }
    100% {
        transform: translate(0vw, 0vh);
    }
}
@keyframes curtain-left-open {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(-52vw, -105vh);
    }
}
@keyframes curtain-right-open {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(52vw, -105vh);
    }
}
/* Force hide default cursor everywhere */
*, *::before, *::after {
    cursor: none !important;
}
html, body {
    cursor: none !important;
}
/* Ensure no element can override */
a, button, input, textarea, select, 
.lights, .project-image-wrapper, .cannon-container, .hamburger-menu, .filter-btn, .search-input,
[role="button"], [tabindex] {
    cursor: none !important;
}
.cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  background-image: url("/images/cursor/hamer-Idle.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999999999 !important;
}
.hover-cursor {
  background-image: url("/images/cursor/hamer-hover.png");
}
.active-cursor {
  background-image: url("/images/cursor/hamer-active.png");
}
/* @import 'accesibility.css'; */
/* Home route */
@property --gradient-position {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* UTILITY CLASSES */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.break {
    display: block;
}
.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* GENERAL CLASSES */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* -=-=-=-=-=-=-=-=-=- TEXT -=-=-=-=-=-=-=-=-=- */
.nav-text {
    position: absolute;
    font-family: "franchise", impact, sans-serif;
    color: white;
    font-weight: 800;
    white-space: nowrap;
    font-size: 4rem;
    opacity: 0;
    scale: 0.6;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px #000);
    pointer-events: none;
}
/* -=-=-=-=-=-=-=-=-=- PULSE -=-=-=-=-=-=-=-=-=- */
.pulse {
    position: absolute;
    height: 1.25rem;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    transition: opacity 0.33s ease;
    pointer-events: none;
}
.pulse::before {
    position: absolute;
    content: "";
    height: 150%;
    border-radius: 50%;
    aspect-ratio: 1;
    outline: 1.5px white solid;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    animation: pulsing-animation 2s ease-out infinite;
    opacity: 0.5;
}
.pulse.delayed::before {
    animation: pulsing-animation 2s ease-out -1s infinite;
}
@keyframes pulsing-animation {
    0% {
        scale: 1;
        opacity: 1;
    }

    100% {
        scale: 2;
        opacity: 0;
    }
}
.logo-container:has(:hover) .pulse,
.logo-container:has(:focus-visible) .pulse {
    opacity: 0;
}
.prop-container:has(:hover) .pulse,
.prop-container:has(:focus-visible) .pulse {
    opacity: 0;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* SET UP */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.frame {
    position: relative;
    height: 100dvh;
    width: 100vw;
    background-color: black;

    perspective: 40em;
    perspective-origin: var(--value) center;
    transform-style: preserve-3d;
}
.frame * {
    transform-style: preserve-3d;
}
.frame>* {
    position: absolute;
}
.frame img {
    max-width: auto !important;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* FRAME PIECES */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.frame .top-left,
.frame .top-right,
.frame .bottom-left,
.frame .bottom-right,
.frame .audience,
.frame .repeating-wall-left,
.frame .repeating-wall-right,
.frame .repeating-cage,
.frame .repeating-floor,
.frame .repeating-roof,
.frame .moon-container {
    pointer-events: none;
    user-select: none;
}
/* TOP LEFT */
.frame .top-left {
    top: 0;
    left: 0;
    z-index: 10;
    height: 370px;
}
/* -=-=-=-=-=-=-=-=-=- BOTTOM LEFT -=-=-=-=-=-=-=-=-=- */
.frame .bottom-left {
    bottom: 0;
    left: 0;
    z-index: 10;
    height: 230px;
}
/* -=-=-=-=-=-=-=-=-=- LEFT WALL -=-=-=-=-=-=-=-=-=- */
.frame .repeating-wall-left {
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url(data:image/webp;base64,UklGRjgNAABXRUJQVlA4WAoAAAAQAAAA0gAAzwAAQUxQSDUAAAABN6CmbQOGP9reuzQiIn46BxQ1ksLQfeAJ/Cu6HyWi/xNAILM6CKcC8fff++/99/6bct5/DgBWUDgg3AwAAFBWAJ0BKtMA0AA+kUKaSaWjoiQo83sosBIJZ21/XGe0Ly9Kv8prrsCZAUpSTVRDkkF1EWHgd/Gg7iFQv4V1dA+8UDVOd9A50OyXMbb4PwOKt2SR4ZhnmPsp2B/RQb39oXTmBOD9ZR9zs9t05lD8w5EJIche4AAf1eIRBMm52GtuAc52A/Dgs5m+naeqV+H2uyZKHqmVWJ+koV9R2+qqmH8ThDDgHu9OXC17amq+zZkHNwvFKv3pSOcTytIkVz/wi9vENpZrkTSZVAQq1wQ+StT+9JpbyXushxUJoE/0MFExYdn9QC9HUS1eBCbpLeWqaHNVQLxT2s9yT1oth8d4cxw2stfxMAbSR9Oob7NSYljze3/ZI+HU0rbHAVjHyqv5SO3fTJbE92VmerI6lWmmLwbrf3+mBAEZ8AhGbL6f0uqqmPcZbBpGoA6s9WzCOE2fu4U1Vg4ESEqZunTawuMoHltxrUnWdGtwYeBRa80CLi+K0u2XmDhBFiNQTsAJmDdsVybzvW4rtBUme25euv7MXXyw/PW7YcEKT+vRlkjilo14Hy8xQel8JCGclFumBKZY7k1+Q9F5Jq8akoxcjcFwkRtN7ba3RQ9rpRM0R2zaqT+HKvGnYSgQIXqxIBrXq3OaAmQCzzGF5Ucp1Z7YMOx8SdwqkGpmMf6WpLWXsj48GzB+wT3dBwpRBiwB/uMo1DM2bp6nYv/26lbiptzonkMwBCtzzhqMNZ5R52VWwGI26l1wCB+WhTY75G0cuxD/5dWJ6JrhiBSLajQfVuPkLLJEAQ2BFeBFVthtqTOTpbfPHGoWp62aHPi5bGwgo0paTaNlEwcgnBsrUd4bM7PiC++DaerVM0GaLACTVSF/HGU/SlbQo9zOYdDkzsfu3fSR8m8daah0hqVok0EEL9jXI2b1H3OSeGkqe2GgZF1uAAD++0AE+aRxSoMCo1Sd4nZUp1qn7vaQWosAVpuvUy3fS0kuUDd2NbfoSeioErF2X54E9FP3Ug0/ib/VDPawsg4u9skYYosb1lcPJhnHDW68dU/p9VO9VbexK0YJMNJrNrGEonpCFgzcCPC6GBXoMeiWKeJFCUM/ZFayzoozfi3en7yAP/e6TqTaw1LLi/+q2IUQrPu6yBtxM2KkYfvwRxVz1VkfEI9M+M95cqOWK76iO1L/H5QQuXrv0Hy7KiCfpaCb9stVlpEwPturIbU9mKNkl0QRmU4DiHtSrkegtDPK8zl5NCZJCXM/ZoWO+XovErjgdXippAwA0w96lzmc8SCDV3RBEHV8lCS8Ef3il+eBt4f7d5oD31/NpFi3lAKWA5xS03H8rGyDKFKjqGGuIg5nPF5evha7qxcteUl0Irup49kGU9m28RDVLkvTor2+tKhyfU74mmHFEDclmaLvrD4ZClmTS7s/vekIea8G2Zb/6RdBNXpfW84kcE83kj/bgreDsNVXJtui5xq889IRFNxYKGp+rb6Z4fkaLm4RuZNtZIZDb4s5ImUETyjCNZ9XOjsDtlof1ICEV51k8IPqbh9hzrMuvuu6u41mE3Xja6FDbhgTfWyxPeL7bxTDdA5sys/RhBq1b7dH8HH0m+GZRCwjdofW/X6WjZVom5h/YS6o5y5j8KZxZM+3nqRt6eop+gIv5czsv+G0UTIoX+/cN+Nc2uq9cG/4gKqqkPEyRkfO+zHRQCCA+vCDTcDtIfminGthJmWuAvAOD0dfTLohDbSKnajrxMGoDUqbo2jiGnQnwRF9yv7w8qIUicFgUyNHDhObOGV3++RJCePaYdUDokDlBs0HZ5/QZSRzF0TrA3l0seVm/EaQRh3hfGcySTXZwPQnmsKs/cUS8oEAp7n/jT+tRZd80TF6B3MqzMEzKLcmTBLKyOjiu74AmBKcG9Pjgouz9JXXa9IaLrmZV1RiGw+d5Wln+EKRxbGFl+t9qft2YWHb3dEcOR9fczQ1fQ18Rvgah5VdU/JKTb+BUu7DoWQAyCLgYzn4uPSDhYlWsyid5aBXy3WeLpjMNy83xY3NalSWCx1fTrwm4QXRd11zfhAUVS2b1QFnCbDPV/Qyhln2iTvU28QIkqlbXyNuRGkhTrAQCtlyhs2apGaQ3FotjBSQP0xZM0a0+WUKMJtnjto+dm3VRTBn5gTUw4CdBf4O0Q7upUElLxKzwofebJTIMd1xdCVBk0sQkQcvyxIzITAVNEd2LOWj7vmW+FYCnw+tAch/9HJrgEW1hNOeR+IsRZb2eE7SArDp42rsgriBXLWKHWi74P622tO5SMCSxvipdEpdz2hjpO95wVYQJ5+qmuy8qUBrbEl+KMyEW5Mq1VhnIGuPMStjfxVitn4/HsNUQzGhAUOZR+XLQbgnJfok69tP5ocvk7KiDB1bslZhV2HhEnXk52i6ZxpcxISNLs6ecM0xYZkrPrEAREsQ+8izB7Updr6kgSugln6IBZvCZG6dyWRP6M4WJXBsB9WzygRE3Tp3ewaJH8eycUMEeqx29iBFZUc8mYFfGd4OvuQxWw5fvVxdeHBClnDMeoOo699AvHJAuiWYAbwaVaHeGJXzflLtgJuTmW/ectiYoSDoZ9xW0u6ueDH2KBtWVvzXhQk5ZhlXtK9oTQKezXUi2H6sd+hPWDYp8Sk9CIBXYOw6PLAyaVUogf0CtC/Sf0ctBX3mOAaWaTdxHc/lbVnKgl9Hh21Q0jTmmHpSBHB1gWLZs9vdMKQs0ImSmErI0M5rhJSF9dz4UrGqiGVytTCgofYiw06wpipO24oTILjUsR71S5eTXDYm/XAVlLb1CFxAjI0kEbRTMTQkhrXpTbuEgU26EYG6VhSEygOvUGaB1lpQh/bS5RyGL8aqAXk6thlwjVxxPg/4nudrS22TLwZ0Zrhp9fZjbJftSHmYneat4Ihe7UtHTYNK3mlk7v2qHKonw+nG50fyx23Oh39vn9yX1BBQhxNPjO8tMBW4daVcwNoYFa9n06lzpwbfTdPQ4M6ebWcxnWB3JzjpA7NmEE5gyNSDhh8dG9YfyCENtsBs6M7yzpXhOMcIP6orw7TWRW0yetNzXQBqpSIw/W+h9Svovp6U0HqRvsnV04C6N81HYlcEqOh5gv5KoLLEZd8cC3R22Dq7vCn9lwiYxr/AL4KwSj7oBx66UssJhKQFaFWyGaRhByP8cUksa0L9bXlk4pHKafsYM2kLVUkO1Xl13lcGOFd7zPznMqH14FvYajV+QiGDNi7GRfsLJ4Y/lr7VpovJpLi5SD7Qnfdy7FKij/5kKxp/qA0uuGGIb1Fl91JP71xiXziWKWi2N04WHQcpzJdFTMQ5Eunz05NayFwga7thC1WXlkUAnjhOeGs2dhChY62mmiVLCZczlYLJDQ/JaUg8CxhJu5pq5yw+KH0MXWhnc5BYQyQIJ4b8ZAgSmZwAl3blQe+kZkO5Ol/tYYTowiuPu5LLye3JAi2UJ+KY1Hj9ANDRG34TTuWWe91w+NpvYSajjqNsQ8nfF3ex+C4RhEod6gepbGycxB3Z+XncbueFpg33+VmN3T0qcZcEugryWLGuT2RXjjXlCHD8J0CgRTqFHzYbmy82qMEBcn0B6uWUdwYlGCrsPsVMj7aPMAg1EqNMoE1oC+vOJG0HcF0cCl7kDiYe5v126q+h7Lul3lWejwi/tW1TIiy9z3Vdy74RkxUGMsGnUwJbYA9ZtlQ1ezVy72UZraI/TR4ptqWHx9SluF3r2LI+/gpjSs/khOaxhWFMFdpPPKUm7YIVHVKNjGnctx0JAA7Y4G3UkpMX/WU2E7M+8EKSdGoz/zfdRU98Y8a3eGCUUFaENCz6MYQcuy1E99df0fQ3tesdkAMjUu8D0HHiX8Zhgj+a03c1NqjMrwgvGy2biq5cxrM/4T729NimRRii1wtRD4coGxJNAQQ5g/d634sbMu/PI7IErOA8Fg8fltYVVnalUubcWL+4gCQcO9rBPcfjqJBj3Qz+eQnafqBXUqBn08+jtq0AYyIQrHpgzMqfKwBP3vaQ9w6OLNfsey3IV/nRjqj/GfER3KpUiUOAo3DD8h6ZF3L1/WMOf0vXB7seuaJan6Bz5FSEYfKJnbW10Sl06R2WUJgWK3Sblf1mvZ9PSJSyi9ucd4dH+ex8hHkFn5IdE2y37+23zZaYW0cRosVYF6GVGLxaOvh0BQM9G+qZTWF56H+OyxqOumnD7SWpYaa2HA3bthQ5vFxLqWvP2UAxdpKZrPnBwWiB3S1DV2OJt92SN2GSdUFRS28jPO/77xBJgkOT9LzvSRndTrqIl8hwuIlKh0+L6QZIjUas9vzB/EC1rLWTf5i4qvafgRw47BZxuF6s8KBd4VwOXsZ/L6tzP0glHjhAWZs7PcPODCD87+62ECgDBsEw0xOhbtNdY0j2l/nFYqh/fhmtfTfQAAA=);
    background-repeat: repeat-y;
    background-size: 155px;
    height: 100%;
    width: 155px;
}
/* -=-=-=-=-=-=-=-=-=- TOP RIGHT -=-=-=-=-=-=-=-=-=- */
.frame .top-right {
    top: 0;
    right: 0;
    z-index: 10;
    height: 355px;
}
/* -=-=-=-=-=-=-=-=-=- BOTTOM RIGHT -=-=-=-=-=-=-=-=-=- */
.frame .bottom-right {
    bottom: 0;
    right: 0;
    z-index: 10;
    height: 240px;
}
/* -=-=-=-=-=-=-=-=-=- RIGHT WALL -=-=-=-=-=-=-=-=-=- */
.frame .repeating-wall-right {
    top: 0;
    right: 0;
    z-index: 9;
    background-image: url(/repeating-wall-right.webp);
    background-repeat: repeat-y;
    background-size: 155px;
    height: 100%;
    width: 155px;
}
/* -=-=-=-=-=-=-=-=-=- CAGE -=-=-=-=-=-=-=-=-=- */
.frame .repeating-cage {
    top: 80px;
    left: 0;
    z-index: 5;
    height: 270px;
    width: 100%;
    background-image: url(/repeating-cage.webp);
    background-repeat: repeat-x;
    background-position: -100% 0;
    background-size: 1150px;
}
/* -=-=-=-=-=-=-=-=-=- ROOF -=-=-=-=-=-=-=-=-=- */
.frame .repeating-roof {
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url(/repeating-roof.webp);
    background-repeat: repeat-x;
    background-position: 100% 0;
    width: 100%;
    height: 105px;
    background-size: 450px;
}
/* -=-=-=-=-=-=-=-=-=- AUDIENCE -=-=-=-=-=-=-=-=-=- */
.frame .audience {
    min-width: 100vw;
    height: 80%;
    bottom: 50px;
    left: 0;
}
.frame .audience img {
    max-width: 100%;
    display: block;
    height: 100%;
    margin-inline: auto;
    object-fit: cover;
    object-position: center;
}
/* -=-=-=-=-=-=-=-=-=- FLOOR -=-=-=-=-=-=-=-=-=- */
.frame .repeating-floor {
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: url(/repeating-floor.webp);
    background-repeat: repeat;
    width: 100%;
    height: 80px;
}
/* -=-=-=-=-=-=-=-=-=- PROPS -=-=-=-=-=-=-=-=-=- */
.frame .prop-container {
    position: absolute;
    bottom: 10px;
    right: 100px;
    z-index: 10;
}
.frame .prop-container .nav-text {
    top: 30%;
    left: 50%;
    text-align: right;
}
.frame .prop-container:hover .nav-text,
.frame .prop-container:focus-visible .nav-text {
    top: 20%;
    opacity: 1;
    scale: 1;
    left: 35%;
    translate: -50%;
}
.frame .prop-container .props:hover,
.frame .prop-container .props:focus-visible {
    filter: url("#border-text");
}
.frame .prop-container .prop-shadows {
    position: absolute;
    bottom: -35px;
    right: -210px;
}
.frame .prop-container .pulse {
    top: 50%;
    right: 40%;
}
/* -=-=-=-=-=-=-=-=-=- LOGO -=-=-=-=-=-=-=-=-=- */
.frame .logo-container {
    top: 0;
    left: 300px;
    z-index: 10;
    height: 600px;
    width: 200px;
}
.frame .logo-container .hanging-sign {
    height: 100%;
    width: 100%;
}
.frame .hanging-sign:hover,
.frame .hanging-sign:focus-visible {
    filter: url("#border-text");
}
.frame .logo-container .hanging-sign .logo {
    position: absolute;
    width: 100%;
    z-index: 2;
    bottom: 0;
    left: 0;
}
.frame .logo-container .hanging-sign .logo .gradient {
    position: absolute;

    background: linear-gradient(145deg,
            rgba(0, 0, 0, 0) 45%,
            rgba(255, 255, 255, 1) 45%,
            rgba(255, 255, 255, 1) 55%,
            rgba(0, 0, 0, 0) 55%);
    background-size: 400%;
    background-position: var(--gradient-position);
    animation: gradient-animation 5s ease infinite;

    mask: url("/hanging-logo.webp");
    mask-position: center;
    mask-mode: alpha;
    mask-size: contain;

    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    mix-blend-mode: overlay;
}
@keyframes gradient-animation {
    0% {
        --gradient-position: 0%;
    }

    30% {
        --gradient-position: 100%;
    }
}
.frame .logo-container .hanging-sign .logo img {
    width: 100%;
}
.frame .logo-container .hanging-sign .cable {
    position: absolute;
    z-index: 2;
    width: 2px;
    height: 80%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(176, 176, 176, 1) 100%);
}
.frame .logo-container .hanging-sign .cable:nth-of-type(1) {
    left: 20%;
}
.frame .logo-container .hanging-sign .cable:nth-of-type(2) {
    left: 80%;
}
.frame .logo-container .nav-text {
    bottom: 11%;
    right: 0;
    text-align: left;
}
.frame .logo-container:hover .nav-text,
.frame .logo-container:focus-visible .nav-text {
    bottom: 11%;
    right: -155px;
    opacity: 1;
    scale: 1;
}
.frame .logo-container .pulse {
    bottom: 15%;
    left: 50%;
    translate: -50% -50%;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* LAYER DEPTH */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.layer-1 {
    translate: 0 0 16px;
}
.layer-2 {
    translate: 0 0 12px;
}
.layer-3 {
    translate: 0 0 5px;
}
@media (max-width: 1513px) {
    /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
    /* FRAME PIECES */
    /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

    /* TOP LEFT */
    .frame .top-left {
        height: calc(370px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- BOTTOM LEFT -=-=-=-=-=-=-=-=-=- */
    .frame .bottom-left {
        height: calc(230px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- LEFT WALL -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-wall-left {
        background-size: calc(155px / 1.2);
        width: calc(155px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- TOP RIGHT -=-=-=-=-=-=-=-=-=- */
    .frame .top-right {
        height: calc(370px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- BOTTOM RIGHT -=-=-=-=-=-=-=-=-=- */
    .frame .bottom-right {
        height: calc(240px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- RIGHT WALL -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-wall-right {
        background-size: calc(155px / 1.2);
        width: calc(155px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- CAGE -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-cage {
        top: calc(80px / 1.2);
        background-size: calc(1150px / 1.2);
        height: calc(300px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- ROOF -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-roof {
        height: calc(105px / 1.2);
        background-size: calc(450px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- FLOOR -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-floor {
        height: calc(80px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- PROPS -=-=-=-=-=-=-=-=-=- */
    .frame .prop-container .props {
        width: 600px;
        right: 0;
        bottom: 0;
    }

    .frame .prop-container .prop-shadows {
        position: absolute;
        width: 740px;
        right: -180px;
        bottom: -30px
    }


    /* -=-=-=-=-=-=-=-=-=- LOGO -=-=-=-=-=-=-=-=-=- */
    .frame .logo-container {
        top: 0;
        left: 150px;
        z-index: 100;
        height: 450px;
        width: 200px;
    }

    .frame .logo-container .pulse {
        bottom: 20%;
        left: 50%;
        translate: -50% -50%;
    }

}
@media (max-width: 800px) {
    /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
    /* FRAME PIECES */
    /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

    /* TOP LEFT */
    .frame .top-left {
        left: -40px;
        height: calc(370px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- BOTTOM LEFT -=-=-=-=-=-=-=-=-=- */
    .frame .bottom-left {
        left: -40px;
        height: calc(230px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- LEFT WALL -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-wall-left {
        left: -40px;
        background-size: calc(155px / 2);
        width: calc(155px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- TOP RIGHT -=-=-=-=-=-=-=-=-=- */
    .frame .top-right {
        right: -40px;
        height: calc(370px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- BOTTOM RIGHT -=-=-=-=-=-=-=-=-=- */
    .frame .bottom-right {
        right: -40px;
        height: calc(240px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- RIGHT WALL -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-wall-right {
        right: -40px;
        background-size: calc(155px / 2);
        width: calc(155px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- CAGE -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-cage {
        top: calc(80px / 2);
        background-size: calc(1150px / 2);
        height: calc(300px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- ROOF -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-roof {
        height: calc(105px / 2);
        background-size: calc(450px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- AUDIENCE -=-=-=-=-=-=-=-=-=- */
    .frame .audience {
        min-width: 100vw;
        height: 80%;
        bottom: 30px;
        left: 0;
    }

    .frame .audience img {
        height: 90%;
    }

    /* -=-=-=-=-=-=-=-=-=- FLOOR -=-=-=-=-=-=-=-=-=- */
    .frame .repeating-floor {
        height: calc(80px / 2);
    }

    /* -=-=-=-=-=-=-=-=-=- PROPS -=-=-=-=-=-=-=-=-=- */
    .frame .prop-container {
        bottom: 10px;
    }

    .frame .prop-container .props {
        width: calc(500px / 1.2);
    }

    .frame .prop-container .prop-shadows {
        width: calc(660px / 1.2);
        right: calc(-180px / 1.2);
        bottom: calc(-30px / 1.2);
    }

    /* -=-=-=-=-=-=-=-=-=- CANNON + MOON -=-=-=-=-=-=-=-=-=- */

    .frame .cannon-container {
        display: none !important;
    }

    .frame .moon-container {
        display: none !important;
    }

    /* -=-=-=-=-=-=-=-=-=- LOGO -=-=-=-=-=-=-=-=-=- */
    .frame .logo-container {
        top: 0;
        left: 150px;
        z-index: 100;
        height: 400px;
        width: 150px;
    }

    .frame .logo-container .hanging-sign .cable {
        position: absolute;
        z-index: 2;
        width: 2px;
        height: 80%;
        background: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 1) 50%,
                rgba(176, 176, 176, 1) 100%);
    }

    .frame .logo-container:hover .nav-text,
    .frame .logo-container:focus-visible .nav-text {
        bottom: 8%;
        right: -150px;
        opacity: 1;
        scale: 1;
    }


    .frame .logo-container .pulse {
        bottom: 17%;
        left: 50%;
        translate: -50% -50%;
    }
}
.theatre {
  position: relative;
  background: black;
  height: 30dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;

  border-top: 16px solid black;
  border-bottom: 16px solid black;

  .scroller {
    width: 100vw;
    height: 100%;
  }

  .scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    padding-block: 0; /* remove extra spacing */
  }

  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    animation: scroll var(--_animation-duration, 10s)
      var(--_animation-direction, forwards) linear infinite;
  }

  .scroller__inner img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
  }

  /* Animation Speeds */
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }

  .scroller[data-speed="slow"] {
    --_animation-duration: 30s;
  }

  .scroller[data-speed="faster"] {
    --_animation-duration: 10s;
  }

  /* Scroll Direction */
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }

  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
}
.theatre > div {
  flex: 1;
  overflow: hidden;
}
.theatre-row-2 {
  margin-top: -1em;
  transform: scale(2);
}
.theatre-row-3 {
  margin-top: -1em;
  transform: scale(2.5);
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.cartoon-maarten {
  position: absolute;
  top: 0;
  left: 25%;
  height: 150%;
  width: auto;

  opacity: 0;
  transform: translateY(50%) scale(0.6) rotate(0deg);
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
}
.theatre:hover .cartoon-maarten {
  opacity: 1;
  transform: translateY(0%) scale(1) rotate(-15deg);
}
.scroller__inner img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none; /* Optional: also prevents any mouse interactions */
}
/* Or if you still want hover effects but not dragging: */
.scroller__inner img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
}
@view-transition {
  navigation: auto;
}
.wrapper-preloader {
    transform-style: preserve-3d;
    translate: 0 0 17px;
    --curtain-pattern: repeating-linear-gradient(90deg,
            #5a0000 0,
            #a00000 30px,
            #cc0000 40px,
            #720000 60px,
            #2d0000 80px,
            #420000 112px,
            #5a0000 120px,
            #a00000 124px,
            #a00000 132px,
            #5a0000 140px,
            #7b0000 164px,
            #a00000 175px,
            #a00000 180px,
            #a00000 200px,
            #7a0000 205px,
            #5a0000 220px);
    --custom-easing: cubic-bezier(0.140, 0.935, 0.240, 0.940);
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent;
    display: none;
    visibility: hidden;
    opacity: 0;
}
/* Show preloader when enabled */
body .wrapper-preloader.preloader-enabled {
    display: flex;
    visibility: visible;
    opacity: 1;
}
/* Hide preloader when completed */
body .wrapper-preloader.preloader-completed {
    display: none;
    visibility: hidden;
    opacity: 0;
}
.curtain-left {
    position: absolute;
    top: 0;
    left: -1px;
    background-image: var(--curtain-pattern);
    box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.5);
    width: 51vw;
    height: 200vh;
    z-index: 5;
    clip-path: polygon(0% 100%,
            0% 0%,
            100% 0%,
            100% 50%,
            98% 57%,
            97% 63%,
            95% 68%,
            93% 74%,
            91% 79%,
            88% 83%,
            86% 86%,
            84% 89%,
            81% 94%,
            77% 96%,
            72% 99%,
            50% 100%);
}
.curtain-right {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: -1vw;
    background-image: var(--curtain-pattern);
    width: 51vw;
    height: 200vh;
    z-index: 5;
    clip-path: polygon(100% 100%,
            100% 0%,
            0% 0%, 0% 50%,
            2% 57%,
            3% 63%,
            5% 68%,
            7% 74%,
            9% 79%,
            12% 83%,
            14% 86%,
            16% 89%,
            19% 94%,
            23% 96%,
            28% 99%,
            50% 100%);
}
/* Peter container */
.peter-container {
    top: 50%;
    left: 50%;
    position: absolute;
    width: 80vmin;
    aspect-ratio: 1 / 1.4;
    transform: translate(-50%, -50%) scale(0.4);
    transform-origin: center;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.peter-animation {
    animation: fade-in 1s ease-out 300ms forwards;
}
@keyframes fade-in {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.4);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
}
.peter-container *,
.eye-white,
.eye-yellow {
    position: absolute;
}
.forehead {
    width: 100%;
    top: 0;
    z-index: 2;
}
.bottomhead {
    width: 64%;
    bottom: 4.5%;
    left: 14.5%;
}
.peter-eye-left,
.peter-eye-right {
    width: 20%;
    height: 5%;
    top: 47%;
}
.peter-eye-left {
    left: 25%;
}
.peter-eye-right {
    right: 25%;
}
.eye-white {
    width: 100%;
    z-index: 0;
}
.eye-yellow {
    right: 30%;
    width: 35%;
    z-index: 1;
}
.peter-eye-left img:last-child,
.peter-eye-right img:last-child {
    height: 100%;
}
.curtain-light {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
    z-index: 4;
    pointer-events: none;
}
.none {
    display: none;
}
/* Curtain animations */
.curtain-left-animation-peak {
    animation: curtain-left-peak 2s var(--custom-easing) forwards;
}
@keyframes curtain-left-peak {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(-2vw, 0vh);
    }
}
.curtain-right-animation-peak {
    animation: curtain-right-peak 2s var(--custom-easing) forwards;
}
@keyframes curtain-right-peak {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(2vw, 0vh);
    }
}
.curtain-left-animation-open {
    animation: curtain-left-open 2s var(--custom-easing) forwards;
}
@keyframes curtain-left-open {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(-51vw, -100vh);
    }
}
.curtain-right-animation-open {
    animation: curtain-right-open 2s var(--custom-easing) forwards;
}
@keyframes curtain-right-open {
    0% {
        transform: translate(0vw, 0vh);
    }
    100% {
        transform: translate(51vw, -100vh);
    }
}
.curtain-left-animation-close {
    animation: curtain-left-close 1s var(--custom-easing) forwards;
}
@keyframes curtain-left-close {
    0% {
        transform: translate(-50vw, -100vh);
    }
    100% {
        transform: translate(0vw, 0vh);
    }
}
.curtain-right-animation-close {
    animation: curtain-right-close 1s var(--custom-easing) forwards;
}
@keyframes curtain-right-close {
    0% {
        transform: translate(50vw, -100vh);
    }
    100% {
        transform: translate(0vw, 0vh);
    }
}
/* Button styling */
#enterSite:disabled {
    --ticket-color-border: #3a3a3a;
    --ticket-color-card: #606060;
    --ticket-color-text: #111111; 
}
#enterSite {
    --ticket-color-border: #B89300;
    --ticket-color-card: #ffca3a;
    --ticket-color-text: #524100; 
    --hapje: .5rem;
    --border: .3em;
    --padding: 1rem 1.5rem;
    
    position: absolute;
    top: 80vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    
    text-transform: uppercase;
    z-index: 6;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ticket-color-text);
    padding: var(--padding);
    transform-origin: bottom center;
    transition: transform 0.3s ease;
    background: transparent;
    background-image:
        linear-gradient(var(--ticket-color-border) var(--border), transparent 0 calc(100% - var(--border)), var(--ticket-color-border) 0),
        linear-gradient(90deg, var(--ticket-color-border) var(--border), transparent 0 calc(100% - var(--border)), var(--ticket-color-border) 0),
        radial-gradient(circle at 0 0, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
        radial-gradient(circle at 100% 0, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
        radial-gradient(circle at 100% 100%, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
        radial-gradient(circle at 0 100%, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0);
    
    background-size:
        calc(100% - 2 * var(--hapje)) 100%,
        100% calc(100% - 2 * var(--hapje)),
        51% 51%,
        51% 51%,
        51% 51%,
        51% 51%;
    background-repeat: no-repeat;
    background-position:
        center top,
        left center,
        left top,
        right top,
        right bottom,
        left bottom;
}
/* No body styling - removed completely */
/* .container{
padding: 0;
margin: 0;} */
#rails {
    --lightzindex: 1;
    --beamzindex: 2;
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    top: 300px ;
    left: 0;
    width: 100vw;
    height: 50px;
    background-color: transparent;
    z-index: 3;
}
.lights {
    --base-rotate: 0deg;
    /* doet niet zoveel*/
    position: relative;
    display: none;
    width: fit-content;

}
.lights:nth-child(4),
.lights:nth-child(5) {
    display: block;
}
.lights img {
    position: relative;
    z-index: var(--lightzindex);
}
.lights:hover {
    animation: wiggle 2s infinite;
}
.beam {
    display: none;
    transform-origin: top;
    transform: perspective(100px) rotateX(10deg);
    position: absolute;
    top: 3.9em;
    width: 100%;
    height: 80vh;
    background: linear-gradient(to bottom,
            rgba(12, 232, 170, 0.5) 0%,
            rgba(255, 213, 0, 0) 100%);
    mix-blend-mode: darken;
    filter: blur(20px);
    pointer-events: none;
    z-index: var(--beamzindex);
}
.beam.active {
    display: block;
    animation: beamPulse 1.5s ease-in-out infinite;

}
.lights:nth-child(1) {
    --base-rotate: -20deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(2) {
    --base-rotate: -15deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(3) {
    --base-rotate: -10deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(4) {
    --base-rotate: -5deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(5) {
    --base-rotate: 5deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(6) {
    --base-rotate: 10deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(7) {
    --base-rotate: 15deg;
    transform: rotate(var(--base-rotate));
}
.lights:nth-child(8) {
    --base-rotate: 20deg;
    transform: rotate(var(--base-rotate));
}
.lights.malfunction {
    animation: fallDown 1.2s ease forwards;
    transform-origin: top center;
}
@keyframes fallDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(90vh);
        opacity: 0;
    }
}
@keyframes wiggle {
    0%,
    100% {
        transform: rotate(var(--base-rotate));
    }
    25% {
        transform: rotate(calc(var(--base-rotate) + 5deg));
    }
    75% {
        transform: rotate(calc(var(--base-rotate) - 5deg));
    }
}
@keyframes beamPulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.6;
    }
}
@media (min-width: 960px) {

    .lights:nth-child(3),
    .lights:nth-child(6) {
        display: block;
    }
}
@media (min-width: 1280px) {

    .lights:nth-child(2),
    .lights:nth-child(7) {
        display: block;
    }
}
@media (min-width: 1440px) {

    .lights:nth-child(1),
    .lights:nth-child(8) {
        display: block;
    }
}
@media (max-width: 1513px) {
    #rails {
        top: 245px;
    }
}
@media (max-width: 800px) {

    #rails {
        top: 145px ;
    }
}
/* -=-=-=-=-=-=-=-=-=- CANNON -=-=-=-=-=-=-=-=-=- */
.frame .cannon-container {
    position: absolute;
    bottom: -30px;
    left: 100px;
    z-index: 100;
}
.frame .cannon-container .cannon {
    /* niks */
}
.frame .cannon-container .cannon-shadow {
    position: absolute;
    bottom: -15px;
    right: 10px;
}
.flash {
    height: 100vh;
    width: 100vw;
    position: absolute;
    inset: 0;
    background: white;
    pointer-events: none;
    opacity: 0;
    z-index: 99999 !important;
}
.flash-fx {
    animation: flash 0.15s ease-in-out;
}
.shake-fx {
    animation: shake 0.5s linear;
}
@keyframes flash {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
@keyframes shake {
    0% {
        transform: translate(0px, 0px);
    }

    5% {
        transform: translate(8px, -10px);
    }

    10% {
        transform: translate(-12px, 15px);
    }

    15% {
        transform: translate(14px, 8px);
    }

    20% {
        transform: translate(-18px, -12px);
    }

    25% {
        transform: translate(6px, 10px);
    }

    30% {
        transform: translate(-16px, -20px);
    }

    35% {
        transform: translate(12px, -8px);
    }

    40% {
        transform: translate(-10px, 18px);
    }

    45% {
        transform: translate(8px, -22px);
    }

    50% {
        transform: translate(20px, 0px);
    }

    55% {
        transform: translate(-22px, 14px);
    }

    60% {
        transform: translate(6px, -18px);
    }

    65% {
        transform: translate(-18px, 16px);
    }

    70% {
        transform: translate(10px, -12px);
    }

    75% {
        transform: translate(-24px, 18px);
    }

    80% {
        transform: translate(16px, 0px);
    }

    85% {
        transform: translate(-14px, -20px);
    }

    90% {
        transform: translate(12px, 18px);
    }

    95% {
        transform: translate(-10px, -6px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}
@media (max-width: 1513px) {

    .frame .cannon-container .cannon {
        width: 425px;
    }

    .frame .cannon-container .cannon-shadow {
        width: 520px;
        bottom: -12px;
        right: 16px;
    }

}
/* -=-=-=-=-=-=-=-=-=- MOON -=-=-=-=-=-=-=-=-=- */
.frame .moon-container {
    --swing-intensity: 5deg;

    top: 0;
    right: 20%;
    z-index: 5;
    height: 650px;
    width: 350px;


    transform-origin: top;
    animation: swing 7.5s infinite ease-in-out;
}
@keyframes swing {
    0% {
        rotate: var(--swing-intensity);
    }

    50% {
        rotate: calc(var(--swing-intensity) * -1);
    }

    100% {
        rotate: var(--swing-intensity);
    }
}
@keyframes anti-swing {
    0% {
        --angle: calc(180deg - var(--swing-intensity));
    }

    50% {
        --angle: calc(180deg + var(--swing-intensity));
    }

    100% {
        --angle: calc(180deg - var(--swing-intensity));
    }
}
.frame .moon-container .moon {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.frame .moon-container .moon img {
    width: 100%;
}
@property --angle {
    syntax: "<angle>";
    initial-value: 180deg;
    inherits: true;
}
.frame .moon-container .moon .moon-gradient {
    top: -1px;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: linear-gradient(var(--angle, 180deg), black 30%, #0000 40%);
    opacity: .8;

    animation: anti-swing 7.5s infinite ease-in-out;

    mask: url('/moon.png');
    mask-position: center;
    mask-mode: alpha;
    mask-size: contain;

}
.frame .moon-container .cable {
    position: absolute;
    height: 40%;
    width: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(176, 176, 176, 1) 100%);
}
.frame .moon-container .cable:nth-of-type(1) {
    left: 100px;
}
.frame .moon-container .cable:nth-of-type(2) {
    right: 100px;
    height: 45%;
}
@media (max-width: 1513px) {

    /* -=-=-=-=-=-=-=-=-=- MOON -=-=-=-=-=-=-=-=-=- */
    .frame .moon-container {
        height: 550px;
    }

    .frame .moon-container .moon {
        width: 300px;
    }

}
/* Projects Route */
/* ====================================
   PROJECT GRID SYSTEM CSS
   ==================================== */
/* Container and Base Grid */
.container {
  min-height: 100dvh;


  nav {
    display: flex;
    flex-direction: row;
    background-color: #212121;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
    height: 8rem;
    position: relative;
    transition: all 0.3s ease;

    > .logo-element {
      flex: 0 0 auto;
      transition: all 0.3s ease;

      a img {
        height: 100%;
        width: auto;
      }
    }

    > .nav-content {
      display: flex;
      flex-direction: row;
      transition: all 0.3s ease;
      align-items: center;
      gap: 2rem;
      flex: 1 1 auto;
      justify-content: flex-end;
      max-width: none;
      overflow: visible;
    }
  }
}
/* ====================================
   HAMBURGER MENU BUTTON
   ==================================== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1001;
}
.hamburger-menu span {
  width: 2rem;
  height: 0.25rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.hamburger-menu.open span:first-child {
  transform: rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}
/* ====================================
   MOBILE OVERLAY MENU
   ==================================== */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(33, 33, 33, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}
.mobile-overlay.open {
  right: 0;
}
/* Body overlay for mobile menu */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-component {
  flex-shrink: 0;
}
/* When search is expanded, change nav layout */
.search-expanded nav {
  justify-content: flex-end;
}
/* Optional: Add smooth transitions when elements are hidden by JS */
.logo-element,
.category-filter {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
/* Optional: Add a class for when search is expanded (controlled by JS) */
.search-expanded .logo-element,
.search-expanded .category-filter {
  opacity: 0;
  transform: scale(0.8);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #222;
}
/* Main Projects Grid */
.projects-grid {
  --gap-size: .6em;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: row dense;
  width: calc(100% - (var(--gap-size) * 2));
  /* min-height: 100vh; */
  height: auto;
  gap: var(--gap-size);
  background-color: black;
  padding-bottom: 2rem;
  transition: min-height 0.3s ease;
  box-sizing: border-box;
}
/* ====================================
   BREAK GLASS COMPONENT
   ==================================== */
.break-glass-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
  grid-row: span 1;
}
.break-glass-card .sign {
  padding: 20px 40px;
  background-color: #ff4444;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  user-select: none;
  z-index: 10;
  position: relative;
  transition: transform 0.3s ease;
  text-transform: uppercase;
  font-family: Raleway, sans-serif;
}
.break-glass-card .sign.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
  75% {
    transform: translate(-5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.break-glass-card .broken-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://gallery.yopriceville.com/downloadfullsize/send/18517")
    center center no-repeat;
  background-size: cover;
  pointer-events: none;
  display: none;
  z-index: 5;
}
.break-glass-card .broken-glass.active {
  display: block;
}
/* ====================================
   FULL WIDTH COMPONENTS
   ==================================== */
.full-width-component {
  grid-column: 1 / -1;
  grid-row: span 1;
  min-height: 200px;
  margin: 1rem 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  grid-column-start: 1;
  grid-column-end: -1;
  width: 100%;
  box-sizing: border-box;
}
.full-width-content {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: Raleway, sans-serif;
  position: relative;
  box-sizing: border-box;
}
.full-width-active {
  display: block;
  clear: both;
}
/* ====================================
   GRID ANIMATIONS
   ==================================== */
.project-card,
.break-glass-card,
.square {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-card:nth-child(1) {
  animation-delay: 0.1s;
}
.project-card:nth-child(2) {
  animation-delay: 0.2s;
}
.project-card:nth-child(3) {
  animation-delay: 0.3s;
}
.project-card:nth-child(4) {
  animation-delay: 0.4s;
}
.project-card:nth-child(5) {
  animation-delay: 0.5s;
}
.project-card:nth-child(n + 6) {
  animation-delay: 0.6s;
}
.full-width-component {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
/* Desktop - perfect state */
@media (min-width: 1025px) {
  .hamburger-menu {
    display: none;
  }

  .mobile-overlay {
    display: none;
  }
}
/* Tablet/Medium screens - scaled down elements */
@media (max-width: 1024px) and (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .mobile-overlay {
    display: none;
  }

  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
    --gap-size: 0.6em;
  }

  .full-width-content h2 {
    font-size: 2rem;
  }
}
/* Large tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .container nav {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
}
/* Mobile - hamburger menu implementation */
@media (max-width: 768px) {
  /* .container {
    padding: 1rem;
  } */

  .container nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
    height: 4rem;
    gap: 0;
  }

  .container nav > .logo-element {
    flex-grow: 0;
  }

  .container nav > .logo-element a img {
    height: 2.5rem;
    width: auto;
  }

  .container nav > .nav-content {
    display: none; /* Hide normal nav content on mobile */
  }

  .hamburger-menu {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    --gap-size: 0.4em;
  }

  /* .span-3 {
    grid-column: span 2 !important;
  } */

  .break-glass-card {
    min-height: 150px;
  }

  .break-glass-card .sign {
    font-size: 1.5rem;
    padding: 15px 30px;
  }

  .full-width-component {
    margin: 0.5rem 0;
    min-height: 180px;
  }

  .full-width-content {
    min-height: 180px;
    padding: 2rem 1rem;
  }

  .full-width-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .items-info {
    margin-left: 0;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    --gap-size: 0.4em;

  }

  .span-2,
  .span-3 {
    grid-column: span 1 !important;
  }

  .break-glass-card {
    min-height: 120px;
  }

  .break-glass-card .sign {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  .full-width-component {
    min-height: 160px;
    margin: 0.25rem 0;
  }

  .full-width-content {
    min-height: 160px;
    padding: 1.5rem 0.75rem;
  }

  .full-width-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.full-width-component.crocodile-wrapper {
  position: static !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: visible !important;
  display: block !important;
  /* Remove any grid positioning that might interfere */
  grid-column: 1 / -1 !important;
  min-height: 300px; /* Set a minimum height for the swamp */
}
.full-width-component.crocodile-wrapper .full-width-content {
  display: block !important;
  position: static !important;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: unset !important;
  align-items: unset !important;
  text-align: unset !important;
  pointer-events: none !important;
  min-height: auto !important;
  height: auto !important;
  width: 100% !important;
}
/* 2. Crocodile container fixes */
.crocodile-wrapper .crocodile-container {
  pointer-events: auto !important;
  position: relative !important;
  width: 100% !important;
  height: 300px !important; /* Ensure adequate height */
  overflow: hidden !important;
  border-top: 16px solid black;
  border-bottom: 16px solid black;
  background: linear-gradient(to top, #111 0%, #1b2b1b 100%);
  background-color: #0d120d;
}
/* 3. Crocodile wrapper and animation fixes */
.crocodile-wrapper .croc-wrapper {
  position: absolute !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}
/* 4. Individual crocodile fixes */
.crocodile-wrapper .crocodile {
  pointer-events: auto !important;
  z-index: 15 !important;
  user-select: none !important;
}
/* 5. Audio element positioning */
.crocodile-wrapper #biteSound {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
/* 6. Hide cursor when needed */
.hide-cursor,
.hide-cursor * {
  cursor: none !important;
}
/* 7. Animation keyframes (ensure they're not overridden) */
@keyframes walk {
  0% {
    left: -150px;
  }
  100% {
    left: 100vw;
  }
}
@keyframes waddle {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  25% {
    transform: translateY(-2px) rotate(-2deg);
  }
  50% {
    transform: translateY(0) rotate(2deg);
  }
  75% {
    transform: translateY(2px) rotate(-2deg);
  }
}
/* 8. Paused state fixes */
.crocodile-wrapper .croc-wrapper.paused {
  animation-play-state: paused !important;
}
.crocodile-wrapper .crocodile.paused {
  animation-play-state: paused !important;
}
/* ====================================
   CATEGORY FILTER COMPONENT STYLES
   ==================================== */
.category-filter {
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: Raleway, sans-serif;
}
.category-filter h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: none; /* Hide title in nav by default */
}
/* ====================================
   FILTER BUTTONS - TICKET STYLE
   ==================================== */
.filter-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  margin: 0;
  align-items: center;
}
.radio-group {
  position: relative;
}
/* Hide the actual radio input */
.filter-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Style the label as the ticket button */
.filter-btn {
  --ticket-color-border: #3490dc;
  --ticket-color-card: #e6f3ff;
  --ticket-color-text: #1a5490;
  --hapje: 0.5rem;
  --border: .4em;
  --content: attr(data-category);
  --padding: clamp(0.6rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
  --font-size: clamp(0.7rem, 1.8vw, 0.9rem);

  position: relative;
  text-transform: uppercase;
  border: none;
  font-size: var(--font-size);
  font-weight: 600;
  color: transparent;
  padding: var(--padding);
  background-color: transparent;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  user-select: none;
  text-align: center;
  cursor: pointer;
}
.filter-btn::before,
.filter-btn::after {
  content: var(--content);
  position: absolute;
  color: var(--ticket-color-text);
  left: 0;
  top: 0;
  padding: var(--padding);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
  font-size: var(--font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-image:
    linear-gradient(var(--ticket-color-border) var(--border), transparent 0 calc(100% - var(--border)), var(--ticket-color-border) 0),
    linear-gradient(90deg, var(--ticket-color-border) var(--border), transparent 0 calc(100% - var(--border)), var(--ticket-color-border) 0),
    radial-gradient(circle at 0 0, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
    radial-gradient(circle at 100% 0, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
    radial-gradient(circle at 100% 100%, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0),
    radial-gradient(circle at 0 100%, transparent var(--hapje), var(--ticket-color-border) 0 calc(var(--hapje) + var(--border) ), var(--ticket-color-card) 0);
  
  background-size:
    calc(100% - 2 * var(--hapje)) 100%,
    100% calc(100% - 2 * var(--hapje)),
    51% 51%,
    51% 51%,
    51% 51%,
    51% 51%;
  background-repeat: no-repeat;
  background-position:
    center top,
    left center,
    left top,
    right top,
    right bottom,
    left bottom;
}
.filter-btn::before {
  clip-path: polygon(0% 0%, 0% 100%, 40% 100%, 60% 0%);
  z-index: 1;
}
.filter-btn::after {
  clip-path: polygon(60% 0%, 40% 100%, 100% 100%, 100% 0%);
  z-index: 2;
}
/* Hover effects */
.filter-btn:hover::before {
  transform: rotate(-6deg);
}
.filter-btn:hover::after {
  transform: rotate(6deg);
}
/* Active effects */
.filter-btn:active::before {
  transform: translateX(-.25em) rotate(-6deg);
}
.filter-btn:active::after {
  transform: translateX(.25em) rotate(6deg);
}
.filter-radio:checked + .filter-btn::before,
.filter-btn.active::before {
  transform: rotate(-3deg);
}
.filter-radio:checked + .filter-btn::after,
.filter-btn.active::after {
  transform: rotate(3deg);
}
/* ====================================
   CATEGORY-SPECIFIC TICKET COLORS
   ==================================== */
/* Default/All button - Blue theme */
.filter-btn[data-category="all"] {
  --ticket-color-border: #3490dc;
  --ticket-color-card: #e6f3ff;
  --ticket-color-text: #1a5490;
}
/* Category-specific themes */
.filter-btn[data-category*="PROP"] {
  --ticket-color-border: #104C1C;
  --ticket-color-card: #308F3E;
  --ticket-color-text: #012809;
}
.filter-btn[data-category*="DECOR"] {
  --ticket-color-border: #b80006;
  --ticket-color-card: #e81b21;
  --ticket-color-text: #3d0002;
}
.filter-btn[data-category*="INTERIEUR"] {
  --ticket-color-border: #B89300;
  --ticket-color-card: #ffca3a;
  --ticket-color-text: #524100;
}
/* ====================================
   FILTER FUNCTIONALITY - FROM JS
   ==================================== */
/* Filtered project cards */
.project-card.filtered-out {
  display: none !important;
}
.project-card.filtered-in {
  display: block;
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
  transition: all 0.3s ease;
}
/* Grid transition effects */
.dynamic-grid {
  transition: opacity 0.3s ease;
}
.dynamic-grid.filtering {
  opacity: 0.8;
}
/* Visual feedback for filtering */
.project-card {
  transition: all 0.3s ease;
}
.project-card:not(.filtered-out) {
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
}
/* ====================================
   MOBILE OVERLAY SPECIFIC STYLES
   ==================================== */
/* Mobile overlay filter styles */
.mobile-overlay .category-filter {
  background: transparent;
}
.mobile-overlay .category-filter h2 {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}
.mobile-overlay .filter-buttons {
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  margin-right: 0;
}
.mobile-overlay .filter-btn {
  width: 80%;
  max-width: 300px;
  text-align: center;
}
/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
/* Desktop - maintain original size */
@media (min-width: 1025px) {
  .filter-btn {
    --padding: 0.8rem 1.8rem;
    --font-size: 0.85rem;
  }
  
  .filter-buttons {
    gap: 1rem;
    margin: 0;
  }
}
/* Large tablet - slight reduction */
@media (max-width: 1024px) and (min-width: 901px) {
  .filter-buttons {
    gap: 0.8rem;
    margin: 0;
    flex-wrap: nowrap;
  }
  
  .filter-btn {
    --padding: 0.7rem 1.4rem;
    --font-size: 0.75rem;
  }
}
/* Medium tablet - more reduction */
@media (max-width: 900px) and (min-width: 769px) {
  .filter-buttons {
    gap: 0.6rem;
    margin: 0;
    flex-wrap: nowrap;
  }
  
  .filter-btn {
    --padding: 0.6rem 1rem;
    --font-size: 0.7rem;
  }
}
/* Small tablet and mobile - original mobile styles */
@media (max-width: 768px) {
  .category-filter {
    padding: 1rem;
  }
  
  .filter-buttons {
    gap: 1rem;
    justify-content: center;
  }
  
  .filter-btn {
    --padding: clamp(0.7rem, 2vw, 0.8rem) clamp(1.2rem, 3vw, 1.5rem);
    --font-size: clamp(0.75rem, 1.8vw, 0.8rem);
  }
}
@media (max-width: 480px) {
  .filter-btn {
    --padding: clamp(0.5rem, 2vw, 0.6rem) clamp(1rem, 3vw, 1.2rem);
    --font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  }
  
  .filter-buttons {
    gap: 0.8rem;
  }
  
  /* Mobile overlay adjustments */
  .mobile-overlay .filter-btn {
    width: 90%;
    --padding: 0.8rem 1.5rem;
    --font-size: 0.9rem;
  }
}
/* ====================================
   SEARCH BAR COMPONENT STYLES
   ==================================== */
.search-component {
  font-family: Raleway, sans-serif;
  flex-shrink: 0;
  min-width: 0; /* Prevent flex item from overflowing */
}
.search-form {
  width: 100%;
  max-width: fit-content;
}
/* ====================================
   SEARCH CONTAINER
   ==================================== */
.search-container {
  --input-width: 14rem;
  --primary-color: #3490dc;
  --error-color: #ff0000;
  --background-color: #D9D9D9;
  --text-color: #333;
  --placeholder-color: #000;
  --icon-color: #999;
  
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  padding: 0.02rem 0.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: auto;
  min-width: calc(var(--input-width) + 2rem);
  height: 4em;
}
.search-container:focus-within {
  /* border-color: var(--primary-color); */
  /* box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1); */
}
.search-container:focus-within,
.search-container.has-content {
  width: auto;
  max-width: 100vw; /* Allow it to grow to full viewport width */
}
/* Search container states */
.search-container.searching {
  opacity: 0.8;
}
/* ====================================
   SEARCH ICON
   ==================================== */
.search-icon {
  color: var(--icon-color);
  margin-right: 0.75rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
  width: 20px;
  height: 20px;
}
.search-container:focus-within .search-icon {
  color: var(--primary-color);
}
/* ====================================
   SEARCH INPUT
   ==================================== */
.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 3rem;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-color);
  padding: 0.25rem 0;
  caret-shape: bar;
  caret-color: var(--error-color);
  transition: all 0.3s ease;
  
  /* Enable content-based sizing */
  field-sizing: content;
  min-width: var(--input-width);
}
.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  
  /* Make it bigger */
  height: 3rem;
  width: 3rem;
  
  /* Style it */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 70%; /* Make the X icon smaller than the button */
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  
  /* Hide cursor */
  /* cursor: none !important; */
  
  /* Spacing */
  margin-left: 1rem;
  
  /* Smooth transitions */
  transition: all 0.2s ease;
}
.search-input::placeholder {
  color: var(--placeholder-color);
  font-style: italic;
}
.search-input:focus::placeholder {
  color: #bbb;
}
/* Search loading state indicators */
.searching .search-input {
  background-color: #f8f9fa;
}
/* ====================================
   PROJECT CARD SEARCH STATES
   ==================================== */
/* Base transition for all project cards */
.project-card {
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
/* Cards that match search criteria */
.project-card.search-match {
  display: block;
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
}
/* Cards hidden by search */
.project-card.search-hidden {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(2px);
}
/* Completely hide cards after transition */
.project-card.search-hidden.filtered-out {
  display: none;
}
/* Ensure visible cards maintain proper styling */
.project-card:not(.search-hidden):not(.filtered-out) {
  display: block;
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
}
/* ====================================
   FULL-WIDTH ELEMENTS DURING SEARCH
   ==================================== */
.full-width-component.search-hidden,
[data-type="full-width"].search-hidden,
.break-glass-card.search-hidden,
[data-type="custom"].search-hidden {
  display: none;
}
/* ====================================
   MOBILE OVERLAY SEARCH STYLES
   ==================================== */
.mobile-overlay .search-component {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-overlay .search-container {
  width: 100%;
  justify-content: flex-start;
  height: 4rem;
  --input-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.6rem;
}
.mobile-overlay .search-input {
  font-size: 1.5rem;
  width: 100%;
  min-width: 100%;
  text-align: center;
  flex: 1;
  padding: 0.5rem 0;
}
.mobile-overlay .search-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  margin-left: 0.2rem;
  flex-shrink: 0;
}
/* ====================================
   ACCESSIBILITY
   ==================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Focus indicators for keyboard navigation */
.search-input:focus {
  /* box-shadow: 0 0 0 2px rgba(52, 144, 220, 0.3); */
}
/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
/* Desktop - maintain original size */
@media (min-width: 1025px) {
  .search-container {
    --input-width: 12rem;
    height: 4em;
    min-width: calc(var(--input-width) + 2rem);
    max-width: 20rem;
  }
  
  .search-input {
    font-size: 3rem;
  }
  
  .search-icon {
    width: 20px;
    height: 20px;
  }
}
/* Large tablet - slight reduction */
@media (max-width: 1024px) and (min-width: 901px) {
  .search-container {
    --input-width: 12rem;
    height: 3.5em;
  }
  
  .search-input {
    font-size: 2.5rem;
  }
  
  .search-icon {
    width: 19px;
    height: 19px;
  }
}
/* Medium tablet - more reduction */
@media (max-width: 900px) and (min-width: 769px) {
  .search-container {
    --input-width: 10rem;
    height: 3em;
  }
  
  .search-input {
    font-size: 2rem;
  }
  
  .search-icon {
    width: 18px;
    height: 18px;
  }
}
/* Small tablet and mobile */
@media (max-width: 768px) {
  .search-component {
    margin-bottom: 1.5rem;
  }

  .search-container {
    --input-width: 12rem;
    padding: 0.6rem 0.8rem;
    height: 3.5em;
  }

  .search-input {
    font-size: 2.5rem;
  }

  .search-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
  }
}
@media (max-width: 480px) {
  .search-container {
    --input-width: 10rem;
    padding: 0.5rem 0.75rem;
    height: 3em;
  }

  .search-input {
    font-size: 2rem;
  }

  .search-icon {
    width: 16px;
    height: 16px;
  }
  
  /* Mobile overlay adjustments */
  .mobile-overlay .search-input {
    font-size: 1.2rem;
    width: 100%;
    min-width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .mobile-overlay .search-container {
    --input-width: 100%;
    min-width: 100%;
    height: 4rem;
    padding: 0.5rem 0.6rem;
  }
}
/* ====================================
   DARK THEME SUPPORT
   ==================================== */
@media (prefers-color-scheme: dark) {
  .search-container {
    --background-color: #2a2a2a;
    --text-color: #fff;
    --placeholder-color: #ccc;
    --icon-color: #ccc;
    border-color: #444;
  }

  .search-container:focus-within {
    box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.2);
  }
}
/* ====================================
   PERFORMANCE OPTIMIZATIONS
   ==================================== */
/* Simplified performance optimizations - removed potential conflicts */
.search-container {
  will-change: auto;
}
/* Removed the problematic search container styling that might interfere with grid */
/* ====================================
   PROJECT CARD COMPONENT STYLES
   ==================================== */
.project-card {
  display: flex;
  flex-wrap: wrap;
  font-family: Raleway, sans-serif;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  height: 100%;
}
/* ====================================
   ASPECT RATIO CLASSES - USING ASPECT-RATIO PROPERTY
   ==================================== */
.landscape-card,
.landscape,
.project-card[data-aspect-ratio="landscape"] {
  grid-row: span 1 !important;
  grid-column: span 2 !important;
  aspect-ratio: 2 / 1; /* 2:1 ratio */
}
.portrait-card,
.portrait,
.project-card[data-aspect-ratio="portrait"] {
  grid-row: span 2 !important;
  grid-column: span 1 !important;
  aspect-ratio: 1 / 2; /* 1:2 ratio */
}
.square,
.project-card[data-aspect-ratio="square"] {
  grid-row: span 1 !important;
  grid-column: span 1 !important;
  aspect-ratio: 1 / 1; /* Perfect 1:1 square */
}
/* Smart Sizing Classes for Grid Optimizer */
.span-2 {
  grid-column: span 2 !important;
}
.span-3 {
  grid-column: span 3 !important;
}
.row-span-2 {
  grid-row: span 2 !important;
}
/* ====================================
   PROJECT IMAGE
   ==================================== */
.project-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  transition: transform 0.3s ease;
  background-color: #333;
  display: block;
  vertical-align: top;
}
/* Image Loading States */
.project-image-wrapper img:not([src]),
.project-image-wrapper img[src=""] {
  background-color: #444;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='50' y='50' text-anchor='middle' dominant-baseline='middle' fill='%23999' font-size='12'%3ELoading...%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px 100px;
}
.project-card:hover .project-image-wrapper img {
  transform: scale(1.05);
}
/* ====================================
   PROJECT DETAILS
   ==================================== */
.project-details {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  padding: 1rem;
  padding-top: 2rem;
  box-sizing: border-box;
}
.project-details h2 {
  color: white;
  margin: 0;
  /* text-transform: uppercase; */
  font-size: clamp(1em, 3vw, 1.5em);
  font-weight: 600;
  pointer-events: auto;
}
/* ====================================
   PROJECT INFO
   ==================================== */
.project-info {
  position: relative;
  width: 100%;
  height: 100%;
}
.project-production,
.project-date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.25rem;
}
/* ====================================
   CATEGORY BADGE - TICKET STYLE
   ==================================== */
.category {
  position: absolute;
  bottom: 60px;
  right: 20px;
  z-index: 3;
  pointer-events: none;
  transition: transform 0.3s ease;

  /* Ticket Style Variables */
  --ticket-color-border: black;
  --ticket-color-card: white;
  --ticket-color-text: black;
  --hapje: 0.5rem;
  --border: 0.3em;
  --padding: 0.5rem 1rem;

  /* Reset previous styles */
  border: none;
  background-color: transparent;
  padding: var(--padding);

  /* Ticket Style Background */
  background-image: linear-gradient(
      var(--ticket-color-border) var(--border),
      transparent 0 calc(100% - var(--border)),
      var(--ticket-color-border) 0
    ),
    linear-gradient(
      90deg,
      var(--ticket-color-border) var(--border),
      transparent 0 calc(100% - var(--border)),
      var(--ticket-color-border) 0
    ),
    radial-gradient(
      circle at 0 0,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 100% 0,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 100% 100%,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 0 100%,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    );

  background-size: calc(100% - 2 * var(--hapje)) 100%,
    100% calc(100% - 2 * var(--hapje)), 51% 51%, 51% 51%, 51% 51%, 51% 51%;
  background-repeat: no-repeat;
  background-position: center top, left center, left top, right top,
    right bottom, left bottom;
}
.category p {
  color: var(--ticket-color-text);
  text-transform: uppercase;
  font-size: clamp(0.8em, 2.5vw, 1.1em);
  font-weight: 600;
  margin: 0;
  pointer-events: auto;
}
/* Category Color Variants - matching filter button colors */
.category.decor {
  --ticket-color-border: #b80006;
  --ticket-color-card: #e81b21;
  --ticket-color-text: #3d0002;
}
.category.props {
  --ticket-color-border: #104c1c;
  --ticket-color-card: #308f3e;
  --ticket-color-text: #012809;
}
.category.interieur,
.category.interior {
  --ticket-color-border: #b89300;
  --ticket-color-card: #ffca3a;
  --ticket-color-text: #524100;
}
/* ====================================
   SPECIAL BADGES
   ==================================== */
.for-sale-badge {
  display: inline-block;
  background-color: #4caf50;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
/* ====================================
   HOVER EFFECTS
   ==================================== */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.project-card:hover .category {
  transform: scale(1.1);
}
/* ====================================
   FILTER STATES
   ==================================== */
.filtered-out {
  display: none !important;
}
.filtered-in {
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: none !important;
  animation: fadeInFilter 0.4s ease forwards;
}
@keyframes fadeInFilter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.filtering {
  transition: opacity 0.3s ease;
}
/* ====================================
   LOADING STATES
   ==================================== */
.project-card.loading {
  min-height: 250px;
}
.project-card.loading .project-image-wrapper {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card.loading .project-image-wrapper::before {
  content: "Loading...";
  color: #999;
  font-size: 14px;
}
/* ====================================
   MOBILE RESPONSIVE OVERRIDES
   ==================================== */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }

  .landscape-card {
    grid-column: span 2 !important;
  }

  .portrait-card {
    grid-row: span 2 !important;
  }

  .category {
    bottom: 40px;
    right: 15px;
    --padding: 0.3rem 0.8rem;
    --hapje: 0.4rem;
    --border: 0.25em;
  }
}
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  
  .landscape-card,
  .portrait-card,
  .square {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .category {
    bottom: 30px;
    right: 10px;
    --padding: 0.25rem 0.6rem;
    --hapje: 0.3rem;
    --border: 0.2em;
  }

  .category p {
    font-size: clamp(0.7em, 2vw, 0.9em);
  }
}
/* ====================================
   DEBUG STYLES (OPTIONAL)
   ==================================== */
.debug-aspect-ratios .project-card {
  border: 2px solid red !important;
}
.debug-aspect-ratios .portrait-card {
  border-color: blue !important;
}
.debug-aspect-ratios .landscape-card {
  border-color: green !important;
}
.debug-aspect-ratios .square {
  border-color: orange !important;
}
@font-face {
  font-family: Saloon;
  src: url("/Saloon.woff") format("woff");
}
.text-slider {
  .scroller {
    overflow: hidden;
    max-width: 100dvw;
    border-top: 16px solid black;
    border-bottom: 16px solid black;
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff0000' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  }

  .scroller__inner {
    display: flex;
    gap: 1rem;
  }

  .scroller[data-animated="true"] {
    overflow: hidden;
  }

  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 15s)
      var(--_animation-direction, forwards) linear infinite;
    animation-delay: -1s;
  }

  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }

  .scroller[data-direction="left"] {
    --_animation-direction: backwards;
  }

  .scroller[data-speed="slow"] {
    --_animation-duration: 20s;
  }

  .scroller[data-speed="medium"] {
    --_animation-duration: 15s;
  }

  .scroller[data-speed="fast"] {
    --_animation-duration: 10s;
  }

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }

  .scroller__inner h1 {
    font-family: Saloon;
    font-size: clamp(5em, 20vw, 14em);
    word-spacing: -0.5ch;
    color: #c79c35;
    -webkit-text-stroke: 4px #554318;
    text-transform: uppercase;
    margin: 0;
  }
}
.crocodile-container {
  position: relative !important;
  overflow: hidden;
  width: 100vw !important;
  height: 50vh !important;
  border-top: 16px solid black;
  border-bottom: 16px solid black;
  background: linear-gradient(to top, #111 0%, #1b2b1b 100%);
  background-color: #0d120d;
  pointer-events: none !important;
  z-index: 100 !important;
}
@keyframes walk {
  0% {
    left: -300px;
  }
  100% {
    left: calc(100vw + 10vw);
  }
}
.croc-wrapper {
  position: absolute !important;
  animation-name: walk !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-direction: alternate !important;
  animation-fill-mode: forwards !important;
  will-change: left, transform !important;
  pointer-events: all !important;
  z-index: 101 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.croc-wrapper.paused {
  animation-play-state: paused !important;
}
/* === WADDLE ANIMATION (only on the <img>) === */
@keyframes waddle {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  25% {
    transform: translateY(-2px) rotate(-2deg);
  }
  50% {
    transform: translateY(0) rotate(2deg);
  }
  75% {
    transform: translateY(2px) rotate(-2deg);
  }
}
/* CONSOLIDATED CROCODILE STYLES */
.crocodile {
  display: block !important;
  pointer-events: all !important;
  user-select: none !important;
  animation: waddle 0.6s ease-in-out infinite !important;
  transform-origin: center !important;
  position: relative !important;
  z-index: 102 !important;

  /* Force visibility */
  opacity: 1 !important;
  visibility: visible !important;

  /* Ensure it has dimensions */
  min-width: 100px !important;
  min-height: 100px !important;

  /* Add hover effect for debugging */
  transition: filter 0.2s ease, transform 0.2s ease !important;
}
.crocodile:hover {
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 255, 0, 0.3)) !important;
  transform: scale(1.05) !important;
}
.crocodile:focus {
  outline: 2px solid #00ff00 !important;
  outline-offset: 2px !important;
}
.crocodile.paused {
  animation-play-state: paused !important;
}
/* Hide cursor when the body has this class */
.hide-cursor,
.hide-cursor * {
  cursor: none !important;
}
/* DEBUGGING: Add visible borders to see what's happening */
.debug-crocodiles .crocodile-container {
  border: 3px solid red !important;
  background: rgba(255, 0, 0, 0.1) !important;
}
.debug-crocodiles .croc-wrapper {
  border: 2px solid blue !important;
  background: rgba(0, 0, 255, 0.1) !important;
}
.debug-crocodiles .crocodile {
  border: 2px solid green !important;
  background: rgba(0, 255, 0, 0.1) !important;
}
/* Force the full-width wrapper to not interfere */
.full-width-component.crocodile-wrapper {
  overflow: visible !important;
  position: relative !important;
}
.full-width-component.crocodile-wrapper .full-width-content {
  overflow: visible !important;
  pointer-events: none !important;
  position: relative !important;
}
/* ====================================
   BREAK GLASS COMPONENT STYLES - ADAPTED FROM ORIGINAL
   ==================================== */
.break-glass-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  border-radius: 4px;
  font-family: Raleway, sans-serif;
}
.break-glass-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.sign {
  padding: 20px 40px;
  background-color: #ff4444;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  user-select: none;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.sign:hover {
  background-color: #ff6666;
  transform: scale(1.05);
}
.sign:active {
  transform: scale(0.95);
}
.sign.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5px, 0); }
  50% { transform: translate(5px, 0); }
  75% { transform: translate(-5px, 0); }
  100% { transform: translate(0, 0); }
}
/* ====================================
   FULLSCREEN BROKEN GLASS OVERLAY
   ==================================== */
.broken-glass-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("https://gallery.yopriceville.com/downloadfullsize/send/18517") center center no-repeat;
  background-size: cover;
  pointer-events: none;
  display: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.broken-glass-fullscreen.active {
  display: block;
  opacity: 1;
  animation: glassBreakEffect 0.8s ease-out;
}
@keyframes glassBreakEffect {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ====================================
   BODY STATES FOR FULLSCREEN EFFECT
   ==================================== */
body.glass-broken {
  overflow: hidden;
}
/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
  .break-glass-card {
    min-height: 150px;
  }
  
  .sign {
    font-size: 1.5rem;
    padding: 15px 30px;
  }
}
@media (max-width: 480px) {
  .break-glass-card {
    min-height: 120px;
  }
  
  .sign {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}
/* ====================================
   ACCESSIBILITY
   ==================================== */
.break-glass-card:focus-within {
  outline: 2px solid #ff4444;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .sign.shake {
    animation: none;
  }
  
  .broken-glass-fullscreen.active {
    animation: none;
  }
  
  .sign {
    transition: none;
  }
}
.break-glass-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: Raleway, sans-serif;
}
.break-glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* ====================================
   BREAK GLASS CONTAINER
   ==================================== */
.break-glass-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* ====================================
   SIGN ELEMENT
   ==================================== */
.break-glass-card .sign {
  padding: 20px 40px;
  background-color: #ff4444;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  user-select: none;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-align: center;
  max-width: 80%;
  word-wrap: break-word;
}
.break-glass-card .sign:hover {
  background-color: #ff6666;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.break-glass-card .sign:active {
  transform: scale(0.95);
}
/* ====================================
   SHAKE ANIMATION
   ==================================== */
.break-glass-card .sign.shake {
  animation: breakGlassShake 0.4s ease;
}
@keyframes breakGlassShake {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-3px, -2px) rotate(-1deg); }
  20% { transform: translate(-8px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
/* ====================================
   BROKEN GLASS OVERLAY (REMOVED - NOW USING FULLSCREEN)
   ==================================== */
/* This section is now handled by .broken-glass-fullscreen above */
/* ====================================
   COMPONENT STATES
   ==================================== */
.break-glass-card.broken .sign {
  background-color: #666;
  color: #ccc;
  border-color: rgba(255, 255, 255, 0.1);
}
.break-glass-card.broken .sign:hover {
  background-color: #777;
}
/* Loading state */
.break-glass-card.loading {
  background-color: #333;
}
.break-glass-card.loading .sign {
  background-color: #555;
  color: #999;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
  .break-glass-card {
    min-height: 150px;
  }
  
  .break-glass-card .sign {
    font-size: 1.5rem;
    padding: 15px 30px;
  }
}
@media (max-width: 480px) {
  .break-glass-card {
    min-height: 120px;
  }
  
  .break-glass-card .sign {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}
/* ====================================
   ACCESSIBILITY
   ==================================== */
.break-glass-card:focus-within {
  outline: 2px solid #ff4444;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .break-glass-card .sign.shake {
    animation: none;
  }
  
  .break-glass-card .broken-glass.active {
    animation: none;
  }
  
  .break-glass-card,
  .break-glass-card .sign {
    transition: none;
  }
}
.sub-card {
  position: absolute;
  top: 20em;
  width: 140dvw;
  display: flex;
  justify-content: center;
  z-index: 10;
  overflow-x: hidden;
}
.submarine-container {
  position: fixed;
  width: 20vw;
  max-width: 400px;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.submarine-container img {
  width: 300px;
  aspect-ratio: 1;
  object-fit: contain;
}
.submarine {
  width: 100%;
  height: auto;
}
.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999999 !important;
}
.bubble {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: rgba(173, 216, 230, 0.7);
  border-radius: 50%;
  animation: bubbleUp 2s ease-out forwards;
}
@keyframes bubbleUp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: var(--bubble-move) scale(0.5);
    opacity: 0;
  }
}
.image-popover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}
.image-popover-overlay.show {
  opacity: 1;
}
.image-popover-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 3fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  animation: popoverScale 0.3s ease-out;

  .project-popover-title {
    grid-area: 1 / 2 / 2 / 6;
    align-self: end;

    font-family: "franchise", impact, sans-serif;
    font-size: clamp(3rem, 2.5vw, 4rem);

    margin-bottom: 1rem;
  }

  .carousel {
    grid-area: 2 / 2 / 3 / 6;

    align-content: center;
  }

  .project-popover-details {
    grid-area: 3 / 2 / 4 / 6;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 2rem;

    p,
    span {
      font-family: "franchise", impact, sans-serif;
      font-size: 1.2rem;
    }
  }
}
.project-popover-production::before,
.project-popover-photographer::before,
.project-popover-date::before,
.project-popover-category::before {
  display: block;
  font-family: "franchise", impact, sans-serif;
  font-size: 2rem;
}
.project-popover-production::before {
  content: "Productie";
}
.project-popover-photographer::before {
  content: "Fotograaf";
}
.project-popover-date::before {
  content: "Datum";
}
.project-popover-category::before {
  content: "Categorie";
}
.project-popover-img {
  height: 100%;
  /* width: 100%; */
  object-fit: cover;
}
.image-popover-close {
  all: unset;
  grid-area: 1 / 5 / 2 / 6;
  justify-self: end;
  align-self: center;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;

  img {
    width: 100%;
    height: 100%;
  }
}
.project-popover-for-sale {
  position: absolute;
  top: 15%;
  left: 10%;

  height: 30%;
}
.image-popover-close:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
/* Animation */
@keyframes popoverScale {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Mobile responsive */
@media (max-width: 768px) {
  .image-popover-overlay {
    padding: 10px;
  }
  .image-popover-container {
    grid-template-rows: 1fr 6fr 3fr;

    .project-popover-title {
      font-size: 1.5rem;
    }
    .project-popover-details {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.3rem;
    }
  }

  .project-popover-images-list {
    height: 50%;
  }

  .image-popover-container {
    max-width: 95vw;
    max-height: 95vh;
  }

  .image-popover-close {
    grid-area: 1 / 6 / 2 / 7;
  }
}
/* Ensure images with data-pop-image are clickable */
img[data-pop-image] {
  transition: opacity 0.2s ease;
}
img[data-pop-image]:hover {
  opacity: 0.9;
}
.popover-hide {
  display: none;
}
.popover-show-block {
  display: block;
}
.popover-show-inline {
  display: inline;
}
/* ---------------------------------------------- */
/* ------------------ Carousel ------------------ */
/* ---------------------------------------------- */
.carousel {
  position: relative;
  overflow: hidden;
  height: 70vh;
}
#prev,
#next {
  all: unset;

  img {
    height: 50px;
  }
}
#prev {
  grid-area: 2 / 1 / 3 / 2;
  justify-self: end;
}
#next {
  grid-area: 2 / 6 / 3 / 7;
  justify-self: start;
}
.project-popover-images-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.project-popover-images-list li {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.carousel-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #aaa;
  border-radius: 50%;
  /* cursor: pointer; */
}
.carousel-dots span.active {
  background: white;
}
/* Counter */
.carousel-counter {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 10px;
  z-index: 999;
}
@media (max-width: 600px) {
  .carousel {
    height: 50vh;
  }

  #prev {
    left: 5px;
  }
  #next {
    right: 5px;
  }
}
/* About Route */
/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */
.wrapper-about h3 {
  font-size: 1.4rem;
  color: black;
}
.wrapper-about h4 {
  padding-top: 2rem;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.wrapper-about h1,
.wrapper-about h2,
.wrapper-about h4 {
  font-family: "franchise", impact, arial, sans-serif;
  text-transform: uppercase;
  color: black;
}
.about-nav {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.employee-wrapper,
.about,
.about-nav {
  max-width: 1200px;
}
.wrapper-about p .wrapper-about h3 {
  font-family: monospace;
}
.wrapper-about {
  display: flex;
  width: 100vw;
  height: fit-content;
  background: linear-gradient(
    0deg,
    rgba(147, 147, 140, 1) 1%,
    rgba(225, 225, 215, 1) 2%,
    rgba(225, 225, 215, 1) 99%,
    rgba(147, 147, 140, 1) 100%
  );
  background-repeat: repeat-y;
  background-size: 100% 4rem;
  min-height: 100vh;
}
aside {
  width: 5vw;
  min-width: 4rem;
  max-width: 8rem;
  background: radial-gradient(
    circle,
    rgba(69, 69, 69, 1) 20%,
    rgba(232, 232, 232, 1) 20%
  );
  background-repeat: repeat-y;
  background-size: 100% 4rem;
}
aside h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  padding-bottom: 2rem;
}
aside h3:first-of-type {
  padding-top: 2rem;
  text-align: center;
}
.wrapper-about main {
  display: flex;
  flex-direction: column;
  width: 90vw;
  flex-grow: 1;
  padding: 5rem 4rem 5rem 2rem;
  align-items: center;
}
.employee-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.employee {
  width: 100%;
}
.employee .image {
  width: 100%;
  position: relative;
}
.employee .image img {
  width: 100%;
  object-fit: cover;
}
.text {
  padding-top: 1rem;
}
.about-h1 {
  font-size: 3rem;
  text-align: left;
  margin-bottom: 0;
}
.about-h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 0;
}
.about-p {
  font-size: 1.2rem;
  padding-top: 0.3rem;
  line-height: 1.5;
  color: black;
}
.employee:nth-of-type(1) .image .green-magnet {
  /* hammer */
  position: absolute;
  top: 5%;
  left: -5%;
  /* background-color: red; */
  rotate: 3deg;
  height: 90%;
  width: auto;
  object-fit: contain;
}
.employee:nth-of-type(1) .image .hammer {
  position: absolute;
  bottom: -10%;
  right: 0%;
  rotate: 5deg;
  width: 30%;
}
.employee:nth-of-type(2) .cloud {
  position: absolute;
  top: 0;
  left: 50%;
  /* background-color: beige; */
  rotate: 5deg;
  width: 40%;
  /* aspect-ratio: 3 / 1; */
}
.employee:nth-of-type(2) .image .white-magnet {
  /* hammer */
  position: absolute;
  top: 5%;
  left: 2%;
  rotate: -6deg;
  height: 90%;
  width: auto;
  object-fit: contain;
  z-index: 3;
}
.employee:nth-of-type(2) .tape {
  position: absolute;
  top: 30%;
  right: -10%;
  rotate: -5deg;
  width: 30%;
  z-index: 3;
}
.employee:nth-of-type(2) .scribble {
  position: absolute;
  bottom: -10%;
  right: 0;
  background-color: yellow;
  rotate: 15deg;
  width: 20%;
  aspect-ratio: 3 / 4;
}
.employee:nth-of-type(3) .image .red-magnet {
  /* hammer */
  position: absolute;
  top: 5%;
  left: -5%;
  rotate: 3deg;
  height: 90%;
  width: auto;
  object-fit: contain;
}
.employee:nth-of-type(3) .image .tape {
  position: absolute;
  top: 0;
  right: -15%;
  background-color: beige;
  rotate: 45deg;
  width: 50%;
  aspect-ratio: 6 / 2;
}
.employee:nth-of-type(4) .image .tape {
  position: absolute;
  top: -5%;
  right: 15%;
  rotate: 5deg;
  width: 40%;
}
.employee:nth-of-type(4) .image .orange-magnet {
  /* hammer */
  position: absolute;
  top: 10%;
  left: -10%;
  rotate: 5deg;
  height: 90%;
  width: auto;
  object-fit: contain;
}
.employee:nth-of-type(4) .image .hammer {
  position: absolute;
  bottom: -10%;
  right: 0%;
  rotate: 5deg;
  width: 30%;
  transform: rotate(30deg);
}
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}
.about > div {
  width: 100%;
}
.maps iframe {
  width: 100%;
  aspect-ratio: 4/3;
  padding-bottom: 1rem;
}
.text-maps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ontop {
  z-index: 3;
}
/* 🟨 Tablets: 2 per row */
@media (min-width: 600px) {
  .employee-wrapper > .employee {
    width: calc(50% - 0.5rem);
  }
}
/* 🟩 Desktops: 4 per row */
@media (min-width: 1024px) {
  .employee-wrapper > .employee {
    width: calc(25% - 0.75rem);
  }

  .about {
    flex-wrap: nowrap;
    width: 100%;
  }
}
.a-ticket {
  --ticket-color-border: black;
  --ticket-color-card: white;
  --ticket-color-text: white;
  --hapje: 0.5rem;
  --border: 0.3em;
  --content: "filler";
  --padding: 1rem 1.5rem;
  text-transform: uppercase;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: transparent;
  padding: var(--padding);
  background-color: transparent;

  content: var(--content);
  color: black;
  left: 0;
  top: 0;
  padding: var(--padding);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
  background-image: linear-gradient(
      var(--ticket-color-border) var(--border),
      transparent 0 calc(100% - var(--border)),
      var(--ticket-color-border) 0
    ),
    linear-gradient(
      90deg,
      var(--ticket-color-border) var(--border),
      transparent 0 calc(100% - var(--border)),
      var(--ticket-color-border) 0
    ),
    radial-gradient(
      circle at 0 0,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 100% 0,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 100% 100%,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    ),
    radial-gradient(
      circle at 0 100%,
      transparent var(--hapje),
      var(--ticket-color-border) 0 calc(var(--hapje) + var(--border)),
      var(--ticket-color-card) 0
    );

  background-size: calc(100% - 2 * var(--hapje)) 100%,
    100% calc(100% - 2 * var(--hapje)), 51% 51%, 51% 51%, 51% 51%, 51% 51%;
  background-repeat: no-repeat;
  background-position: center top, left center, left top, right top,
    right bottom, left bottom;
  text-transform: uppercase;
}
.ticket-color {
  --ticket-color-border: #b80006;
  --ticket-color-card: #e81b21;
  --ticket-color-text: #3d0002;
}




