@import "shared/base.css";

:root {
    /* Nick Vol-au-vent Theme - Warm & Creamy */
    --bg-color: #1a1612;
    /* Very dark warm brown */
    --text-primary: #fff8f0;
    /* Cream white */
    --text-secondary: #d4c6b0;
    --accent-color: #d4a574;
    /* Warm golden brown - puff pastry */
    --accent-hover: #c49564;
    --warning-yellow: #f4e4c1;
    /* Creamy beige */
    --sauce-cream: #f5e8d0;
    /* Cream sauce color */
}

body {
    background-color: var(--bg-color);
    background-image:
        url('assets/vol-au-vent-pattern.png'),
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 232, 208, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 100% 100%, 100% 100%;
    background-repeat: repeat, no-repeat, no-repeat;
    background-position: 0 0, center, center;
    background-blend-mode: overlay, normal, normal;
}

.logo {
    display: none;
}

h1 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Vol-au-vent Loader - Creamy & Warm */
.scandal-bar-bg {
    background-color: rgba(26, 22, 18, 0.9);
    border: 2px solid var(--accent-color);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scandal-bar-fill {
    background: repeating-linear-gradient(45deg,
            var(--accent-color),
            var(--accent-color) 10px,
            var(--sauce-cream) 10px,
            var(--sauce-cream) 20px);
}

.scandal-bar-fill.indeterminate {
    animation: move-stripes 1s linear infinite, warm-glow 2s ease-in-out infinite;
}

@keyframes warm-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(212, 165, 116, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(212, 165, 116, 0.8), 0 0 20px rgba(245, 232, 208, 0.5);
    }
}