/*
Theme Name: frenchboxx
Theme URI: https://frenchboxx.com
Author: frenchboxx
Description: Custom theme converted from React + Tailwind
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: frenchboxx
*/


/* Blog Container */
.single-blog {
  line-height: 1.8;
  font-size: 18px;
  color: #222;
}

/* Headings */
.single-blog h1,
.single-blog h2,
.single-blog h3,
.single-blog h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-blog h1 {
  font-size: 2.5rem;
}

.single-blog h2 {
  font-size: 2rem;
  border-left: 4px solid #3b82f6;
  padding-left: 10px;
}

.single-blog h3 {
  font-size: 1.5rem;
}

/* Paragraphs */
.single-blog p {
  margin-bottom: 1.2rem;
  color: #333;
}

/* Links (SEO important for UX) */
.single-blog a {
  color: #2563eb;
  text-decoration: underline;
}

.single-blog a:hover {
  color: #1d4ed8;
}

/* Images */
.single-blog img {
  border-radius: 10px;
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

/* Lists */
.single-blog ul,
.single-blog ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.single-blog li {
  margin-bottom: 0.5rem;
}

/* Blockquotes */
.single-blog blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 15px;
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
}

/* Tables */
.single-blog table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.single-blog table th,
.single-blog table td {
  border: 1px solid #ddd;
  padding: 10px;
}

.single-blog table th {
  background-color: #f3f4f6;
}

/* Code blocks */
.single-blog pre {
  background: #111;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
}

/* Author / meta */
.single-blog .meta {
  font-size: 14px;
  color: #777;
}

/* Footer tags */
.single-blog .tags a {
  background: #eef2ff;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 13px;
}

/* Mobile Optimization (SEO Core Web Vitals) */
@media (max-width: 768px) {
  .single-blog {
    font-size: 16px;
  }

  .single-blog h1 {
    font-size: 2rem;
  }

  .single-blog h2 {
    font-size: 1.6rem;
  }
}

/* Base colors */
.single-blog {
  background-color: #ffffff;
  color: #1f2937; /* gray-800 */
}

/* Headings */
.single-blog h1 {
  color: #111827; /* dark */
}

.single-blog h2 {
  color: #1d4ed8; /* blue-700 */
  border-left: 4px solid #3b82f6;
}

.single-blog h3 {
  color: #2563eb; /* blue-600 */
}

/* Paragraph */
.single-blog p {
  color: #374151; /* gray-700 */
}

/* Links */
.single-blog a {
  color: #2563eb;
  font-weight: 500;
}

.single-blog a:hover {
  color: #1e40af;
}

/* Highlight important text */
.single-blog strong {
  color: #111827;
}

/* Blockquote */
.single-blog blockquote {
  background: #eff6ff; /* light blue */
  border-left: 4px solid #3b82f6;
  color: #1e3a8a;
}

/* Code */
.single-blog pre {
  background: #0f172a; /* dark */
  color: #e5e7eb;
}

/* Tags */
.single-blog .tags a {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Buttons (if any) */
.single-blog .btn {
  background: #2563eb;
  color: white;
}

.single-blog .btn:hover {
  background: #1d4ed8;
}