/*
Theme Name: MOZ - Digital Masterpiece
Theme URI: https://digitalcavemen.com
Author: Virtuoso Architect
Author URI: https://digitalcavemen.com
Description: A high-end, invisible framework designed for physics-based animations and Elementor synergy.
Version: 1.0.0
Text Domain: moz-theme
*/

/* -------------------------------------------------------------------------- */
/*	01. FONTS & IMPORTS
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap');

/* -------------------------------------------------------------------------- */
/*	02. CORE VARIABLES (Tailwind Equivalents)
/* -------------------------------------------------------------------------- */
:root {
    --color-background: #F2F1EE;
    --color-surface: #EAE8E3;
    --color-primary: #0A0A0A;
    --color-secondary: #666666;
    --color-accent: #D4D4D0;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
}

/* -------------------------------------------------------------------------- */
/*	03. BASE STYLES
/* -------------------------------------------------------------------------- */
body {
    background-color: var(--color-background);
    color: var(--color-primary);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/*	04. VISUAL SIGNATURE (Glass & Physics)
/* -------------------------------------------------------------------------- */

/* Premium Glass Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-panel-dark {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #F2F1EE;
}

/* Refined Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #F2F1EE;
}
::-webkit-scrollbar-thumb {
    background: #D4D4D0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0A0A0A;
}

/* -------------------------------------------------------------------------- */
/*	05. WORDPRESS CORE COMPATIBILITY
/* -------------------------------------------------------------------------- */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
img { max-width: 100%; height: auto; }
