/*
Theme Name: ArtMinimal
Theme URI: https://example.com/artminimal
Author: Your Name
Author URI: https://example.com
Description: A minimalist, high-performance WordPress theme for art galleries and artists.
Version: 1.0.0
Text Domain: art-minimal
*/

:root {
    /* Colors */
    --color-bg-primary: #f9f9f9;
    /* Warm White / Very Light Grey */
    --color-bg-secondary: #ffffff;
    --color-text-primary: #1a1a1a;
    /* Soft Black */
    --color-text-secondary: #555555;
    --color-accent: #d4af37;
    /* Muted Gold */
    --color-border: #e0e0e0;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --container-width: 1200px;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

/* Reset for a clean slate */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Alignments */
.container,
.ast-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}