/* Root colors */
:root {
  --primary: hsl(142, 71%, 45%);
  --secondary: hsl(45, 93%, 54%);
  --light-bg: hsl(140, 25%, 96%);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #374151;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { height: 55px; }

.nav-buttons a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}
.nav-buttons a.active,
.nav-buttons a:hover {
  color: var(--primary);
  font-weight: 600;
}

/* Blog section */
.blogs-section {
  padding: 120px 20px 60px;
  max-width: 1300px;
  margin: auto;
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.burnout { background: #f97316; }
.wellness { background: #22c55e; }
.checklist { background: #0ea5e9; }
.energy { background: #f59e0b; }

.read-time {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 18px;
}

.author-row {
  display: flex;
  justify-content: space-between;
  color: #444;
  margin-bottom: 12px;
  font-size: 14px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Full blog page */
.blog-container {
  padding: 130px 20px 60px;
  max-width: 900px;
  margin: auto;
}

.blog-container img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.blog-container h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.blog-container p {
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
  font-size: 16px;
}
/* Footer Section */
.footer {
  background: hsl(220, 14%, 95%);
  padding: 40px 20px 30px; /* reduced top/bottom padding */
  color: hsl(220, 14%, 28%);
  font-size: 16px;
}

.footer-container {
  max-width: 900px; /* reduced container width */
  margin: auto;
}

.footer h3 {
  font-size: 22px; /* smaller heading */
  font-weight: 700;
  margin-bottom: 25px; /* reduced space below heading */
}

/* Logo + Title Layout */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 12px; /* smaller gap */
  margin-bottom: 30px; /* reduced space below */
}

.footer-logo {
  width: 40px; /* smaller logo */
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; /* slightly smaller gap between columns */
  margin-bottom: 30px; /* reduced bottom margin */
}

.footer-column h4 {
  font-size: 18px; /* slightly smaller */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Links styling */
.footer-column a {
  display: block;
  text-decoration: none;
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Plain text styling */
.footer-column p {
  display: block;
  font-size: 16px; /* match link size */
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
}

/* Footer copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Social icons in one line */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  display: block;
}
