/* ============================================
   LAZY — "Good At Being Lazy" Brand Stylesheet
   Forest Green: #2D5016
   Warm Cream: #FFF8F0
   Dark Text: #1A1A1A
   Accent Terracotta: #C45B28
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1A1A1A;
  background: #FFF8F0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Google Fonts Fallback --- */
.system-fonts {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
  color: #2D5016;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #C45B28; }

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Navigation --- */
.site-header {
  background: #2D5016;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #FFF8F0;
  letter-spacing: 0.05em;
}

.logo-text span {
  color: #C45B28;
}

/* --- Navigation Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 248, 240, 0.85);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: #FFF8F0;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Category Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF8F0;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  z-index: 200;
}

.nav-dropdown-menu a {
  color: #1A1A1A;
  padding: 0.5rem 1rem;
  display: block;
  border-radius: 0;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f0e6d8;
  color: #2D5016;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  display: block;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF8F0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1c 100%);
  color: #FFF8F0;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFF8F0;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.hero .tagline {
  font-size: 1.3rem;
  color: rgba(255, 248, 240, 0.85);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 248, 240, 0.75);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-cta {
  display: inline-block;
  background: #C45B28;
  color: #FFF8F0;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: #a84d21;
  color: #FFF8F0;
  transform: translateY(-2px);
}

/* --- Section Spacing --- */
.section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: #FFF8F0;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #2D5016;
}

.category-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.category-card h3 {
  margin-bottom: 0.5rem;
  color: #2D5016;
}

.category-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-link {
  color: #C45B28;
  font-weight: 600;
  font-size: 0.9rem;
}

.category-link:hover {
  text-decoration: underline;
}

/* --- Article Cards --- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: #FFF8F0;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.article-card-img {
  height: 200px;
  background: #e8ddd0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5016;
  font-size: 3rem;
  font-weight: 700;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card-body .category-tag {
  display: inline-block;
  background: #2D5016;
  color: #FFF8F0;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-card-body h3 {
  margin-bottom: 0.5rem;
}

.article-card-body h3 a {
  color: #1A1A1A;
}

.article-card-body h3 a:hover {
  color: #2D5016;
}

.article-card-body p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Product Cards (for affiliate articles) --- */
.product-card {
  background: #FFF8F0;
  border: 2px solid #e0d5c8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.product-card:hover {
  border-color: #2D5016;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.product-card-img {
  width: 120px;
  height: 120px;
  min-width: 120px;
  background: #e8ddd0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5016;
  font-size: 2rem;
  font-weight: 700;
}

.product-card-content {
  flex: 1;
}

.product-card-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.product-card-content .price {
  color: #C45B28;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.product-card-content p {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.affiliate-btn {
  display: inline-block;
  background: #C45B28;
  color: #FFF8F0;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.affiliate-btn:hover {
  background: #a84d21;
  color: #FFF8F0;
}

/* --- Article Content Styles --- */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #2D5016;
}

.article-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid #2D5016;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: #555;
  font-style: italic;
}

.article-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0d5c8;
}

.article-header .article-meta {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.article-header .article-tag {
  display: inline-block;
  background: #2D5016;
  color: #FFF8F0;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Disclosure Banner --- */
.disclosure {
  background: #f0e6d8;
  border-left: 4px solid #C45B28;
  padding: 0.8rem 1rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: #555;
  border-radius: 0 6px 6px 0;
}

.disclosure strong {
  color: #1A1A1A;
}

/* --- Table of Contents --- */
.toc {
  background: #f0e6d8;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #2D5016;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 0.4rem;
}

.toc a {
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.toc a:hover {
  color: #2D5016;
  border-bottom-color: #2D5016;
}

/* --- Guides Section --- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guide-card {
  background: #FFF8F0;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.guide-card .guide-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.guide-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.guide-card p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.etsy-btn {
  display: inline-block;
  background: #2D5016;
  color: #FFF8F0;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.etsy-btn:hover {
  background: #3a6b1c;
  color: #FFF8F0;
}

/* --- About Page --- */
.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.philosophy-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0d5c8;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.philosophy-list li:last-child {
  border-bottom: none;
}

.philosophy-list .num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #C45B28;
  min-width: 2rem;
}

/* --- Categories Page --- */
.categories-list {
  max-width: 700px;
  margin: 0 auto;
}

.cat-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0d5c8;
}

.cat-section:last-child {
  border-bottom: none;
}

.cat-section h2 {
  margin-bottom: 0.5rem;
  color: #2D5016;
}

.cat-section p {
  color: #666;
  margin-bottom: 1rem;
}

.cat-section ul {
  list-style: none;
  padding: 0;
}

.cat-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0e6d8;
}

.cat-section li a {
  color: #1A1A1A;
  font-weight: 500;
  display: block;
}

.cat-section li a:hover {
  color: #2D5016;
}

/* --- Footer --- */
.site-footer {
  background: #1A1A1A;
  color: rgba(255, 248, 240, 0.7);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: #FFF8F0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFF8F0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: #FFF8F0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #888;
}

.breadcrumbs a {
  color: #2D5016;
}

.breadcrumbs span {
  color: #888;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-green { color: #2D5016; }
.text-terracotta { color: #C45B28; }
.bg-cream { background: #FFF8F0; }
.bg-green { background: #2D5016; color: #FFF8F0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- === RESPONSIVE === --- */

/* Tablet */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .product-card-img {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2D5016;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  
  .nav-links.open { display: flex; }
  
  .nav-dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    padding: 0.25rem 0;
  }
  
  .nav-dropdown-menu a {
    color: rgba(255, 248, 240, 0.8);
    padding: 0.4rem 1rem;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-toggle { width: 100%; }
  
  .category-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .hero { padding: 2.5rem 0; }
  .section { padding: 2.5rem 0; }
  
  .product-card-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}

/* Print */
@media print {
  .site-header { position: static; }
  .hero { background: #2D5016; padding: 2rem 0; }
  .affiliate-btn { display: none; }
}
