/* ═══════════════════════════════════════════════════════════════
   allehits.nl — consistent design system with theme support
   ═══════════════════════════════════════════════════════════════ */

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

/* ── COLOUR THEMES ───────────────────────────────────────────────
   One place to change everything. Swap --accent & --accent-2.
   Theme is saved in localStorage and applied via JS.
   ──────────────────────────────────────────────────────────────── */

:root {
    /* Default theme: purple/cyan (DJSelect) */
    --accent:        #8b5cf6;
    --accent-2:      #00e5ff;
    --accent-glow:   rgba(139,92,246,0.35);
    --accent-lt:     rgba(139,92,246,0.12);
    --accent-border: rgba(139,92,246,0.30);
    --accent-hover:  rgba(139,92,246,0.55);

    /* Background & surfaces */
    --bg:            #080c18;
    --surface:       rgba(25,35,60,0.85);
    --surface-hover: rgba(30,42,72,0.92);
    --border:        rgba(139,92,246,0.25);
    --border-hover:  rgba(139,92,246,0.55);

    /* Text */
    --text:          #e2e8f0;
    --text-muted:    #94a3b8;
    --text-dim:      #8896a8;
    --white:         #ffffff;

    /* Consistent interaction tokens */
    --transition:    0.22s ease;
    --radius:        14px;
    --radius-sm:     10px;
    --radius-pill:   30px;
    --glow-sm:       0 0 16px var(--accent-glow);
    --glow-md:       0 0 32px var(--accent-glow);
    --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
    --shadow-raised: 0 8px 40px rgba(0,0,0,0.55);
}

/* ── AVAILABLE THEMES (applied by JS to :root) ── */
[data-theme="orange"] {
    --accent: #f97316; --accent-2: #fbbf24;
    --accent-glow: rgba(249,115,22,0.35); --accent-lt: rgba(249,115,22,0.12);
    --accent-border: rgba(249,115,22,0.30); --accent-hover: rgba(249,115,22,0.55);
    --border: rgba(249,115,22,0.25); --border-hover: rgba(249,115,22,0.55);
    --surface: rgba(40,20,5,0.85); --surface-hover: rgba(50,25,8,0.92);
}
[data-theme="red"] {
    --accent: #ef4444; --accent-2: #fb923c;
    --accent-glow: rgba(239,68,68,0.35); --accent-lt: rgba(239,68,68,0.12);
    --accent-border: rgba(239,68,68,0.30); --accent-hover: rgba(239,68,68,0.55);
    --border: rgba(239,68,68,0.25); --border-hover: rgba(239,68,68,0.55);
    --surface: rgba(40,5,5,0.85); --surface-hover: rgba(50,8,8,0.92);
}
[data-theme="green"] {
    --accent: #10b981; --accent-2: #34d399;
    --accent-glow: rgba(16,185,129,0.35); --accent-lt: rgba(16,185,129,0.12);
    --accent-border: rgba(16,185,129,0.30); --accent-hover: rgba(16,185,129,0.55);
    --border: rgba(16,185,129,0.25); --border-hover: rgba(16,185,129,0.55);
    --surface: rgba(5,30,20,0.85); --surface-hover: rgba(8,38,25,0.92);
}
[data-theme="gold"] {
    --accent: #eab308; --accent-2: #fde047;
    --accent-glow: rgba(234,179,8,0.35); --accent-lt: rgba(234,179,8,0.12);
    --accent-border: rgba(234,179,8,0.30); --accent-hover: rgba(234,179,8,0.55);
    --border: rgba(234,179,8,0.25); --border-hover: rgba(234,179,8,0.55);
    --surface: rgba(30,25,5,0.85); --surface-hover: rgba(40,33,8,0.92);
}
[data-theme="light"] {
    --bg: #1a1030; --accent: #a78bfa; --accent-2: #7dd3fc;
    --accent-glow: rgba(167,139,250,0.30); --accent-lt: rgba(167,139,250,0.12);
    --accent-border: rgba(167,139,250,0.30); --accent-hover: rgba(167,139,250,0.55);
    --border: rgba(167,139,250,0.25); --border-hover: rgba(167,139,250,0.55);
    --surface: rgba(40,25,70,0.85); --surface-hover: rgba(50,32,88,0.92);
}

/* ── BASE ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, Arial, sans-serif;
    font-size: 16px; line-height: 1.7;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--text-muted); line-height: 1.8; }

/* ── ANIMATED BACKGROUND ──────────────────────────────────────── */
.ah-bg-base { position: fixed; inset: 0; z-index: -20; background: var(--bg); transition: background 0.5s; }

.ah-orb { position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0; animation: ahOrbFloat linear infinite; z-index: -15; pointer-events: none; transition: background 0.5s; }
.ah-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); top: -150px; left: -100px; animation-duration: 20s; }
.ah-orb-2 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%); top: 20%; right: -120px; animation-duration: 26s; animation-delay: -7s; }
.ah-orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); bottom: 10%; left: 30%; animation-duration: 22s; animation-delay: -12s; opacity: 0; }
.ah-orb-4 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%); bottom: 30%; right: 10%; animation-duration: 16s; animation-delay: -4s; }

@keyframes ahOrbFloat {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    10%  { opacity: 1; }
    50%  { opacity: 1; transform: translateY(-40px) scale(1.08); }
    90%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(0) scale(1); }
}

.ah-bg-grid {
    position: fixed; inset: 0; z-index: -14;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: ahGridDrift 60s linear infinite;
}
@keyframes ahGridDrift { 0% { background-position: 0 0; } 100% { background-position: 48px 48px; } }

.ah-scanline {
    position: fixed; left: 0; right: 0; height: 2px; z-index: -13; opacity: 0;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
    animation: ahScan 10s ease-in-out infinite;
}
@keyframes ahScan { 0% { top: -2px; opacity: 0; } 5% { opacity: 0.5; } 95% { opacity: 0.5; } 100% { top: 100vh; opacity: 0; } }

.ah-particle { position: fixed; border-radius: 50%; pointer-events: none; z-index: -12; animation: ahParticle linear infinite; }
@keyframes ahParticle { 0% { transform: translateY(100vh); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-10vh); opacity: 0; } }

/* ── NAVIGATION ───────────────────────────────────────────────── */
.ah-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    height: 68px;
    background: rgba(8,12,24,0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    transition: border-color var(--transition), background var(--transition);
}
.ah-logo { font-size: 20px; font-weight: 800; letter-spacing: 1px; color: var(--white); transition: color var(--transition); }
.ah-logo em { color: var(--accent); font-style: normal; transition: color var(--transition); }

/* Equalizer */
.ah-equalizer { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-left: 14px; }
.ah-eq-bar { width: 3px; border-radius: 2px; background: linear-gradient(to top, var(--accent), var(--accent-2)); animation: ahEq ease-in-out infinite alternate; box-shadow: 0 0 4px var(--accent-glow); transition: background var(--transition); }
@keyframes ahEq { 0% { height: 3px; opacity: 0.4; } 100% { height: 22px; opacity: 1; } }
.ah-eq-bar:nth-child(1) { animation-duration: 0.50s; animation-delay: 0.00s; }
.ah-eq-bar:nth-child(2) { animation-duration: 0.70s; animation-delay: 0.10s; }
.ah-eq-bar:nth-child(3) { animation-duration: 0.40s; animation-delay: 0.20s; }
.ah-eq-bar:nth-child(4) { animation-duration: 0.80s; animation-delay: 0.05s; }
.ah-eq-bar:nth-child(5) { animation-duration: 0.55s; animation-delay: 0.15s; }
.ah-eq-bar:nth-child(6) { animation-duration: 0.65s; animation-delay: 0.30s; }
.ah-eq-bar:nth-child(7) { animation-duration: 0.45s; animation-delay: 0.08s; }
.ah-eq-bar:nth-child(8) { animation-duration: 0.75s; animation-delay: 0.22s; }
.ah-eq-bar:nth-child(9) { animation-duration: 0.50s; animation-delay: 0.18s; }
.ah-eq-bar:nth-child(10){ animation-duration: 0.60s; animation-delay: 0.12s; }

/* Nav links */
.ah-nav-links { display: flex; gap: 32px; list-style: none; }
.ah-nav-links a { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: color var(--transition); position: relative; padding-bottom: 4px; }
.ah-nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform var(--transition), background var(--transition); }
.ah-nav-links a:hover, .ah-nav-links a.actief { color: var(--white); }
.ah-nav-links a:hover::after, .ah-nav-links a.actief::after { transform: scaleX(1); }

.ah-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.ah-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* CTA button in nav */
.ah-nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); border: none; padding: 9px 22px;
    border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
    cursor: pointer; text-decoration: none; letter-spacing: 0.5px;
    box-shadow: var(--glow-sm);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.ah-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--glow-md); color: var(--white); }

/* ── PAGE ─────────────────────────────────────────────────────── */
.ah-page { padding-top: 68px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.ah-hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.ah-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ah-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(8,12,24,0.92) 0%, rgba(8,12,24,0.75) 40%, rgba(8,12,24,0.25) 100%);
}
.ah-hero-content { padding: 80px 64px 32px; max-width: 580px; position: relative; z-index: 2; }
.ah-hero-badge {
    display: inline-block; border: 1px solid var(--accent-border);
    background: var(--accent-lt); color: var(--accent-2);
    border-radius: var(--radius-pill); padding: 6px 16px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.ah-hero h1 { font-size: clamp(36px, 6vw, 68px); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 8px; letter-spacing: -1px; }
.ah-hero-subtitle { font-size: clamp(14px, 2vw, 20px); font-weight: 300; color: var(--accent); margin-bottom: 18px; letter-spacing: 2px; text-transform: uppercase; transition: color var(--transition); }
.ah-hero p { color: rgba(226,232,240,0.85); font-size: 16px; line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.ah-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ah-hero-stats { display: flex; gap: 48px; padding: 0 64px 48px; position: relative; z-index: 2; }
.ah-hero-stat-num { font-size: 26px; font-weight: 800; color: var(--accent-2); line-height: 1; transition: color var(--transition); }
.ah-hero-stat-lbl { font-size: 10px; color: var(--text-dim); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* ── PAGE HERO (subpages) ─────────────────────────────────────── */
.ah-page-hero { position: relative; height: 52vh; min-height: 300px; display: flex; align-items: flex-end; overflow: hidden; }
.ah-page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.82); }
.ah-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,24,0.92) 0%, rgba(8,12,24,0.3) 45%, transparent 75%); }
.ah-page-hero-content { position: relative; z-index: 2; padding: 48px 64px; }
.ah-page-hero-content h1 { font-size: clamp(26px, 5vw, 48px); font-weight: 800; color: var(--white); line-height: 1.15; }

/* ── BUTTONS — consistent across whole site ───────────────────── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); border: none;
    padding: 13px 30px; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600; cursor: pointer;
    text-decoration: none; letter-spacing: 0.3px;
    box-shadow: var(--glow-sm);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-md); color: var(--white); opacity: 0.92; }
.btn-primary:active { transform: translateY(0); box-shadow: var(--glow-sm); }

.btn-outline {
    display: inline-block;
    background: transparent; color: var(--text-muted);
    border: 1.5px solid var(--border);
    padding: 12px 28px; border-radius: var(--radius-pill);
    font-size: 14px; cursor: pointer; text-decoration: none; letter-spacing: 0.3px;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--white); background: var(--accent-lt); }
.btn-outline:active { opacity: 0.8; }

/* ── SECTIONS ─────────────────────────────────────────────────── */
.ah-section { padding: 80px 64px; }
.ah-section.bg2 { background: rgba(13,18,33,0.5); }
.ah-section-inner { max-width: 1100px; margin: 0 auto; }
.ah-section-label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; font-weight: 500; }
.ah-section-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.ah-section-sub { color: var(--text-muted); font-size: 16px; max-width: 560px; line-height: 1.75; }

/* ── GLASS CARD — consistent base ────────────────────────────── */
.ah-glass {
    background: var(--surface);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.ah-glass:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-raised), var(--glow-sm);
    transform: translateY(-3px);
}
.ah-glass:active { transform: translateY(-1px); }

/* ── SERVICE CARDS ────────────────────────────────────────────── */
.ah-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 36px; }

.ah-card {
    padding: 28px 24px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Dark gradient overlay for readability */
.ah-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.50) 50%,
        rgba(0,0,0,0.22) 100%
    );
    z-index: 0;
    border-radius: inherit;
    transition: background var(--transition);
}
.ah-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.30) 100%
    );
}

/* Keep content above overlay */
.ah-card > * { position: relative; z-index: 1; }

/* Force white text on photo backgrounds */
.ah-card h3 { font-size: 15px; font-weight: 700; color: #ffffff !important; margin-bottom: 8px; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.ah-card p  { font-size: 14px; color: rgba(255,255,255,0.82) !important; line-height: 1.65; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.ah-card-icon { font-size: 28px; margin-bottom: 14px; }

/* Individual card backgrounds — update filenames to match your uploads */
.ah-card:nth-child(1) { background-image: url('/uploads/fotos/huwelijk.jpg');   } /* wedding      */
.ah-card:nth-child(2) { background-image: url('/uploads/fotos/verjaardag.jpg'); } /* birthday     */
.ah-card:nth-child(3) { background-image: url('/uploads/fotos/themafeest.jpg'); } /* disco/theme  */
.ah-card:nth-child(4) { background-image: url('/uploads/fotos/arnold.jpg');     } /* Arnold photo */

/* Cards inherit ah-glass */
.ah-card.ah-glass:hover { color: var(--text); }

/* ── ABOUT ────────────────────────────────────────────────────── */
.ah-about { display: grid; grid-template-columns: 1fr 1.5fr; max-width: 1100px; margin: 0 auto; overflow: hidden; }
.ah-about-photo { position: relative; min-height: 460px; overflow: hidden; }
.ah-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ah-about-photo-placeholder { width: 100%; height: 100%; min-height: 460px; background: rgba(17,24,39,0.6); display: flex; align-items: center; justify-content: center; color: var(--text-dim); flex-direction: column; gap: 12px; }
.ah-about-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.ah-about-body h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.ah-about-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }

.ah-stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.ah-stat-num { font-size: 26px; font-weight: 800; color: var(--accent); line-height: 1; transition: color var(--transition); }
.ah-stat-lbl { font-size: 10px; color: var(--text-dim); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

.ah-venue-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.ah-tag { border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px 14px; font-size: 12px; color: var(--text-muted); transition: border-color var(--transition), color var(--transition); }
.ah-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── INFO STRIP ───────────────────────────────────────────────── */
.ah-info-strip {
    background: linear-gradient(135deg, var(--accent-lt), rgba(0,229,255,0.06));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 22px 64px; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; flex-wrap: wrap;
    transition: background var(--transition), border-color var(--transition);
}
.ah-info-strip-text strong { font-size: 15px; font-weight: 600; color: var(--white); display: block; }
.ah-info-strip-text span { font-size: 13px; color: var(--text-muted); }
.btn-dark {
    background: var(--accent-lt); color: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 9px 22px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600; text-decoration: none; flex-shrink: 0;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--accent-border); color: var(--white); transform: translateY(-1px); }

/* ── GENRE IMAGE ──────────────────────────────────────────────── */
.ah-genre-img-wrap {
    margin-top: 32px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--accent-border);
    box-shadow: var(--glow-sm);
    cursor: zoom-in;
}
.ah-genre-hint {
    position: absolute;
    top: 10px; right: 12px;
    z-index: 2;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.45);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    pointer-events: none;
}
@media (max-width: 900px) {
    .ah-genre-hint { top: auto; bottom: 10px; right: 12px; }
}
.ah-genre-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.ah-genre-img-wrap:hover img { transform: scale(1.02); filter: brightness(1.08); }

/* Subtle theme colour overlay */
.ah-genre-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    border-radius: var(--radius);
    transition: opacity 0.4s ease;
}
.ah-genre-img-wrap:hover::after { opacity: 0.5; }

.ah-genre-img-pc     { display: block !important; }
.ah-genre-img-mobile { display: none !important; }

@media (max-width: 900px) {
    .ah-genre-img-pc     { display: none !important; }
    .ah-genre-img-mobile { display: block !important; }
}

/* ── GENRE LIGHTBOX ───────────────────────────────────────────── */
.ah-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}
.ah-lightbox.open { display: flex; }
.ah-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    border: 1px solid var(--accent-border);
    box-shadow: var(--glow-md);
    object-fit: contain;
    cursor: zoom-out;
}
.ah-lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.ah-lightbox-close:hover { opacity: 1; }

/* ── TECH BLOCKS ──────────────────────────────────────────────── */
.ah-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.ah-tech-block { padding: 36px 32px; }
.ah-tech-block h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.ah-tech-block p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.ah-niet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ah-niet-tag { background: var(--accent-lt); border: 1px solid var(--accent-border); border-radius: var(--radius-pill); padding: 3px 12px; font-size: 12px; color: var(--text-muted); }

/* ── REVIEWS ──────────────────────────────────────────────────── */
.ah-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 32px; }
.ah-review { padding: 28px; }
.ah-review-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; transition: color var(--transition); }
.ah-review-text { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.ah-review-name { font-size: 13px; font-weight: 600; color: var(--white); }
.ah-review-bron { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

/* ── MEDIA GRID ───────────────────────────────────────────────── */
.ah-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 32px; }
.ah-media-item {
    border-radius: var(--radius-sm); overflow: hidden;
    background: rgba(17,24,39,0.6); aspect-ratio: 4/3;
    position: relative; cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.ah-media-item:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--glow-sm); border-color: var(--border-hover); }
.ah-media-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ah-media-item:hover img { transform: scale(1.04); }
.ah-media-item video { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA STRIP ────────────────────────────────────────────────── */
.ah-cta {
    padding: 80px 64px; text-align: center;
    background: radial-gradient(ellipse at 50% 50%, var(--accent-lt) 0%, transparent 70%);
    border-top: 1px solid var(--border);
    transition: background var(--transition);
}
.ah-cta h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.ah-cta p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.ah-footer-new {
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(8,12,24,0.97) 40px, rgba(8,12,24,1) 100%);
    padding: 0 64px 0;
    margin-top: 0;
}
.ah-footer-fade {
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(8,12,24,0.98));
    margin: 0 -64px;
}
.ah-footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 20px 0 24px;
    border-top: 1px solid var(--border);
    flex-wrap: nowrap;
}
.ah-footer-brand { flex-shrink: 0; }
.ah-footer-logo-text { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 1px; }
.ah-footer-logo-text em { color: var(--accent); font-style: normal; transition: color var(--transition); }
.ah-footer-eq { height: 22px; margin-top: 2px; }
.ah-footer-tagline { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-top: 4px; }

.ah-footer-contact { display: flex; flex-direction: row; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.ah-footer-link {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 13px; text-decoration: none;
    transition: color var(--transition);
}
.ah-footer-link:hover { color: var(--accent); }
.ah-footer-link-icon { font-size: 13px; opacity: 0.6; width: 16px; text-align: center; }

.ah-footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Legacy - keep for admin */
.ah-footer-logo { font-size: 16px; font-weight: 700; color: var(--text-dim); }
.ah-footer-logo em { color: var(--accent); font-style: normal; }

/* ── FORM ─────────────────────────────────────────────────────── */
.ah-form-wrap { max-width: 720px; margin: 0 auto; }
.ah-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.ah-form-group { display: flex; flex-direction: column; }
.ah-form-group.full { grid-column: 1 / -1; }
.ah-form-group label { color: var(--text-dim); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 7px; }
.ah-form-group input,
.ah-form-group select,
.ah-form-group textarea {
    background: rgba(8,12,24,0.7);
    border: 1px solid var(--border);
    color: var(--white); padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px; font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.ah-form-group input:focus,
.ah-form-group select:focus,
.ah-form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lt); }
.ah-form-group select option { background: #0d1221; }
.ah-form-group textarea { min-height: 130px; resize: vertical; }

/* Steps */
.ah-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.ah-step-num { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); color: var(--text-dim); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.ah-step-lbl { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; transition: color var(--transition); }
.ah-step-line { width: 40px; height: 1px; background: var(--border); margin: 0 12px; transition: background var(--transition); }

/* ── FLATPICKR DARK THEME ─────────────────────────────────────── */
.flatpickr-calendar {
    background: #0d1221 !important; border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-raised), var(--glow-sm) !important;
    padding: 8px !important; font-family: inherit !important;
}
.flatpickr-calendar.arrowTop::before, .flatpickr-calendar.arrowTop::after { display: none !important; }
.flatpickr-months { background: transparent !important; padding: 4px 0 8px !important; }
.flatpickr-month { background: transparent !important; color: var(--white) !important; height: 36px !important; }
.flatpickr-current-month { color: var(--white) !important; font-size: 15px !important; font-weight: 600 !important; }
.flatpickr-current-month input.cur-year { color: var(--white) !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months { background: #0d1221 !important; color: var(--white) !important; border: none !important; }
.flatpickr-prev-month, .flatpickr-next-month { color: var(--accent) !important; fill: var(--accent) !important; padding: 8px !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { color: var(--white) !important; }
.flatpickr-weekdays { background: transparent !important; }
span.flatpickr-weekday { background: transparent !important; color: var(--accent) !important; font-size: 11px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.flatpickr-days { border: none !important; }
.dayContainer { padding: 4px 0 !important; }
.flatpickr-day { color: var(--text) !important; border-radius: 8px !important; height: 36px !important; line-height: 36px !important; font-size: 13px !important; border: 1px solid transparent !important; transition: background var(--transition), color var(--transition) !important; }
.flatpickr-day:hover { background: var(--accent-lt) !important; border-color: var(--accent-border) !important; color: var(--white) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--accent) !important; border-color: var(--accent) !important; color: var(--white) !important; box-shadow: var(--glow-sm) !important; }
.flatpickr-day.today { border-color: var(--accent-border) !important; color: var(--accent) !important; }
.flatpickr-day.today:hover { background: var(--accent-lt) !important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: rgba(255,255,255,0.15) !important; background: transparent !important; }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.ah-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ah-reveal.visible { opacity: 1; transform: translateY(0); }

/* Badge responsive */
.badge-short { display: none; }
.badge-full  { display: inline; }

/* ── THEME PICKER WIDGET ──────────────────────────────────────── */
.ah-theme-picker {
    position: fixed; bottom: 24px; right: 24px; z-index: 8888;
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.ah-theme-toggle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    backdrop-filter: blur(12px); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; box-shadow: var(--shadow-card), var(--glow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.ah-theme-toggle:hover { transform: scale(1.1); box-shadow: var(--shadow-raised), var(--glow-md); }
.ah-theme-panel {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px;
    backdrop-filter: blur(20px); box-shadow: var(--shadow-raised), var(--glow-sm);
    display: none; min-width: 180px;
}
.ah-theme-panel.open { display: block; }
.ah-theme-panel p { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.ah-theme-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ah-swatch {
    width: 100%; aspect-ratio: 1; border-radius: 8px; cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), border-color var(--transition);
    font-size: 11px; font-weight: 600; color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.ah-swatch:hover { transform: scale(1.08); }
.ah-swatch.active { border-color: var(--white); box-shadow: 0 0 12px rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .ah-nav { padding: 0 20px; }
    .ah-nav-links { display: none; }
    .ah-nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(8,12,24,0.97);
        padding: 20px 24px; gap: 16px;
        border-bottom: 1px solid var(--border); z-index: 9998;
    }
    .ah-nav-links.open a { font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .ah-hamburger { display: block; }
    .ah-equalizer { display: none; }
    .ah-nav-cta { display: none; }

    .ah-section { padding: 48px 24px; }
    .ah-page-hero-content { padding: 24px; }

    .ah-about { grid-template-columns: 1fr; }
    .ah-about-photo { min-height: 280px; }
    .ah-about-body { padding: 32px 24px; }

    .ah-tech-grid { grid-template-columns: 1fr; }
    .ah-tech-block { padding: 28px 22px; }

    .ah-info-strip { padding: 20px 24px; flex-direction: column; gap: 14px; }
    .ah-info-strip .btn-dark { width: 100%; text-align: center; }

    .ah-cta { padding: 56px 24px; }
    .ah-footer-new { padding: 0 24px; }
    .ah-footer-fade { margin: 0 -24px; }
    .ah-footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
    .ah-footer-contact { flex-direction: column; align-items: flex-start; gap: 6px; justify-content: flex-start; }
    .ah-footer-bottom { font-size: 10px; }

    .ah-form-row { grid-template-columns: 1fr; gap: 14px; }
    .ah-step-lbl { display: none; }
    .ah-step-line { width: 24px; }

    .ah-cards { grid-template-columns: 1fr 1fr; }
    .ah-media-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ah-reviews-grid { grid-template-columns: 1fr; }
    .ah-hero-stats { gap: 28px; padding: 0 24px 40px; }
    .ah-theme-picker { bottom: 16px; right: 16px; }
}

@media (max-width: 600px) {
    .ah-genre-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .ah-genre-card { padding: 14px 12px; }
    .ah-genre-card i { font-size: 20px; }
    .ah-genre-card strong { font-size: 12px; }
    .ah-genre-card p { font-size: 12px; }

    .ah-nav { height: 58px; }
    .ah-page { padding-top: 58px; }
    .ah-nav-links.open { top: 58px; }
    .ah-logo { font-size: 17px; }

    .ah-hero { min-height: 100svh; }
    .ah-hero-content { padding: 32px 20px 24px; max-width: 100%; }
    .ah-hero h1 { font-size: 34px; letter-spacing: -0.5px; }
    .ah-hero-subtitle { font-size: 13px; }
    .ah-hero p { font-size: 14px; margin-bottom: 24px; }
    .ah-hero-btns { flex-direction: column; gap: 10px; }
    .ah-hero-btns .btn-primary, .ah-hero-btns .btn-outline { width: 100%; text-align: center; }
    .ah-hero-stats { gap: 20px; padding: 16px 20px 32px; }
    .ah-hero-stat-num { font-size: 20px; }
    .ah-hero-stat-lbl { font-size: 9px; }
    .ah-hero-overlay { background: linear-gradient(180deg, rgba(8,12,24,0.45) 0%, rgba(8,12,24,0.6) 40%, rgba(8,12,24,0.88) 70%, rgba(8,12,24,0.97) 100%) !important; }

    .badge-short { display: inline; }
    .badge-full  { display: none; }

    .ah-cards { grid-template-columns: 1fr; }
    .ah-media-grid { grid-template-columns: 1fr; }
    .ah-page-hero { height: 38vh; min-height: 200px; }
    .ah-page-hero-content h1 { font-size: 22px; }
    .ah-form-group input, .ah-form-group select, .ah-form-group textarea { font-size: 16px; }
    .btn-primary, .btn-outline { padding: 12px 22px; font-size: 14px; }
    .ah-about-photo { min-height: 240px; }
}