/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #fafafa;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  color: #6ab187;
  font-size: 1.8rem;
  margin: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #6ab187;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fcecc9 0%, #ffffff 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #6ab187;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #6ab187;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 177, 135, 0.3);
}

.cta-button:hover {
  background: #5a9a75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 177, 135, 0.4);
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  color: #333333;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

/* Featured Articles */
.featured-articles {
  background: #ffffff;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-title {
  margin-bottom: 1rem;
}

.article-title a {
  text-decoration: none;
  color: #333333;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #6ab187;
}

.article-excerpt {
  color: #666666;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999999;
}

.reading-time {
  background: #fcecc9;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Categories */
.categories {
  background: #fcecc9;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-tag {
  background: #ffffff;
  color: #6ab187;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #6ab187;
}

.category-tag:hover {
  background: #6ab187;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #6ab187 0%, #5a9a75 100%);
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-description {
  margin-bottom: 2rem;
  opacity: 0.9;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.newsletter-button {
  background: #fcecc9;
  color: #6ab187;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background: #f5e0b3;
  transform: translateY(-2px);
}

/* Reflection Box */
.reflection {
  background: #ffffff;
}

.reflection-box {
  background: linear-gradient(135deg, #fcecc9 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
}

.reflection-title {
  color: #6ab187;
  margin-bottom: 1rem;
}

.reflection-prompt {
  font-style: italic;
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.reflection-refresh {
  background: #6ab187;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reflection-refresh:hover {
  background: #5a9a75;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #333333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer-content p {
  margin: 0;
  opacity: 0.8;
}

/* Article Page Styles */
.article-header {
  background: linear-gradient(135deg, #fcecc9 0%, #ffffff 100%);
  padding: 3rem 0;
  text-align: center;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
  background: #ffffff;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.article-body h2 {
  color: #6ab187;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  color: #333333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.quote-box {
  background: #fcecc9;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #6ab187;
  font-style: italic;
}

.highlight-box {
  background: #f0f8f3;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid #6ab187;
}

.cta-end {
  background: #fcecc9;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .category-tags {
    justify-content: center;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

/* Resources Promo Section (based on newsletter) */
.resources-promo {
  background: linear-gradient(135deg, #e3f6f5 0%, #ffffff 100%);
  padding: 3rem 0;
  margin: 0;
}
.resources-promo-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.resources-promo-title {
  font-size: 2rem;
  color: #6ab187;
  margin-bottom: 1rem;
  font-family: "Merriweather", serif;
}
.resources-promo-description {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 2rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
.resources-promo-button {
  display: inline-block;
  background: #6ab187;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 177, 135, 0.3);
  font-size: 1.1rem;
}
.resources-promo-button:hover {
  background: #5a9a75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 177, 135, 0.4);
}
