/**
 * FlowContent Blank Template Styles
 * Used for landing pages generated by FlowContent
 */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body.fc-blank-template {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide WordPress admin bar */
body.fc-blank-template #wpadminbar {
    display: none !important;
}

html.wp-toolbar {
    padding-top: 0 !important;
}

/* Main container */
.fc-landing-container {
    width: 100%;
    min-height: 100vh;
}

/* Ensure content takes full width */
.fc-landing-container > div {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
