/* Reading Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 70px; /* Below navbar */
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-green), var(--sage-green));
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 0 2px 2px 0;
}

/* Article Page Styles */
.article-page {
  margin-top: 70px;
}

.article-header {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--white) 100%);
  padding: 60px 0;
}

.article-title {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.article-content {
  padding: 60px 0;
}

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

.article-intro {
  font-size: 1.2rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-sage);
  border-radius: 10px;
  border-left: 4px solid var(--emerald-green);
}

.article-content h2 {
  color: var(--dark-green);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
}

.article-content h3 {
  color: var(--emerald-green);
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

.article-content strong {
  color: var(--dark-green);
  font-weight: 600;
}

.article-quote {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--emerald-green);
  border-radius: 15px;
  text-align: center;
}

.article-quote blockquote p {
  color: var(--white);
  font-size: 1.3rem;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.article-cta {
  background: var(--light-sage);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.article-cta p {
  margin-bottom: 1.5rem;
}

/* Related Articles */
.related-articles {
  padding: 60px 0;
  background: var(--gray-light);
}

.related-articles h2 {
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.related-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.related-card a {
  color: var(--emerald-green);
  text-decoration: none;
  font-weight: 600;
}

.related-card a:hover {
  color: var(--dark-green);
}

.related-card p {
  color: var(--gray-medium);
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .article-hero-image img {
    height: 250px;
  }

  .article-content {
    padding: 40px 0;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .article-intro {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.2rem;
  }

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

/* Navigation logo link styling */
.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-logo a:hover {
  color: var(--emerald-green);
}
