/* === Grillmarks Festival — Global Styles === */

:root {
    --color-bg: #ffffff;
    --color-surface: #f7f7f8;
    --color-border: #e5e5e7;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-accent: #1a1a1a;
    --color-accent-hover: #333;
    --color-success: #16a34a;
    --color-warning: #ca8a04;
    --color-error: #dc2626;
    --color-star: #f59e0b;
    --color-star-inactive: #d4d4d8;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-heading: var(--font-body);

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    --radius: 12px;
    --max-width: 480px;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: none;
    color: inherit;
}

input {
    font: inherit;
    color: inherit;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}
