/* ========================================
   FRIDAY THE 13TH SKIN
   Camp Crystal Lake slasher-movie aesthetic: near-black night, blood red,
   bone-white. Overrides the shared custom properties defined per-skin in
   assets/css/skin-fallout.css / inc/theme-skins.php.
   Selectors include the .login variant explicitly so this file wins on
   specificity regardless of stylesheet print order.
   ======================================== */
body.dwh-skin-jason,
body.login.dwh-skin-jason {
    --dwh-background: #0a0a0a;
    --dwh-surface: #161414;
    --dwh-surface-hover: #221c1c;
    --dwh-text: #e8e0d8;
    --dwh-text-secondary: #b8aca0;
    --dwh-text-muted: #6b5f58;
    --dwh-primary: #8b0000;
    --dwh-primary-hover: #b30000;
    --dwh-border: #8b0000;
    --dwh-border-muted: #3d2020;
    --dwh-error: #ff1a1a;
    --dwh-success: #4a6b4a;
    --dwh-warning: #d4af37;

    --dwh-glow: 0 0 8px rgba(139, 0, 0, 0.6);
    --dwh-glow-strong: 0 0 14px rgba(139, 0, 0, 0.8), 0 0 26px rgba(139, 0, 0, 0.4);
    --dwh-form-shadow: 0 0 30px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(139, 0, 0, 0.08);

    --dwh-font-primary: 'Special Elite', 'Courier New', monospace;
    --dwh-font-heading: 'Creepster', 'Special Elite', cursive;

    --dwh-font-size-base: 16px;
    --dwh-font-size-sm: 14px;
    --dwh-font-size-lg: 18px;
    --dwh-font-size-xl: 24px;
    --dwh-font-size-2xl: 32px;
}

@media (max-width: 480px) {
    body.dwh-skin-jason {
        --dwh-font-size-base: 14px;
    }
}

/* Creepster is a dripping display font - it's wide, so ease off the
   terminal-style uppercase letter-spacing default a touch */
body.dwh-skin-jason h1,
body.dwh-skin-jason h2,
body.dwh-skin-jason h3,
body.dwh-skin-jason h4,
body.dwh-skin-jason h5,
body.dwh-skin-jason h6 {
    letter-spacing: 1px;
}

/* Dripping-blood edge under the header, replacing the plain border/glow */
body.dwh-skin-jason .site-header {
    border-bottom: none;
    box-shadow: none;
}

body.dwh-skin-jason .site-header::after {
    content: "";
    display: block;
    height: 14px;
    margin: var(--dwh-spacing-md) calc(-1 * var(--dwh-spacing-xl)) calc(-1 * var(--dwh-spacing-md));
    background-repeat: repeat-x;
    background-size: 20px 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14'%3E%3Cpath fill='%238b0000' d='M0 0 H20 V4 Q10 14 0 4 Z'/%3E%3C/svg%3E");
}

/* Recolor the select-arrow SVG (style.css hardcodes a green fill) to match */
body.dwh-skin-jason select,
body.login.dwh-skin-jason .language-switcher select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b0000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
