/*
 * Theme Name: Claude Test
 * Description: Minimal WordPress theme for AI-generated landing pages
 * Author: M&R Marketing
 * Author URI: http://www.mandr-group.com/
 * Version: 1.0.0
*/

/* All project CSS is generated per-landing-page in page templates or enqueued stylesheets. This file intentionally left minimal. */

/* Reset & base defaults */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px base for easy rem calculations */
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem; /* 16px default */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* Hide WordPress admin bar gap on front end if needed */
html {
    margin-top: 0 !important;
}

/* Gravity Forms base reset — project CSS handles the rest */
.gform_wrapper {
    max-width: 100%;
}
