/**
 * Websiteplan Theme - Frontend Styles
 *
 * Minimal base styles. The actual design comes from the HTML templates.
 *
 * @package WebsiteplanTheme
 * @since 1.0.0
 */

/* Box-sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Basic body defaults */
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fallback content (when no template assigned) */
.wpt-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 404 page */
.wpt-404 {
    text-align: center;
    padding: 60px 20px;
}

.wpt-404 h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.wpt-404 a {
    color: #2271b1;
}
