/* ============================================================
   Identidade visual do Wine Daily: navy profundo, dourado e vinho.
   Espelha os tokens de src/WineDaily/wwwroot/css/site.css — os dois
   apps precisam ficar iguais; ao mudar uma cor aqui, mude lá também.
   ============================================================ */

:root {
    --bg: #0a1430;
    --bg-elevated: #101f45;
    --bg-input: #162853;
    --border: #24356b;
    --gold: #c9a45c;
    --gold-bright: #e8cf96;
    --gold-dark: #9a7a3c;
    --text: #f3ead6;
    --text-muted: #9aa6c8;
    --wine: #5c1832;
    --wine-deep: #3f1024;
    --error: #f0938f;

    --font-display: "Cinzel", Georgia, "Times New Roman", serif;
    --font-body: "EB Garamond", Georgia, "Times New Roman", serif;
}

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

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
}

img {
    max-width: 100%;
}
