/* /css/variables.css */
/* This file contains all theme-specific variables for reshoot.pro. */
/* Theme: High-end Photography Studio (Gold/White) */

:root {
    /* Color Palette */
    --color-primary-accent: #B8860B;      /* Dark Goldenrod - A rich, premium gold for buttons and highlights */
    --color-primary-accent-hover: #D4AF37;/* Pale Goldenrod - A slightly lighter gold for hover effects */
    --color-background: #FDFCF8;          /* A very light, warm off-white, reminiscent of a studio backdrop */
    --color-card: #FFFFFF;                /* Pure white for cards and modals to maintain a clean, spacious feel */
    --color-border: #F0EAD6;              /* A soft, warm, and subtle border color that complements the theme */
    --text-dark: #3D3D3D;                 /* A dark, charcoal gray for main text that's softer than pure black */
    --text-muted: #8A8A8A;                /* A medium gray for secondary text, placeholders, and descriptions */
    --text-on-primary: #FFFFFF;           /* White text on gold buttons for high contrast and readability */

    /* Semantic Colors (kept for utility notifications like success/error messages) */
    --color-success-bg: #F0FDF4;
    --color-success-border: #BBF7D0;
    --color-success-text: #166534;
    --color-warning-bg: #FFFBEB;
    --color-warning-border: #FDE68A;
    --color-warning-text: #92400E;
    --color-danger-text: #DC2626;

    /* Typography */
    /* Note: The required fonts are imported in the main index.php file */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Lora', serif;
}

body {
    font-family: var(--font-sans); /* Default to the clean sans-serif font */
    background-color: var(--color-background);
    color: var(--text-dark);
}

/* Apply the elegant serif font to all heading levels for a touch of class */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}
