/*
Theme Name: TaxSure Consultancy
Author: Vijay Khemka
Description: A premium, custom-coded theme for TaxSure Consultancy.
Version: 1.0
Text Domain: taxsure
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    background-color: #F8F8F8;
    color: #1F2937;
}

/* ==========================================================================
   WordPress Blog Content Styles (.prose)
   This ensures the text you write in the WP Dashboard looks beautiful live.
   ========================================================================== */

.prose h1, 
.prose h2, 
.prose h3, 
.prose h4 {
    font-family: 'Poppins', sans-serif;
    color: #0E2A47;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.25rem; }

.prose p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-family: 'Open Sans', sans-serif;
}

.prose ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
}

.prose ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #C8A96B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.prose a:hover {
    color: #b5955a;
    text-decoration: underline;
}

/* Ensure WordPress block images resize properly */
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
/* COMMENT SECTION */
.comments-area {
    margin-top: 60px;
}

.comments-area input,
.comments-area textarea {
    background: #fff;
    font-size: 16px;
}

.comments-area input:focus,
.comments-area textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.taxsure-comment-btn {
    background: #001f4d;
    color: #fff;
    border: none;
    cursor: pointer;
}

.taxsure-comment-btn:hover {
    background: #d4af37;
    color: #001f4d;
}

.comment-list {
    margin-top: 40px;
}

.comment-body {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
}
.taxsure-comment-btn{
    background:#001f4d;
    color:#fff;
    border:none;
    cursor:pointer;
}

.taxsure-comment-btn:hover{
    background:#d4af37;
    color:#001f4d;
}

.comments-area input,
.comments-area textarea{
    width:100%;
}
/* ==========================================================================
   SOCIAL SHARE BUTTONS
   ========================================================================== */

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.share-whatsapp  { background: #e7f9ef; color: #1a7a3e; }
.share-whatsapp:hover  { background: #25D366; color: #fff; }

.share-facebook  { background: #e7eef9; color: #1877F2; }
.share-facebook:hover  { background: #1877F2; color: #fff; }

.share-twitter   { background: #e7f0f9; color: #000; }
.share-twitter:hover   { background: #000; color: #fff; }

.share-linkedin  { background: #e7f0f8; color: #0A66C2; }
.share-linkedin:hover  { background: #0A66C2; color: #fff; }

.share-copy      { background: #f3f4f6; color: #374151; }
.share-copy:hover      { background: #0E2A47; color: #fff; }
.share-copy-success    { background: #0E2A47 !important; color: #C8A96B !important; }

/* ==========================================================================
   BLOG CARD — read time badge
   ========================================================================== */
.blog-card-meta {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* ==========================================================================
   RELATED POSTS
   ========================================================================== */
.related-posts-grid a {
    text-decoration: none;
}

/* ==========================================================================
   TABLE OF CONTENTS — sidebar
   ========================================================================== */
#toc-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8125rem;
    text-decoration: none;
}

#toc-nav a:hover {
    text-decoration: none;
}

/* ==========================================================================
   PROSE — blockquote and table improvements for blog posts
   ========================================================================== */
.prose blockquote {
    border-left: 4px solid #C8A96B;
    background: #fdf9f2;
    padding: 1rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: normal;
    color: #374151;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.prose table th {
    background: #0E2A47;
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.prose table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4B5563;
}

.prose table tr:nth-child(even) td {
    background: #f9fafb;
}

/* Scroll wrapper for wide tables on mobile */
.prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}