/* Index Page Blog Image */
.index-blog-img {
    width: 100%;
    height: 100%; /* Set a fixed height for consistency */
    object-fit: cover; /* Ensure the image fills the box while maintaining aspect ratio */
    background-color: #f9f9f9; /* Optional: Add a background color for empty spaces */
}

/* Show Page Blog Image */
.show-blog-img {
    width: 100%;
    height: 300px; /* Set a fixed height for consistency */
    object-fit: cover; /* Ensure the entire image fits within the box without being cropped */
    background-color: #f9f9f9; /* Optional: Add a background color for empty spaces */
}

.placeholder-img {
    width: 100%;
    height: 200px; /* Match the max-height of .blog-img */
    background-color: #f0f0f0; /* Light gray background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa; /* Optional: Add text or icon */
    font-size: 16px;
    font-weight: bold;
}


.no-blogs-message {
    color: #555; /* Neutral text color */
    font-size: 18px;
    background-color: #f9f9f9; /* Light background for emphasis */
    border: 1px solid #ddd; /* Optional: Add a border */
    border-radius: 5px;
    padding: 20px;
}

.footer-dark {
    background-color: #000000; /* pure black background */
    color: #ffffff;            /* white text */
}

.footer-dark a {
    color: #61dafb;            /* bright blue links */
    text-decoration: none;
}

.footer-dark a:hover,
.footer-dark a:focus {
    color: #21a1f1;            /* lighter blue on hover/focus */
    text-decoration: underline;
}

.footer-dark .border-top {
    border-color: #222222;     /* subtle border for dark bg */
}

/* ===== About Page Styles ===== */
#about-toolyblog {
    background-color: #111;
    color: #f1f1f1;
}

#about-toolyblog .section-title {
    font-size: 2.4rem;
    font-weight: 600;
}

#about-toolyblog .highlight {
    color: #0d6efd;
}

#about-toolyblog .feature-card {
    background: #1c1c1c;
    border: 1px solid #2b2b2b;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

#about-toolyblog .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

#about-toolyblog .feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0d6efd;
}

#about-toolyblog .btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
}

#contactPage {
    background: #f8f9fa;
}

#contactPage h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}

#contactPage p.lead {
    color: #555;
}

#contactPage form {
    background: #fff;
    border-radius: 10px;
}

#contactPage .form-label {
    font-weight: 600;
}

#contactPage .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    font-weight: 600;
}

#contactPage .btn-primary:hover {
    background-color: #004494;
}

#contactPage input,
#contactPage textarea {
    border-radius: 6px;
}

#privacy-policy-page h1 {
    font-size: 2.2rem;
    color: #ffffff;
    background-color: #1d1d1d;
    padding: 1rem;
    border-radius: 0.5rem;
}

#privacy-policy-page h3 {
    color: #007bff;
    margin-top: 1.5rem;
}

#privacy-policy-page ul {
    list-style: disc;
    margin-left: 1.5rem;
}

#privacy-policy-page p, 
#privacy-policy-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

@media (prefers-color-scheme: dark) {
    #privacy-policy-page {
        background-color: #121212;
        color: #e0e0e0;
    }
    #privacy-policy-page p,
    #privacy-policy-page li {
        color: #ccc;
    }
}

#faq-page h1 {
    font-size: 2.2rem;
    color: #333;
    font-weight: bold;
}

#faq-page .accordion-button {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #0d6efd;
}

#faq-page .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #0a58ca;
}

#faq-page .accordion-body {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    color: #333;
}

@media (prefers-color-scheme: dark) {
    #faq-page {
        background-color: #121212;
        color: #f0f0f0;
    }
    #faq-page .accordion-button {
        background-color: #1e1e1e;
        color: #0dcaf0;
    }
    #faq-page .accordion-body {
        background-color: #1a1a1a;
        color: #ccc;
    }
}

#support-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d6efd;
}

#support-page p {
    font-size: 1.05rem;
    color: #555;
}

#support-page .form-label {
    font-weight: 600;
    color: #333;
}

#support-page input,
#support-page textarea {
    border-radius: 0.4rem;
    border: 1px solid #ccc;
}

#support-page .btn-primary {
    font-weight: 600;
    padding: 0.6rem 2rem;
}

#support-page .text-muted a {
    color: #0d6efd;
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    #support-page {
        background-color: #121212;
        color: #f0f0f0;
    }
    #support-page input,
    #support-page textarea {
        background-color: #1f1f1f;
        color: #fff;
        border: 1px solid #444;
    }
}

#termsPage {
    color: #333;
}

#termsPage .content {
    background-color: #f9f9f9;
}

#termsPage h1 {
    font-size: 2.5rem;
}

#termsPage h3 {
    font-size: 1.3rem;
    color: #222;
    margin-top: 1.5rem;
}

#termsPage ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

#termsPage a {
    color: #007bff;
    text-decoration: underline;
}

#disclaimerPage {
    color: #333;
}

#disclaimerPage .content {
    background-color: #f9f9f9;
}

#disclaimerPage h1 {
    font-size: 2.5rem;
}

#disclaimerPage h3 {
    font-size: 1.3rem;
    color: #222;
    margin-top: 1.5rem;
}

#disclaimerPage a {
    color: #007bff;
    text-decoration: underline;
}

#earnMoneyPage h1 {
    font-size: 2.4rem;
}

#earnMoneyPage h3 {
    color: #222;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

#earnMoneyPage ul {
    padding-left: 1.2rem;
    list-style-type: disc;
}

#earnMoneyPage .content {
    background-color: #fefefe;
    border: 1px solid #eee;
}

#earnMoneyPage a {
    color: #007bff;
    text-decoration: underline;
}

#earnMoneyPage button {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

#errorPage {
    background-color: #f9f9f9;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#errorPage h1 {
    font-size: 6rem;
    font-weight: bold;
    color: #dc3545;
}

#errorPage h2 {
    font-size: 2rem;
}

#errorPage p {
    font-size: 1rem;
    color: #666;
}

#errorPage h1 {
    font-size: 7rem;
}

#errorPage .card {
    transition: transform 0.3s ease;
}

#errorPage .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


