/**
 * Campaign Base V6 - Base Styles
 * Minimal base styling - main landing page styles come from plugin
 */

/* ========== RESET / NORMALIZE ========== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-text, #333);
    background: var(--brand-bg, #fff);
}

/* ========== TYPOGRAPHY DEFAULTS ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== FORM DEFAULTS ========== */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
}

/* ========== WORDPRESS ALIGNMENT ========== */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: none;
}

/* ========== LANDING PAGE TEMPLATE ========== */
body.landing-page,
body.no-header-footer {
    padding: 0;
}

body.landing-page header,
body.landing-page footer,
body.no-header-footer header,
body.no-header-footer footer {
    display: none !important;
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========== GUTENBERG FIXES ========== */
.wp-block-group__inner-container {
    max-width: inherit;
}

.wp-site-blocks {
    padding: 0;
}

/* Fix for full-width sections */
.wp-block-group.alignfull {
    padding-left: 0;
    padding-right: 0;
}
