/*
Theme Name: Custom Basic
Theme URI: https://example.com/custom-basic
Author: You
Author URI: https://example.com
Description: A minimal custom WordPress theme with a basic header and footer.
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-basic
*/
:root {
    --fontFamily: Poppins, system-ui, -apple-system;
    --maxWidth: 1100px;
    --border: 1px solid #e5e7eb;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: var(--fontFamily);
    line-height: 1.6;
    color: #111827
}

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

a:hover {
    text-decoration: underline
}

.container {
    max-width: var(--maxWidth);
    margin: 0 auto;
    padding: 16px 0;
}

.site-header {
    border-bottom: var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav li {
    display: inline;
    list-style-type: none;
    margin-left: 12px;
}

.site-footer {
    border-top: var(--border);
    padding: 1.25rem 0;
    background: #fafafa;
    color: #374151
}

small, .muted {
    color: #6b7280
}

.hero-header {
    display: flex;
    gap: 20px;
}

.hero-header .column {
    flex: 1;
}