/*
Theme Name: Slumbelry Theme
Theme URI: https://slumbelry.com/
Description: A modern, elegant theme for Slumbelry, tailored for the European market. Responsive, SEO-friendly, and pixel-perfect.
Author: Cassie Moreau
Author URI: https://slumbelry.com/
Version: 1.0.0
License: GPL v2 or later
Text Domain: slumbelry
*/

body {
  font-family: 'Inter', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  color: #546d63;
  background: #f5f6f4;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #2d3a35;
  font-family: 'Inter', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

.site-header, .site-footer {
  background: #f5f6f4;
}

a {
  color: #3b7c6e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1e4d3a;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-only { display: none; }
@media (max-width: 1024px) {
  .mobile-only { display: block !important; }
}
.desktop-only { display: block; }
@media (max-width: 1024px) {
  .desktop-only { display: none !important; }
}