/*
Theme Name: Old Growth Mill
Theme URI: https://oldgrowthmill.com
Author: Old Growth Mill
Description: Custom-built WordPress theme for Old Growth Mill. Classic PHP theme with controlled layout.
Version: 1.0.1
License: GPL-2.0+
Text Domain: old-growth-mill
*/

/* ---------- GLOBAL ---------- */
html {
  font-size: 24px;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 1.8;
}

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

/* ---------- LAYOUT ---------- */
.ogm-wrap {
  max-width: 68ch;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding: 40px 0;
}

/* Ensure editor blocks don’t drift right/left */
.entry-content {
  max-width: 68ch;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.entry-content > * {
  box-sizing: border-box;
}
/* Prevent “wide/full” block alignment from pushing content */
.entry-content .alignwide,
.entry-content .alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

h1, h2, h3 { margin-top: 1.6em; }

/* ---------- HEADER ---------- */
.site-header { border-bottom: 1px solid #e5e5e5; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 70px; height: auto; }
.brand-text strong { display: block; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  margin-top: 60px;
  text-align: center;
}
.site-footer img { width: 90px; height: auto; }
