@charset "UTF-8";
/* GLOBAL */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #FFF8F2;
  color: #333; }

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto; }

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease; }

.site-header {
  padding: 10px 0; }

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; }

.header-flex {
  padding: 10px 0; }

.logo img {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease; }

.logo img:hover {
  transform: scale(1.05); }

/* NAV */
.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative; }

/* underline animation */
.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #E53935;
  transition: 0.3s; }

.nav a:hover::after {
  width: 100%; }

.nav .highlight {
  color: #E53935; }

/* ================= HERO ================= */
.hero {
  padding: 10px 0;
  position: relative;
  overflow: hidden; }

/* subtle gradient glow */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0; }

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2; }

.hero-text {
  max-width: 520px; }

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px; }

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555; }

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease; }

/* Primary */
.primary {
  background: linear-gradient(135deg, #E53935, #FF6F61);
  color: white;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3); }

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(229, 57, 53, 0.4); }

/* Secondary */
.secondary {
  border: 2px solid #E53935;
  color: #E53935; }

.secondary:hover {
  background: #E53935;
  color: white; }

/* Note */
.hero-note {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #888; }

/* ================= IMAGE ================= */
.hero-image img {
  max-width: 420px;
  animation: float 4s ease-in-out infinite; }

/* floating animation */
@keyframes float {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-12px); }
  100% {
    transform: translateY(0px); } }

/* ================= FOOTER ================= */
.site-footer {
  text-align: center;
  padding: 50px 0;
  background: #F4F4F4; }

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    text-align: center; }
  .nav {
    display: none;
    /* we’ll add mobile menu next if you want */ }
  .hero h1 {
    font-size: 34px; }
  .hero-image img {
    max-width: 300px; } }

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

/* ================= BLOG SECTION ================= */
.latest-posts {
  padding: 9px 0; }

.latest-posts h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

/* Card */
.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease; }

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); }

.post-card img {
  width: 100%;
  height: auto; }

.post-card a {
  text-decoration: none; }

.post-content {
  padding: 20px; }

.post-content h3 {
  margin-bottom: 10px; }
  .post-content h3 a {
    color: #000000; }

.post-content p {
  color: #666; }

/* ================= KITCHEN ================= */
.kitchen-preview {
  padding: 80px 0;
  background: #FFF3E0; }

.kitchen-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; }

.kitchen-text {
  max-width: 450px; }

.kitchen-logo {
  max-width: 360px;
  margin-bottom: 15px; }

.kitchen-recipes {
  display: flex;
  gap: 20px; }

.recipe-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 180px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s; }

.recipe-card:hover {
  transform: translateY(-6px); }

.recipe-card img {
  width: 100%; }

.recipe-card h4 {
  padding: 10px;
  font-size: 14px; }

@media (max-width: 900px) {
  .post-grid {
    grid-template-columns: 1fr; }
  .kitchen-flex {
    flex-direction: column;
    text-align: center; }
  .kitchen-recipes {
    justify-content: center; } }

.recipe-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 200px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease; }

.recipe-card:hover {
  transform: translateY(-8px) scale(1.02); }

.recipe-content {
  padding: 12px; }

.recipe-content h4 {
  font-size: 15px;
  margin-bottom: 5px; }

.recipe-meta {
  font-size: 12px;
  color: #E53935;
  font-weight: 600; }

/* ================= RECIPE PAGE ================= */
.recipe-page {
  padding: 80px 0; }

.recipe-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px; }

/* Layout */
.recipe-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center; }

.recipe-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px; }

.recipe-info {
  max-width: 500px; }

/* Gallery */
.recipe-gallery {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  overflow-x: auto; }

.recipe-gallery img {
  height: 120px;
  border-radius: 12px; }

/* Sections */
.recipe-section {
  margin-top: 50px; }

.recipe-section h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px; }

/* Boxes */
.ingredients-box,
.instructions-box,
.nutrition-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); }

/* Ingredients style */
.ingredients-box ul {
  list-style: none;
  padding: 0; }

.ingredients-box li::before {
  content: "🐾 "; }

/* Mobile */
@media (max-width: 900px) {
  .recipe-layout {
    flex-direction: column;
    text-align: center; } }

/* ================= RECIPE META ================= */
.recipe-meta-bar {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px; }

.meta-item {
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 600; }

/* Paw styling */
.paws {
  color: #E53935;
  margin-left: 5px; }

/* ================= ACTION BUTTONS ================= */
.recipe-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap; }

.print-btn {
  background: #333;
  color: #fff; }

.print-btn:hover {
  background: #000; }

.pinterest-btn {
  background: #E60023;
  color: #fff; }

.pinterest-btn:hover {
  background: #c4001d; }

.social-btn {
  background: #1877F2;
  color: #fff; }

.social-btn:hover {
  background: #145ccc; }

/* ================= PRINT STYLES ================= */
@media print {
  body * {
    visibility: hidden; }
  .recipe-page, .recipe-page * {
    visibility: visible; }
  .site-header,
  .site-footer,
  .recipe-actions,
  .recipe-gallery {
    display: none; }
  .recipe-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
  .recipe-title {
    font-size: 28px; }
  .ingredients-box,
  .instructions-box {
    box-shadow: none;
    border: 1px solid #ddd; } }

/* MENU */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0; }

.menu li {
  margin-left: 25px; }

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  transition: 0.3s; }

/* Hover underline animation */
.menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #E53935;
  transition: 0.3s; }

.menu li a:hover::after {
  width: 100%; }

/* Active page */
.menu li.current-menu-item a {
  color: #E53935; }

.menu li a[href*="moose_kitchen"] {
  color: #E53935;
  font-weight: 700; }

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer; }

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s; }

/* ================= MOBILE NAV ================= */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFF8F2;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
  .nav.active {
    display: flex; }
  .menu {
    flex-direction: column;
    text-align: center; }
  .menu li {
    margin: 15px 0; } }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); }

.menu-toggle.active span:nth-child(2) {
  opacity: 0; }

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px); }

/* ================= PAGE ================= */
.page-section {
  padding: 80px 0; }

.page-header {
  text-align: center;
  margin-bottom: 40px; }

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px; }

.page-content {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  font-size: 18px; }

/* Images inside content */
.page-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0; }

/* Headings inside content */
.page-content h2,
.page-content h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 30px; }

/* Lists */
.page-content ul {
  padding-left: 20px; }

.page-content li {
  margin-bottom: 10px; }

.page-title::after {
  content: " 🐾"; }

.about-flex {
  display: flex;
  gap: 40px;
  align-items: center; }

.about-image img {
  max-width: 350px;
  border-radius: 20px; }

.about-content {
  max-width: 500px; }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; }

.kitchen-title {
  text-align: center;
  font-family: 'Poppins'; }

.kitchen-sub {
  text-align: center;
  margin-bottom: 40px; }

.blog-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px; }

/* ================= PAGINATION ================= */
.pagination {
  text-align: center;
  margin-top: 50px; }

.pagination .nav-links {
  display: inline-flex;
  gap: 10px; }

/* Page numbers */
.pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 30px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s; }

/* Hover */
.pagination .page-numbers:hover {
  background: #E53935;
  color: #fff; }

/* Current page */
.pagination .page-numbers.current {
  background: #E53935;
  color: #fff;
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.3); }

/* Next/Prev */
.pagination .prev,
.pagination .next {
  font-weight: bold; }

@media (max-width: 600px) {
  .pagination .nav-links {
    flex-wrap: wrap;
    justify-content: center; }
  .pagination .page-numbers {
    padding: 8px 12px;
    font-size: 14px; } }

/* ================= SINGLE POST ================= */
.single-post {
  padding: 80px 0; }

.post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px; }

.post-meta {
  text-align: center;
  color: #777;
  margin-bottom: 30px; }

.post-meta span {
  margin: 0 10px; }

/* Featured Image */
.post-image img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px; }

/* Content */
.post-content {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7; }

.post-content h2,
.post-content h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 30px; }

.post-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0; }

/* Moose Callout */
.moose-callout {
  margin-top: 50px;
  background: #FFF3E0;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600; }

.post-navigation {
  margin-top: 40px;
  text-align: center; }

/* ================= ARCHIVE ================= */
.archive-page {
  padding: 80px 0; }

.archive-header {
  text-align: center;
  margin-bottom: 40px; }

.archive-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px; }

.archive-description {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0; }

.post-card img,
.recipe-card img {
  width: 100%;
  height: auto;
  display: block; }

/* ================= CARD LINKS ================= */
/* Remove default blue links */
.post-card a,
.recipe-card a {
  text-decoration: none;
  color: inherit; }

/* Title styling */
.post-card h3,
.recipe-card h3,
.recipe-card h4 {
  color: #333;
  transition: color 0.3s ease; }

/* Hover effect */
.post-card:hover h3,
.recipe-card:hover h3,
.recipe-card:hover h4 {
  color: #E53935; }

.post-card h3,
.recipe-card h4 {
  position: relative; }

.post-card h3::after,
.recipe-card h4::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #E53935;
  transition: 0.3s; }

.post-card:hover h3::after,
.recipe-card:hover h4::after {
  width: 100%; }

/* ================= DROPDOWN ================= */
/* Parent */
.menu li {
  position: relative; }

/* Submenu (hidden by default) */
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 999;
  list-style: none; }

/* Show on hover */
.menu li:hover > .sub-menu {
  display: block;
  list-style: none; }

/* Submenu items */
.sub-menu li {
  margin: 0;
  list-style: none; }

.sub-menu li a {
  display: block;
  padding: 10px 5px;
  color: #333;
  font-weight: 500; }

/* Hover effect */
.sub-menu li a:hover {
  background: blue;
  color: #E53935; }

@media (max-width: 900px) {
  .sub-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: transparent; }
    .sub-menu ul {
      list-style: none; }
  .sub-menu.open {
    display: block; }
  .sub-menu li a {
    padding: 10px 20px;
    list-style: none; } }

.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 12px; }

/* ================= DROPDOWN ANIMATION ================= */
/* Parent */
.menu li {
  position: relative; }

/* Submenu base */
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  /* Animation setup */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.25s ease;
  z-index: 999; }

/* Show dropdown */
.menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1); }

/* Submenu items */
.sub-menu li a {
  display: block;
  padding: 10px 0px;
  color: #333;
  font-weight: 500;
  transition: 0.2s; }

/* Hover */
.sub-menu li a:hover {
  background: #FFF3E0;
  color: #E53935; }

/*# sourceMappingURL=main.map */