/* ================================
   Blog 6: Best Places to Visit in Haridwar (2026)
   CSS Styling – CampNStay
================================ */

.container {
  width: 100%;
  padding: 2rem 1rem;
}

strong {
  color: var(--tertiary-text-color);
  font-weight: 550;
}

.blog-header {
  background: var(--section-background-3);
  color: var(--sub-text-color);
  margin-top: 1rem;
  padding: 3rem 1rem;
  text-align: center;
}

.blog-header h1 {
  font-family: var(--primary-font-family);
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.blog-header .date {
  font-size: 1rem;
  color: var(--button-bgHover-1);
}

.blog-content {
  margin-inline: 0.25rem;
}

.blog-content section {
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--section-background-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-content section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.blog-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: var(--section-background-2);
}

.blog-content h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: var(--primary-text-color);
}

.blog-content p,
.blog-content li {
  font-size: 1rem;
  color: var(--secondary-text-color);
}

.blog-content ul {
  margin-left: 1.5rem;
  list-style: disc;
}

/* Pro Tip Section */
.pro-tip {
  background: #eaffeacc;
  border-left: 6px solid var(--tertiary-text-color);
}

/* CTA Section */
.cta {
  background: var(--section-background-3);
  color: var(--sub-text-color);
  text-align: center;
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.cta h2 {
  color: var(--primary-text-color);
  margin-bottom: 1rem;
}

.cta button {
  color: var(--primary-text-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: var(--button-bgHover-1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta button:hover {
  background: var(--button-bgHover-2);
  transform: translateY(-2px);
}

/* FAQ Styling (if needed later) */
.faq {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-left: 4px solid var(--tertiary-text-color);
  background: var(--section-background-1);
  border-radius: 10px;
}

.faq h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-text-color);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.5rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  .blog-content h3 {
    font-size: 1.05rem;
  }

  .cta button {
    width: 100%;
  }
}