:root {
  --primary-color: #2e7d32; /* Deep earthy green for mushroom/natural theme */
  --secondary-color: #f57c00; /* Warm orange for energy/focus */
  --text-color: #2c3e50;
  --bg-color: #f9fbe7; /* Very light earthy tone */
  --white: #ffffff;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

/* Advanced Animations */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 5px rgba(245, 124, 0, 0.4); }
  50% { box-shadow: 0 0 20px rgba(245, 124, 0, 0.8); }
  100% { box-shadow: 0 0 5px rgba(245, 124, 0, 0.4); }
}

header {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color var(--transition-speed);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn, .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e65100 100%);
  color: var(--white) !important;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}

.btn:hover, .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(230, 81, 0, 0.4);
}

.btn-glow {
  animation: glowPulse 3s infinite;
}

main {
  padding: 60px 0;
}

.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  margin-bottom: 60px;
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #388e3c;
  font-weight: 500;
}

article {
  background: var(--white);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

h1, h2, h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 35px;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-top: 0;
  border-bottom: 3px solid #e8f5e9;
  padding-bottom: 15px;
}

h2 {
  font-size: 2.1rem;
  position: relative;
  padding-left: 20px;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 5px;
  background-color: var(--secondary-color);
  border-radius: 10px;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #4a5568;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #4a5568;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideUp 1s ease-out both;
  border: 1px solid #f1f8e9;
}

/* Stagger card animations */
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #c8e6c9;
}

.blog-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.blog-card p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 25px;
}

.read-more {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-speed);
  position: relative;
}

.read-more::after {
  content: ' →';
  position: relative;
  transition: margin-left 0.3s;
}

.read-more:hover::after {
  margin-left: 10px;
}

.read-more:hover {
  color: var(--primary-color);
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px dashed #e0e0e0;
}

.related-posts ul {
  list-style-type: none;
  padding-left: 0;
}

.related-posts li::before {
  content: '🍄 ';
}

.cta-section {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 50px;
  text-align: center;
  border-radius: 16px;
  margin: 50px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.cta-section h2 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  color: #e65100;
}

.cta-section h2::before {
  display: none;
}

footer {
  background-color: #1b5e20;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 60px 0;
  margin-top: 80px;
}

footer a {
  color: #ffb74d;
  text-decoration: none;
}

footer p {
  font-size: 1rem;
  margin-bottom: 12px;
}
