/* assets/css/variables.css
   Global design tokens for a light, luxury theme (no dark mode).
*/

:root {
    --primary-color: #c19a3f;
    /* Warm gold */
    --primary-dark: #9f7e30;
    --secondary-color: #0b2239;
    /* Deep navy */
    --accent-color: #e9c372;
    /* Softer gold accent */
    --body-bg: #f5f7fb;
    /* Very soft light background */
    --card-bg: #ffffff;
    --text-color: #212529;
    --muted-text: #6c757d;
    --heading-color: #0b2239;

    --border-radius-lg: 1.2rem;
    --border-radius-md: 0.75rem;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-subtle: 0 8px 25px rgba(15, 23, 42, 0.08);

    --font-heading: "Playfair Display", serif;
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}