/*
Theme Name: Desiora
Theme URI: https://example.com/desiora
Author: Antigravity
Author URI: https://antigravity.google
Description: A premium, modern, and highly customizable WordPress theme built with rich aesthetics, smooth animations, and full WooCommerce support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: desiora
Tags: custom-menu, featured-images, translation-ready, woocommerce, responsive-layout, block-styles
*/

/* ==========================================================================
   Root CSS Variables (Premium Color Palette & Typography)
   ========================================================================== */
:root {
    --primary: #1e3a8a;
    --primary-hover: #1d4ed8;
    --secondary: #1e3a8a;
    --accent: #f59e0b;
    
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Poppins', 'Playfair Display', Georgia, serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --shadow-premium: 0 4px 24px rgba(15, 23, 42, 0.08);
}
html,
body {
    background-color: #ffffff;
    color: var(--text-main);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    margin-top: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
