/*
Theme Name: Family Wellness Theme
*/

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f7f6;
  color: #333;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header h2 {
  margin: 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #2e7d32;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(rgba(232,245,233,0.9), rgba(232,245,233,0.9)),
              url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

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

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #1b5e20;
}

/* ===== Section ===== */
.section {
  padding: 60px 40px;
}

/* ===== Cards ===== */
.cards {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

.card h3 {
  margin-top: 0;
}

/* ===== Posts ===== */
.section h2 {
  margin-bottom: 20px;
}

.section div {
  margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }
}