@charset "UTF-8";
/*
Theme Name: A Dog Named Moose
Theme URI: https://adognamedmoose.com
Author: Mark Plante
Author URI: https://markplante.com
Description: A warm, story-driven WordPress theme for life with Moose.
Version: 1.0
*/
/* ===== Navigation ===== */
.moose-nav__list {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0; }

.moose-nav__list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--moose-brown);
  padding: 6px 2px;
  position: relative; }

.moose-nav__list a:hover {
  color: var(--moose-red); }

/* Active state */
.moose-nav__list .current-menu-item > a,
.moose-nav__list .current_page_item > a {
  color: var(--moose-red); }

.moose-nav__list .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--moose-red);
  border-radius: 3px; }

/* ===== Mobile ===== */
@media (max-width: 720px) {
  .moose-header__inner {
    flex-direction: column;
    align-items: center; }
  .moose-nav__list {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center; } }

/* Prevent huge heading jumps */
.entry-content h1 {
  display: none; }

.moose-post__meta,
.moose-breadcrumbs {
  color: #6a625b;
  /* slightly darker for contrast */ }

/* ===== Footer ===== */
.moose-footer {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  margin-top: 64px; }

.moose-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px; }

/* About */
.moose-footer__title {
  margin: 0 0 8px 0;
  color: var(--moose-brown);
  font-size: 1.25rem; }

.moose-footer__about p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6; }

/* Footer Nav */
.moose-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0; }

.moose-footer__menu li {
  margin-bottom: 8px; }

.moose-footer__menu a {
  text-decoration: none;
  color: var(--moose-brown); }

.moose-footer__menu a:hover {
  color: var(--moose-red); }

/* Footer Meta */
.moose-footer__meta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-soft);
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted); }

/* Mobile */
@media (max-width: 720px) {
  .moose-footer__inner {
    grid-template-columns: 1fr;
    text-align: center; } }

/* =========================
   CSS VARIABLES (STEP 1)
========================= */
:root {
  /* Brand */
  --moose-red: #d85a43;
  --moose-cream: #f7f3ef;
  --moose-tan: #e6c9a8;
  --moose-brown: #6b4a3a;
  /* Text */
  --text-main: #2f2f2f;
  --text-muted: #7a6f68;
  /* UI */
  --border-soft: #e2d9d1;
  --radius: 10px; }

/* =========================
   BASE WORDPRESS RESET
========================= */
body {
  margin: 0;
  background: var(--moose-cream);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6; }

a {
  color: var(--moose-red); }

a:hover {
  text-decoration: underline; }

h1, h2, h3 {
  color: var(--moose-brown); }

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

/* ===== Moose Layout Basics ===== */
.site-main {
  background: var(--moose-cream); }

/* ===== Hero ===== */
.moose-hero {
  width: 100%;
  background: linear-gradient(180deg, var(--moose-tan), var(--moose-cream));
  padding: 72px 16px;
  border-bottom: 1px solid var(--border-soft); }

.moose-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center; }

.moose-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 12px 0;
  color: var(--moose-brown);
  letter-spacing: -0.02em; }

.moose-hero__tagline {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto; }

/* ===== Latest Posts Section ===== */
.moose-latest {
  padding: 36px 16px 64px; }

.moose-latest__inner {
  max-width: 1100px;
  margin: 0 auto; }

.moose-section-title {
  margin: 0 0 18px 0;
  color: var(--moose-brown);
  font-size: 1.4rem; }

/* ===== Cards Grid ===== */
.moose-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; }

@media (max-width: 980px) {
  .moose-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)); } }

@media (max-width: 640px) {
  .moose-cards {
    grid-template-columns: 1fr; } }

/* ===== Card ===== */
.moose-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06); }

.moose-card__link {
  display: block;
  color: inherit;
  text-decoration: none; }

.moose-card__media {
  aspect-ratio: 16 / 9;
  background: #f1ece6;
  overflow: hidden; }

.moose-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.moose-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #efe7df, #f7f3ef); }

.moose-card__body {
  padding: 14px 14px 16px; }

.moose-card__meta {
  margin: 0 0 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted); }

.moose-card__title {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: var(--moose-brown);
  line-height: 1.25; }

.moose-card__excerpt {
  margin: 0;
  color: var(--text-main);
  line-height: 1.55; }

/* ===== Pagination ===== */
.moose-pagination ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 18px 0 0;
  margin: 0;
  flex-wrap: wrap; }

.moose-pagination a,
.moose-pagination span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  text-decoration: none; }

.moose-pagination a {
  color: var(--moose-red);
  background: #fff; }

.moose-pagination .current {
  background: var(--moose-red);
  color: #fff;
  border-color: var(--moose-red); }

/* ===== Header ===== */
.moose-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft); }

.moose-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px; }

/* ===== Brand ===== */
.moose-brand img {
  max-height: 52px;
  width: auto;
  display: block; }

.moose-site-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--moose-brown); }

/* =========================
   STEP 4 – SINGLE POST
========================= */
.moose-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 16px 64px; }

/* Header */
.moose-post__header {
  margin-bottom: 24px; }

.moose-post__meta {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted); }

.moose-post__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--moose-brown); }

/* Featured image */
.moose-post__featured {
  margin: 28px 0 36px; }

.moose-post__featured img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block; }

/* Content typography */
.moose-post__content {
  font-size: 1.05rem;
  line-height: 1.75; }

/* Paragraphs */
.moose-post__content p {
  margin: 0 0 1.4em 0; }

/* Headings inside content */
.moose-post__content h2,
.moose-post__content h3,
.moose-post__content h4 {
  margin: 2.2em 0 0.6em;
  color: var(--moose-brown);
  line-height: 1.3; }

/* Lists */
.moose-post__content ul,
.moose-post__content ol {
  margin: 0 0 1.5em 1.5em; }

/* Images inside content */
.moose-post__content img {
  border-radius: var(--radius); }

/* Blockquotes */
.moose-post__content blockquote {
  margin: 2em 0;
  padding-left: 1.2em;
  border-left: 4px solid var(--moose-tan);
  color: var(--text-muted);
  font-style: italic; }

/* Links */
.moose-post__content a {
  color: var(--moose-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px; }

/* =========================
   STEP 5 – ARCHIVES
========================= */
.moose-archive {
  padding: 48px 16px 64px; }

.moose-archive__inner {
  max-width: 1100px;
  margin: 0 auto; }

.moose-archive__header {
  margin-bottom: 28px; }

.moose-archive__title {
  margin: 0 0 8px 0;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--moose-brown); }

.moose-archive__description {
  max-width: 720px;
  color: var(--text-muted);
  line-height: 1.6; }

/* Pagination polish (WordPress default) */
.navigation.pagination {
  margin-top: 28px; }

.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 6px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  text-decoration: none;
  color: var(--moose-brown); }

.navigation.pagination .current {
  background: var(--moose-red);
  color: #fff;
  border-color: var(--moose-red); }

/* =========================
   STEP 6 – GUTENBERG POLISH
========================= */
/* Base block spacing */
.entry-content > * {
  margin-bottom: 1.4em; }

/* Prevent Gutenberg from exploding widths */
.entry-content {
  max-width: 760px;
  margin: 0 auto; }

/* Wide & full blocks */
.entry-content .alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto; }

.entry-content .alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }

/* Images */
.wp-block-image img {
  border-radius: var(--radius); }

.wp-block-image figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px; }

/* Centered images */
.wp-block-image.aligncenter {
  text-align: center; }

/* Galleries */
.wp-block-gallery {
  gap: 12px; }

.wp-block-gallery img {
  border-radius: var(--radius); }

/* Quotes */
.wp-block-quote {
  margin: 2em 0;
  padding-left: 1.2em;
  border-left: 4px solid var(--moose-tan);
  color: var(--text-muted); }

.wp-block-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--moose-brown); }

/* Pullquotes */
.wp-block-pullquote {
  border: none;
  padding: 2em 0; }

.wp-block-pullquote blockquote {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--moose-brown);
  max-width: 700px;
  margin: 0 auto; }

/* Separators */
.wp-block-separator {
  border: none;
  border-top: 2px solid var(--border-soft);
  margin: 3em auto;
  max-width: 120px; }

/* Buttons */
.wp-block-button__link {
  background: var(--moose-red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600; }

.wp-block-button__link:hover {
  background: #bf4f3b; }

/* Tables */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse; }

.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--border-soft);
  padding: 10px 12px; }

.wp-block-table th {
  background: #f1ece6;
  color: var(--moose-brown); }

/* =========================
   STEP 7A – RELATED POSTS
========================= */
.moose-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-soft); }

.moose-related__title {
  margin: 0 0 18px;
  font-size: 1.4rem;
  color: var(--moose-brown); }

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

.moose-card__media {
  aspect-ratio: 16 / 9; }

/* =========================
   STEP 7C – BREADCRUMBS
========================= */
.moose-breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px; }

.moose-breadcrumbs a {
  color: var(--moose-red);
  text-decoration: none; }

.moose-breadcrumbs a:hover {
  text-decoration: underline; }

/* =========================
   STEP 7D – ACCESSIBILITY
========================= */
/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--moose-red);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 1000;
  text-decoration: none; }

.skip-link:focus {
  top: 16px; }

/* Visible focus styles */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--moose-red);
  outline-offset: 3px;
  border-radius: 4px; }

/* =========================
   STEP 7E – MEET MOOSE
========================= */
.moose-about {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 16px 64px; }

.moose-about__header {
  text-align: center;
  margin-bottom: 32px; }

.moose-about__title {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  color: var(--moose-brown); }

.moose-about__image img {
  max-width: 360px;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  border: 6px solid var(--moose-tan); }

.moose-about__content {
  font-size: 1.05rem;
  line-height: 1.75; }

/* Nice spacing for story sections */
.moose-about__content > * {
  margin-bottom: 1.4em; }

/* =========================
   PAGE TEMPLATE
========================= */
.moose-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 16px 64px; }

.moose-page__header {
  margin-bottom: 24px; }

.moose-page__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--moose-brown);
  line-height: 1.2; }

.moose-page__featured {
  margin: 28px 0 36px; }

.moose-page__featured img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block; }

.moose-page__content {
  font-size: 1.05rem;
  line-height: 1.75; }

/* =========================
   MOOSE'S KITCHEN
========================= */
.moose-recipe {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 16px 64px; }

.moose-recipe__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--moose-brown);
  line-height: 1.15; }

.moose-recipe__featured img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 18px 0 34px; }

.moose-recipe__section {
  margin: 28px 0;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05); }

.moose-recipe__h2 {
  margin: 0 0 10px;
  color: var(--moose-brown);
  font-size: 1.25rem; }

.moose-recipe__product img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block; }

.moose-recipe__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px; }

@media (max-width: 700px) {
  .moose-recipe__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.moose-recipe__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: block; }

/* =========================
   MOOSE'S KITCHEN – HOME
========================= */
.moose-kitchen-home {
  padding: 64px 16px;
  background: linear-gradient(180deg, #fff, var(--moose-cream));
  border-top: 1px solid var(--border-soft); }

.moose-kitchen-home__inner {
  max-width: 1100px;
  margin: 0 auto; }

.moose-kitchen-home__header {
  margin-bottom: 24px; }

.moose-kitchen-home__title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: var(--moose-brown); }

.moose-kitchen-home__description {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px; }

/* CTA */
.moose-kitchen-home__cta {
  margin-top: 28px;
  text-align: center; }

/* Button */
.moose-button {
  display: inline-block;
  padding: 12px 22px;
  background: var(--moose-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px; }

.moose-button:hover {
  background: #bf4f3b; }

/*# sourceMappingURL=style.map */