/*
Theme Name: ISO MBG Autopilot Theme
Theme URI: https://itrevolution.id/
Author: IT Revolution AI Builder
Author URI: https://itrevolution.id/
Description: Theme WordPress ringan, super cepat, Elementor-ready & WooCommerce-ready. Dikhususkan untuk sales funnel dan checkout langsung.
Version: 1.0.0
Text Domain: isombg
*/

/* Reset & Basic Variables */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-color: #0f172a;
    --bg-color: #f8fafc;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
}

.header-cta-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.header-cta-btn:hover {
    background-color: var(--primary-hover);
}

/* Main Content */
.site-main {
    min-height: 70vh;
}

/* Elementor Override - Ensure Elementor takes full width when needed */
.elementor-page .site-main {
    width: 100%;
}

/* Footer Styles */
.site-footer {
    background-color: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: auto;
}

/* WooCommerce Fixes for Clean Look */
.woocommerce-page .site-main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}