/* =======================================
   DYNAMIC THEME CSS - AUTO-GENERATED
   Generated: 2026-06-04 23:29:23   ======================================= */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Custom Theme Colors */
    --primary-color: #e44d0c;
    --primary-dark: #c1410a;
    --primary-rgb: 228, 77, 12;
    
    --secondary-color: #f2f2f2;
    --secondary-rgb: 242, 242, 242;
    
    --accent-color: #f7f7f7;
    --accent-rgb: 247, 247, 247;
    
    /* Dynamic gradients based on primary color */
    --gradient-primary: linear-gradient(135deg, #e44d0c 0%, #f7f7f7 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(228, 77, 12, 0.9), rgba(247, 247, 247, 0.9));
    
    /* Transition speed based on animation settings */
    --transition-speed: 0.3s;
}

/* =======================================
   SITE-WIDE TYPOGRAPHY
   ======================================= */
body, html {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Apply font to all major elements */
h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea, label {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


/* Button Styles */
.btn-primary, .btn.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 14px rgba(228, 77, 12, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c1410a 0%, #d1d1d1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 77, 12, 0.4);
}


/* Card Styles */
.card, .portfolio-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover, .portfolio-card:hover {
    box-shadow: 0 10px 25px rgba(228, 77, 12, 0.2);
    transform: translateY(-4px);
}


/* Navbar Blur Effect */
.modern-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* Smooth Animations */
* {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn, .card, .portfolio-card, .nav-link, .filter-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Homepage Background Customization */
<br />
<b>Warning</b>:  Undefined array key "background_type" in <b>/home/sc1ekoa3527/tonioart.com/theme.css.php</b> on line <b>312</b><br />
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    opacity: 0;
    z-index: 1;
}


/* Accent Color Applications */
.gradient-text, h1, .rainbow-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: var(--primary-color);
}

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

.nav-links a:hover,
.nav-links a.active {
    background: rgba(228, 77, 12, 0.15);
    box-shadow: 0 4px 15px rgba(228, 77, 12, 0.2);
}

.filter-btn.active {
    border-color: var(--primary-color);
    color: white;
}

.portfolio-overlay {
    background: var(--gradient-overlay);
}

.social-link:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(228, 77, 12, 0.3);
}

/* Admin Dashboard Theme Application */
.sidebar .nav-link.active {
    background: var(--gradient-primary) !important;
}

.sidebar .nav-link:hover {
    background: rgba(228, 77, 12, 0.1) !important;
}

.page-header {
    border-left-color: var(--primary-color);
}

.badge-primary, .badge.badge-primary {
    background: var(--primary-color);
}

/* Form Controls Focus State */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(228, 77, 12, 0.1);
}

/* Portfolio Category Badge */
.portfolio-category {
    color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-down {
    color: var(--primary-color);
}

.scroll-down:hover {
    color: var(--accent-color);
}

/* Stats Items Hover */
.stat-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(228, 77, 12, 0.2);
}

/* Alert Success (matches primary color) */
.alert-success {
    background: rgba(228, 77, 12, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Loading Spinner */
.spinner-border {
    border-color: var(--primary-color);
    border-right-color: transparent;
}

/* Hero Section Content - Customizable */
.hero-title {
    color: #ffffff !important;
    font-size: 5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.hero-subtitle {
    color: #e5e7eb !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
        * {
        transition: all 0.2s ease;
    }
    }
