/* Google Fonts – Barlow (300, 400, 500, 600, 700, 800, 900) */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

/* Tenant font variable */
:root {
    --brand-color: #67aa40;
    --font-primary: 'Barlow', sans-serif;
    --bg-image: url('images/bg.jpg');
    --kiosk-bg: url('images/kiosk-bg.jpg');
    --footer-text: "JOY_IN_EACH_SLICE";
    --footer-text-color: var(--primary);
}

.tenant-bg {
    background-image: var(--bg-image);
    background-repeat: repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.kiosk-bg {
    background-image: var(--kiosk-bg);
    background-repeat: no-repeat;
    background-size: cover;
}

.kiosk-footer-text {
    color: var(--footer-text-color);
}

.kiosk-footer-text::after {
    content: var(--footer-text);
}