
:root {
    --bg: #070b16;
    --bg-2: #0e1530;
    --panel: rgba(12, 18, 37, 0.82);
    --panel-strong: rgba(16, 23, 46, 0.96);
    --panel-soft: rgba(255,255,255,0.05);
    --text: #f8fbff;
    --muted: #9eb0cb;
    --line: rgba(121, 227, 242, 0.14);
    --cyan: #79e3f2;
    --blue: #4a89b3;
    --pink: #f46ca7;
    --yellow: #ffcf28;
    --orange: #ff9f1c;
    --green: #54d18d;
    --red: #ff6f7d;
    --shadow: 0 24px 70px rgba(0,0,0,.35);
    --glow: 0 0 0 1px rgba(121,227,242,.08), 0 12px 40px rgba(5,10,25,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244,108,167,.16), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(121,227,242,.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255,159,28,.10), transparent 30%),
        linear-gradient(180deg, var(--bg), var(--bg-2) 50%, #09101e 100%);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.section { padding: 96px 0; position: relative; }
.section.alt {
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
    border-top: 1px solid rgba(121,227,242,.06);
    border-bottom: 1px solid rgba(121,227,242,.06);
}
.site-header {
    position: sticky; top: 0; z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(7,11,22,.72);
    border-bottom: 1px solid rgba(121,227,242,.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 0; }
.brand { display: flex; gap: 14px; align-items: center; }
.brand strong { font-size: 1.02rem; letter-spacing: .02em; }
.brand small { display: block; color: var(--muted); margin-top: 4px; }
.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
    flex-shrink: 0;
}
nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 600; }
nav a:hover { color: var(--text); }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #151515; font-weight: 800; letter-spacing: .01em;
    box-shadow: 0 14px 40px rgba(255,159,28,.24);
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); color: #111; box-shadow: 0 16px 42px rgba(255,159,28,.34); }
.btn-small { padding: 10px 15px; font-size: 14px; }
.btn-secondary {
    background: rgba(255,255,255,.02);
    border-color: rgba(121,227,242,.22);
    color: var(--text);
    box-shadow: none;
}
.btn-secondary:hover { color: var(--text); box-shadow: var(--glow); }
.hero {
    padding: 88px 0 64px;
    position: relative;
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 999px;
    filter: blur(30px);
    pointer-events: none;
}
.hero::before {
    width: 320px; height: 320px; right: -80px; top: -60px;
    background: rgba(121,227,242,.12);
}
.hero::after {
    width: 260px; height: 260px; left: -60px; bottom: -70px;
    background: rgba(244,108,167,.10);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--cyan); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800;
    padding: 9px 14px; border-radius: 999px;
    background: rgba(121,227,242,.08); border: 1px solid rgba(121,227,242,.16);
}
.eyebrow::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
}
h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .98;
    margin: 18px 0 20px;
    max-width: 10ch;
}
h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 18px; }
h3 { margin-top: 0; }
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.75; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card, .card, .price-card, .contact-card, .admin-panel, .gallery-card, .schedule-item {
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(121,227,242,.10);
    border-radius: 28px;
    box-shadow: var(--shadow);
    position: relative;
}
.hero-card::before, .card::before, .price-card::before, .contact-card::before, .admin-panel::before, .gallery-card::before, .schedule-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(121,227,242,.18), rgba(244,108,167,.16), rgba(255,207,40,.14));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.hero-card { padding: 28px; }
.hero-logo-card {
    text-align: center;
    background: linear-gradient(180deg, rgba(13,20,41,.96), rgba(9,14,28,.96));
}
.hero-logo {
    width: min(100%, 390px);
    margin: -6px auto 18px;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,.4));
}
.hero-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.hero-card ul { margin: 0; padding-left: 0; list-style: none; color: var(--muted); text-align: left; }
.hero-card li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 0; border-bottom: 1px solid rgba(121,227,242,.08);
}
.hero-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card li::before {
    content: '•'; color: var(--yellow); font-size: 1.2rem; line-height: 1.1;
}
.cards, .pricing, .gallery-grid { display: grid; gap: 20px; }
.cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
.pricing { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card, .price-card { padding: 28px; }
.card p, .price-card p, .review p, .contact p, .gallery-card figcaption { color: var(--muted); line-height: 1.7; }
.card h3, .price-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.price-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15,22,44,.92), rgba(10,15,30,.92));
}
.price-card .price {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 2.15rem; font-weight: 900; margin: 12px 0 12px;
    color: var(--yellow);
}
.review footer { color: #dce7ff; margin-top: 14px; font-weight: 700; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-card { overflow: hidden; }
.gallery-card img { height: 250px; width: 100%; object-fit: cover; }
.gallery-card figcaption { padding: 18px; }
.schedule-list { display: grid; gap: 16px; }
.schedule-item {
    display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px;
    background: linear-gradient(180deg, rgba(11,17,34,.95), rgba(9,13,26,.95));
}
.schedule-item strong { font-size: 1.05rem; }
.schedule-item p { margin: 8px 0 0; color: var(--muted); }
.badge { padding: 10px 15px; border-radius: 999px; font-weight: 800; letter-spacing: .02em; }
.badge.beschikbaar { background: rgba(84,209,141,.14); color: #8df1b2; }
.badge.bijna-vol { background: rgba(255,207,40,.14); color: #ffe279; }
.badge.geboekt { background: rgba(255,111,125,.14); color: #ffb1ba; }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: start; }
.contact-card, .admin-panel { padding: 28px; }
label { display: block; font-weight: 700; margin: 14px 0 8px; }
input, textarea, select {
    width: 100%; padding: 13px 15px; border-radius: 16px;
    border: 1px solid rgba(121,227,242,.12);
    background: rgba(5,9,20,.76); color: var(--text);
    outline: none;
}
input:focus, textarea:focus, select:focus {
    border-color: rgba(121,227,242,.38);
    box-shadow: 0 0 0 4px rgba(121,227,242,.08);
}
textarea { resize: vertical; }
.site-footer {
    border-top: 1px solid rgba(121,227,242,.08);
    padding: 24px 0 34px;
    color: var(--muted);
}
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.alert {
    background: rgba(255,111,125,.11); color: #ffd4d9; border: 1px solid rgba(255,111,125,.25);
    padding: 14px 16px; border-radius: 16px; margin-bottom: 18px;
}
.alert.success { background: rgba(84,209,141,.12); color: #c9f8da; border-color: rgba(84,209,141,.22); }
.admin-body { min-height: 100vh; }
.login-shell, .admin-wrap { width: min(1180px, calc(100% - 32px)); margin: 28px auto; }
.login-shell { width: min(520px, calc(100% - 32px)); padding-top: 48px; }
.admin-wrap.wide { width: min(1320px, calc(100% - 32px)); }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.grid-2, .grid-3, .admin-grid-bottom { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.admin-grid-bottom { grid-template-columns: .9fr 1.1fr; margin-top: 18px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid rgba(121,227,242,.08); vertical-align: top; }
.table-scroll { overflow-x: auto; }
.back-link { display: inline-block; margin-top: 14px; color: var(--cyan); }
.section-intro {
    display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px;
}
.kicker { color: var(--pink); font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.stat-row {
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 30px;
}
.stat {
    padding: 18px 20px; border-radius: 22px; background: rgba(255,255,255,.035);
    border: 1px solid rgba(121,227,242,.10);
}
.stat strong { display: block; font-size: 1.7rem; color: var(--yellow); }
.stat span { color: var(--muted); display: block; margin-top: 6px; }
@media (max-width: 960px) {
    .hero-grid, .contact-grid, .cards, .pricing, .gallery-grid, .admin-grid-bottom, .stat-row { grid-template-columns: 1fr; }
    .section-intro { align-items: start; flex-direction: column; }
}
@media (max-width: 720px) {
    .grid-2, .grid-3, .nav, .footer-row, .schedule-item { grid-template-columns: 1fr; display: grid; }
    nav { justify-content: start; }
    .admin-topbar { align-items: start; flex-direction: column; }
    h1 { max-width: none; }
    .hero { padding-top: 70px; }
    .container { width: min(100% - 24px, 1180px); }
}


@keyframes floatPulse {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.01); }
}
@keyframes glowSweep {
    0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
    15% { opacity: .12; }
    50% { opacity: .18; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
@keyframes beatGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(244,108,167,0), 0 24px 70px rgba(0,0,0,.35); }
    50% { box-shadow: 0 0 35px rgba(244,108,167,.16), 0 24px 70px rgba(0,0,0,.42); }
}
.hero-card,
.hero-logo-card {
    animation: floatPulse 6s ease-in-out infinite;
}
.card, .price-card, .gallery-card, .schedule-item, .contact-card {
    overflow: hidden;
}
.card::after, .price-card::after, .gallery-card::after, .schedule-item::after, .contact-card::after {
    content:'';
    position:absolute;
    inset:0;
    width:38%;
    background: linear-gradient(90deg, transparent, rgba(121,227,242,.18), transparent);
    transform: translateX(-140%) skewX(-18deg);
    pointer-events:none;
    animation: glowSweep 7.5s linear infinite;
}
.price-card { animation: beatGlow 5.5s ease-in-out infinite; }

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.nav a,
.btn,
.gallery-card img,
.price-card,
.card {
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.card:hover,
.price-card:hover,
.gallery-card:hover {
    transform: translateY(-6px);
}
.gallery-card img:hover {
    transform: scale(1.03);
}
.hero::before {
    animation: floatPulse 10s ease-in-out infinite;
}
.hero::after {
    animation: floatPulse 12s ease-in-out infinite reverse;
}


/* Laser background effects */
body::before,
body::after{
    content:"";
    position:fixed;
    inset:-12% -12%;
    pointer-events:none;
    z-index:0;
    opacity:.55;
    mix-blend-mode:screen;
}
body::before{
    background:
        linear-gradient(112deg, transparent 20%, rgba(121,227,242,.00) 32%, rgba(121,227,242,.18) 38%, rgba(121,227,242,.00) 44%, transparent 56%),
        linear-gradient(128deg, transparent 28%, rgba(244,108,167,.00) 40%, rgba(244,108,167,.14) 46%, rgba(244,108,167,.00) 52%, transparent 64%),
        linear-gradient(98deg, transparent 36%, rgba(255,207,40,.00) 48%, rgba(255,207,40,.16) 54%, rgba(255,207,40,.00) 60%, transparent 72%);
    filter: blur(2px);
    animation: laserSweepA 14s linear infinite;
}
body::after{
    background:
        linear-gradient(72deg, transparent 16%, rgba(255,159,28,.00) 26%, rgba(255,159,28,.14) 32%, rgba(255,159,28,.00) 38%, transparent 48%),
        linear-gradient(84deg, transparent 40%, rgba(121,227,242,.00) 52%, rgba(121,227,242,.12) 58%, rgba(121,227,242,.00) 64%, transparent 74%),
        linear-gradient(64deg, transparent 54%, rgba(244,108,167,.00) 66%, rgba(244,108,167,.11) 72%, rgba(244,108,167,.00) 78%, transparent 88%);
    filter: blur(4px);
    animation: laserSweepB 18s linear infinite;
}
.site-header,
main,
.hero,
.section,
.site-footer{
    position:relative;
    z-index:1;
}
@keyframes laserSweepA{
    0%{ transform: translate3d(-4%,0,0) rotate(-2deg) scale(1); opacity:.28; }
    20%{ opacity:.5; }
    50%{ transform: translate3d(3%,1%,0) rotate(1deg) scale(1.02); opacity:.7; }
    100%{ transform: translate3d(-4%,0,0) rotate(-2deg) scale(1); opacity:.28; }
}
@keyframes laserSweepB{
    0%{ transform: translate3d(5%,-1%,0) rotate(1deg) scale(1.02); opacity:.18; }
    35%{ opacity:.4; }
    50%{ transform: translate3d(-2%,2%,0) rotate(-1deg) scale(1); opacity:.55; }
    100%{ transform: translate3d(5%,-1%,0) rotate(1deg) scale(1.02); opacity:.18; }
}
