/* ===================== BASIS ===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #000;
    scroll-behavior: smooth;
}

/* ===================== NAVIGATIE ===================== */
.nav {
    width: 100%;
    padding: 10px 0px;
    background: transparent;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: clamp(150px, 15vw, 250px);
    width: auto;
    transform: rotate(-4deg);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 36px);
}

.nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: "";
    position: absolute;
    left: -15%;
    top: 75%;
    width: 150%;
    height: 16px;
    background: rgba(204, 255, 0, 0.9);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left center;
    box-shadow: 0 0 2px rgba(204, 255, 0, 0.35), 0 0 4px rgba(204, 255, 0, 0.25), 0 0 6px rgba(204, 255, 0, 0.15);
    transition: transform 0.25s ease-out;
    z-index: 0;
}

.nav a:hover::before {
    transform: skewY(-4deg) scaleX(1);
}

.nav a:not(:hover)::before {
    transform: skewY(-4deg) scaleX(0);
    transition: none;
}

/* ===================== CONTENT ===================== */
.content {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 0px;
}

.page-header {
    margin-bottom: 50px;
    

}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 0px;
    text-align: left;
}

.page-header p {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.6;
}

/* ===================== INFO BLOKKEN ===================== */
.info-block {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: 60px;
    align-items: flex-start;
    background: #fff;
    padding: 26px;
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.info-block:nth-of-type(odd) { transform: rotate(-0.2deg); }
.info-block:nth-of-type(even) { transform: rotate(0.2deg); }

.info-block img {
    width: 40%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-block .text { width: 60%; }

.info-block h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(22px,3vw,32px);
    margin-bottom: 10px;
}

.info-block p { font-size: clamp(14px,1.4vw,18px); line-height:1.6; }

.info-block.reverse { flex-direction: row-reverse; }

/* ===================== TAPJES ===================== */
.info-block.taped-left::before,
.info-block.taped::before,
.info-block.taped-bottom-right::before {
    content: "";
    position: absolute;
    border-radius: 3px;
    box-shadow: none;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 4px);
}

.info-block.taped-left::before {
    width: 50px; height: 70px; top:50%; left:-35px;
    transform: translateY(-50%) rotate(-6deg);
    background: rgba(0,200,255,0.3);
    border: 1px solid rgba(0,200,255,0.2);
}

.info-block.taped::before {
    width: 70px; height: 30px; top:-20px; right:30px;
    transform: rotate(9deg);
    background: rgba(255,0,200,0.2);
    border: 1px solid rgba(255,0,200,0.2);
}

.info-block.taped-bottom-right::before {
    width: 80px; height: 35px; bottom:-20px; right:-50px;
    transform: rotate(30deg);
    background: rgba(204,255,0,0.4);
    border: 1px solid rgba(204,255,0,0.4);
}

/* ===================== SCROLL INDICATORS ===================== */
.scroll-indicator {
    position: fixed;
    right: 20px;
    font-size: 36px;
    color: #000;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 100;
}
.scroll-indicator.top { top: 20px; }
.scroll-indicator.bottom { bottom: 20px; }

/* ===================== RESPONSIVE ===================== */
@media(max-width:1500px) { .nav-inner { gap: clamp(20px,3vw,40px); } }
@media(max-width:900px){
    .nav-inner { flex-wrap: wrap; gap: 15px; }
    .nav-left, .nav-right { justify-content:center; }
    .info-block, .info-block.reverse { flex-direction: column; align-items:flex-start; }
    .info-block img, .info-block .text { width:100%; max-width:100%; margin-bottom:12px; }
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: url('background.png') no-repeat center top;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    color: #000;
}

.note {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,0.6);
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(var(--rotate));
    font-size: clamp(12px, 1.2vw, 18px);
    pointer-events: none;
    user-select: none;
}

/* Doodle / lyric stijl */
.doodle {
    position: absolute;
    font-size: clamp(18px, 2vw, 28px);
    color: #333;
    transform: rotate(var(--rotate));
    pointer-events: none;
    user-select: none;
}

