/*
Theme Name: Dimensia Creative
Theme URI: 
Author: Antigravity
Author URI: 
Description: High-End Digital Agency, Production House (Video/Photo), & AI Technology Integrator theme. Cinematic, Minimalist, Bold, and Premium.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dimensiacreative
*/

/* Custom CSS to supplement Tailwind */
:root {
    --primary-bg: #000000;
    --accent-orange: #FF8C00;
}

body {
    background-color: var(--primary-bg);
    color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, .font-serif, .font-mono, .font-sans {
    font-family: 'Montserrat', sans-serif !important;
}

.text-accent { color: var(--accent-orange); }
.bg-accent { background-color: var(--accent-orange); }
.border-accent { border-color: var(--accent-orange) !important; }

/* Custom Animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-slow-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
.animate-spin-slow {
  animation: spin-slow 15s linear infinite;
}
.animate-spin-slow-reverse {
  animation: spin-slow-reverse 20s linear infinite;
}
