/*
Theme Name: CentricCom Ultimate - Professional IT Solutions
Theme URI: https://centriccom.de/theme-ultimate
Author: CentricCom Architect
Author URI: https://centriccom.de
Description: A high-performance, Elementor-ready WordPress theme for IT system houses and tech agencies. Built with a focus on Bento-Grid layouts and conversion.
Version: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: centriccom-ultimate
Tags: elementor, it-services, bento-grid, clean, corporate, high-performance
*/

/* --- DESIGN SYSTEM --- */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --bg-dark: #020617;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- BENTO GRID SYSTEM --- */
.bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.bento-item {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.bento-item.dark {
    background: var(--bg-dark);
    color: white;
}

/* --- WORDPRESS CORE CLASSES --- */
.alignfull { margin: 2rem calc(50% - 50vw); max-width: 100vw; width: 100vw; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}
.btn-primary:hover { background: var(--bg-dark); transform: scale(1.02); }
