/*
Theme Name: Refotoback
Theme URI: https://refotoback.com/
Author: Antigravity
Author URI: https://antigravity.ai/
Description: A minimalist and high-performance custom photography theme.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: refotoback
*/

:root {
    --bg: #ffffff;
    --text: #000000;
    --muted: #888888;
    --accent: #1a84c9;
    --brand-gradient: linear-gradient(135deg, #24517852 0%, #1c81c4 100%);
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}