/* All styles are now scoped to the #grewfont-component container */

#grewfont-component {
    font-family: 'Inter', sans-serif;
    color: #333;
    /* The background color is now on the container, not the body */
    background-color: #E1FCF6; 
}

#grewfont-component a {
    text-decoration: none;
    color: inherit;
}

#grewfont-component ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header Styles */
#grewfont-component .header-main {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                inset 0 -1px 0px rgba(0, 0, 0, 0.03);
}

#grewfont-component .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

#grewfont-component .logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

/* New Logo Color Scheme */
#grewfont-component .logo .logo-g { color: #000000; }
#grewfont-component .logo .logo-rew { color: #1B5244; }
#grewfont-component .logo .logo-font { color: #62CBB1; }

#grewfont-component .nav-main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

#grewfont-component .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

#grewfont-component .nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1B5244;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

#grewfont-component .nav-links a:hover { color: #62CBB1; }

#grewfont-component .nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #62CBB1;
    transition: width 0.3s ease;
}

#grewfont-component .nav-links a:not(.cta-button):hover::after { width: 100%; }

#grewfont-component .nav-links .cta-button {
    background-color: #FF4040;
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#grewfont-component .nav-links .cta-button:hover {
    background-color: #E63939;
    transform: translateY(-2px);
    color: #FFFFFF;
}

#grewfont-component .hamburger { display: none; cursor: pointer; }

#grewfont-component .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #1B5244;
    margin: 6px 0;
    transition: 0.4s;
}

/* Hero Section */
#grewfont-component .hero {
    text-align: center;
    padding: 8rem 2rem;
}

#grewfont-component .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

#grewfont-component .hero p {
    font-size: 1.2rem;
    color: #555;
}

/* Footer Styles */
#grewfont-component .footer-main {
    background-color: #FFFFFF;
    color: #000000;
    padding: 4rem 5rem 2rem;
    box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.05);
}

#grewfont-component .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

#grewfont-component .footer-brand, #grewfont-component .footer-links { flex: 1 1 300px; }

#grewfont-component .footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer Logo Colors */
#grewfont-component .footer-brand .logo-g { color: #000000; }
#grewfont-component .footer-brand .logo-rew { color: #1B5244; }
#grewfont-component .footer-brand .logo-font { color: #62CBB1; }

#grewfont-component .footer-links { display: flex; gap: 2rem; }

#grewfont-component .link-section h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #000000;
}

#grewfont-component .link-section ul li { margin-bottom: 1rem; }

#grewfont-component .link-section a {
    font-weight: 500;
    color: #1B5244;
    position: relative;
}

#grewfont-component .link-section a:hover { color: #62CBB1; }

#grewfont-component .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #EAEAEA;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    #grewfont-component .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    #grewfont-component .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 2rem 0;
        gap: 1.5rem;
    }
    #grewfont-component .hamburger { display: block; }
    #grewfont-component .nav-main.active { max-height: 500px; }
    #grewfont-component .hamburger.active .line:nth-child(1) { transform: rotate(-45deg) translate(-8px, 7px); }
    #grewfont-component .hamburger.active .line:nth-child(2) { opacity: 0; }
    #grewfont-component .hamburger.active .line:nth-child(3) { transform: rotate(45deg) translate(-7px, -6px); }
}

@media screen and (max-width: 768px) {
    #grewfont-component .header-container { padding: 1rem 1.5rem; }
    #grewfont-component .hero h1 { font-size: 3rem; }
    #grewfont-component .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #grewfont-component .footer-links { justify-content: center; }
}





























/* --- START: FONT GENERATOR STYLES (ENCAPSULATED) --- */

/* The main wrapper ensures these styles don't affect the rest of your site. */
.font-generator-wrapper {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* General Section Styling */
.font-generator-wrapper .font-section {
    box-sizing: border-box;
}
.font-generator-wrapper .font-section-container {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.font-generator-wrapper .text-center {
    text-align: center;
}

/* Typography */
.font-generator-wrapper .font-section-title {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
    color: #1B5244;
}
.font-generator-wrapper .font-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #555;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-align: center;
}
.font-generator-wrapper .font-main-headline {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}
.font-generator-wrapper .font-subheadline {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Colors */
.font-generator-wrapper .color-black { color: #000000; }
.font-generator-wrapper .color-light-green { color: #62CBB1; }
.font-generator-wrapper .color-dark-green { color: #1B5244; }

/* Grid & Card System */
.font-generator-wrapper .font-grid-container,
.font-generator-wrapper .font-grid-container-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.font-generator-wrapper .font-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.font-generator-wrapper .font-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.font-generator-wrapper .font-card-icon { font-size: 2.2rem; color: #62CBB1; margin-bottom: 15px; }
.font-generator-wrapper .font-card-title { font-size: 1.3rem; color: #1B5244; margin-top: 0; margin-bottom: 10px; font-weight: 700; }
.font-generator-wrapper .font-card-text { color: #333; line-height: 1.6; font-size: 0.95rem; margin: 0; }

/* Section-Specific Styles */
.font-generator-wrapper .hero-section-style { background-color: #E1FCF6; }
.font-generator-wrapper .features-section-style,
.font-generator-wrapper .examples-section-style,
.font-generator-wrapper .faq-section-style { background-color: #FFFFFF; }
.font-generator-wrapper .how-it-works-style,
.font-generator-wrapper .benefits-style { background-color: #f7fdfb; border-top: 1px solid #eafaf6; border-bottom: 1px solid #eafaf6; }

/* How It Works Section */
.font-generator-wrapper .font-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1B5244;
    background-color: #E1FCF6;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

/* Examples Section */
.font-generator-wrapper .font-grid-container-examples { gap: 20px; }
.font-generator-wrapper .font-example-card { background: #fdfdfd; border-radius: 10px; padding: 20px; text-align: center; border: 1px solid #eee; }
.font-generator-wrapper .font-example-caption { color: #333; font-style: italic; margin-bottom: 10px; font-size: 0.9rem; }
.font-generator-wrapper .font-example-text { font-size: 1.3rem; word-wrap: break-word; font-weight: bold; }

/* Benefits Section */
.font-generator-wrapper .font-benefits-list { list-style: none; padding: 0; margin: 40px auto 0 auto; display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
.font-generator-wrapper .font-benefit-item { display: flex; align-items: center; gap: 15px; background: #fff; padding: 15px 20px; border-radius: 8px; color: #333; font-size: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.font-generator-wrapper .font-benefit-item::before { content: '✔'; color: #fff; background-color: #62CBB1; font-size: 0.9rem; font-weight: bold; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FAQ Section */
.font-generator-wrapper .font-faq-container { max-width: 750px; margin: 40px auto 0; }
.font-generator-wrapper .font-faq-item { border-bottom: 1px solid #e0e0e0; }
.font-generator-wrapper .font-faq-item:last-child { border-bottom: none; }
.font-generator-wrapper .font-faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 5px; font-size: 1.1rem; font-weight: 600; text-align: left; color: #000000; background: none; border: none; cursor: pointer; }
.font-generator-wrapper .font-faq-question::after { content: '+'; font-size: 1.6rem; color: #62CBB1; transition: transform 0.3s ease; }
.font-generator-wrapper details[open] .font-faq-question::after { transform: rotate(45deg); }
.font-generator-wrapper .font-faq-answer { padding: 0px 10px 18px 5px; color: #333; line-height: 1.7; font-size: 0.95rem; }
.font-generator-wrapper .font-faq-answer p { margin: 0; }

/* CTA Section */
.font-generator-wrapper .cta-style { background-color: #1B5244; }
.font-generator-wrapper .cta-style .font-section-title { color: #FFFFFF; }
.font-generator-wrapper .font-cta-text { color: #e1fcf6; max-width: 550px; margin: 0 auto 30px auto; }
.font-generator-wrapper .font-cta-button { background-color: #FF4040; color: #FFFFFF; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease; }
.font-generator-wrapper .font-cta-button:hover { background-color: #fa2a2a; transform: translateY(-2px); }

/* --- END: FONT GENERATOR STYLES --- */







































/* --- START: STYLES FOR TEXT-HEAVY PAGES (PRIVACY, CONTACT, ETC.) --- */

.privacy-policy-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #FFFFFF;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    line-height: 1.7;
}

/* Main Page Title (H1) */
.privacy-policy-container h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1B5244;
    margin-top: 0;
    margin-bottom: 5px;
    border-bottom: 2px solid #eafaf6;
    padding-bottom: 15px;
}

/* Special styling for the first letter of the title */
.privacy-policy-container .privacy-policy-first-letter {
    font-size: 1.2em;
    color: #62CBB1;
}

/* Effective Date Styling */
.privacy-policy-container .privacy-policy-effective-date {
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

/* Styling for each major section */
.privacy-policy-container .privacy-policy-section {
    margin-bottom: 40px;
}

/* Section Headlines (H2) */
.privacy-policy-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B5244;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Sub-headlines (H3) */
.privacy-policy-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B5244;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Standard Paragraph Text */
.privacy-policy-container p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Unordered Lists (UL) and List Items (LI) */
.privacy-policy-container ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.privacy-policy-container li {
    margin-bottom: 8px;
}

/* Link Styling */
.privacy-policy-container a {
    color: #62CBB1;
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}

/* Special styling for the final contact list */
.privacy-policy-container .privacy-policy-contact-list {
    list-style: none;
    padding-left: 0;
}

/* --- END: STYLES FOR TEXT-HEAVY PAGES --- */
































/* --- START: STYLES FOR CONTACT US PAGE --- */

.contact-us-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #FFFFFF;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.contact-us-container h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1B5244;
    margin-top: 0;
    margin-bottom: 5px;
    border-bottom: 2px solid #eafaf6;
    padding-bottom: 15px;
}

.contact-us-container .contact-us-first-letter {
    font-size: 1.2em;
    color: #62CBB1;
}

.contact-us-container .contact-us-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1B5244;
    margin-bottom: 8px;
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box; /* Important for padding and width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #62CBB1;
    box-shadow: 0 0 0 3px rgba(98, 203, 177, 0.2);
}

.contact-form .form-button {
    display: inline-block;
    background-color: #FF4040;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .form-button:hover {
    background-color: #fa2a2a;
    transform: translateY(-2px);
}

/* --- END: STYLES FOR CONTACT US PAGE --- */




























/* Import a professional sans-serif font and Font Awesome for icons */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* --- Coming Soon Section V6 Styling --- */
.grewfont-coming-soon-v6 {
    font-family: 'Inter', sans-serif;
    background-color: #f7f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.grewfont-coming-soon-v6 .container {
    max-width: 700px;
    width: 100%;
}

/* --- Logo --- */
.grewfont-coming-soon-v6 .logo {
    font-size: 4.5em;
    font-weight: 800;
    margin: 0 auto 20px auto;
    letter-spacing: -3px;
    line-height: 1;
}
.grewfont-coming-soon-v6 .logo .logo-g { color: #000000; }
.grewfont-coming-soon-v6 .logo .logo-rew { color: #1B5244; }
.grewfont-coming-soon-v6 .logo .logo-font { color: #62CBB1; }

/* --- Typography --- */
.store-headline {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}
.store-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    margin: 0 auto 40px auto;
    max-width: 600px;
}
.section-title {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 25px;
}

/* --- Features Preview Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.feature-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}
.feature-icon {
    font-size: 1.8em;
    color: #1B5244; /* Brand color */
    margin-bottom: 15px;
}
.feature-item h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}
.feature-item p {
    font-size: 0.95em;
    color: #777;
    line-height: 1.6;
    margin: 0;
}








































/* --- START: STYLES FOR BLOG PAGE --- */

.blog-page-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Blog Page Header */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1B5244;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Grid for Articles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative; /* Added for positioning the empty message */
    min-height: 200px; /* NEW: Prevents the container from collapsing completely */
}

/* NEW: Styles for when the blog grid has no articles inside it */
.blog-grid:empty::after {
    content: "There are no articles to display at the moment.";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    color: #777;
    text-align: center;
    width: 100%;
}


/* Individual Article Card Styling */
.blog-article-card {
    background-color: #FFFFFF;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Card Image */
.card-image-link {
    display: block;
}
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Card Content Area */
.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category Tag */
.card-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #62CBB1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Article Title */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B5244;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #62CBB1;
}

/* Article Excerpt */
.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

/* "Read More" Link */
.card-read-more {
    display: inline-block;
    font-weight: 700;
    color: #1B5244;
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.card-read-more:hover {
    color: #62CBB1;
    transform: translateX(4px);
}

/* --- END: STYLES FOR BLOG PAGE --- */










































/*
=================================================================
 REUSABLE & RESPONSIVE GENERATOR STYLES - NEW THEME
=================================================================
*/

/* --- CSS Variables and Root Styles --- */
:root {
    /* Primary Colors */
    --gen-primary-color: #1B5244;      /* Dark Green (Headings, Buttons, CTA Background) */
    --gen-accent-color: #FF4040;       /* Bright Red (Main CTA Button) */
    --gen-accent-dark: #D90000;         /* Darker red for hover */
    --gen-highlight-color: #62CBB1;     /* Light Green/Teal (Accents, Links) */

    /* Neutral & Text Colors */
    --gen-text-hero: #000000;           /* Black (Hero Text - not used here, but available) */
    --gen-text-dark: #333333;           /* Dark Gray (Body Text) */
    --gen-text-light: #555555;          /* Medium Gray (Subtitles, Descriptions) */
    --gen-white: #FFFFFF;              /* White (Text on dark backgrounds, Card backgrounds) */
    
    /* Background & Border Colors */
    --gen-light-bg: #f7fdfb;            /* Very Light Teal (Page background) */
    --gen-card-bg: #FFFFFF;             /* White (Card backgrounds) */
    --gen-input-border: #dddddd;        /* Lighter Gray (Form input borders) */
    --gen-card-border: #f0f0f0;         /* Light Gray (Borders on cards) */

    /* Effects */
    --gen-shadow-color: rgba(27, 82, 68, 0.1); /* Shadow based on primary color */
    --gen-focus-ring-color: rgba(255, 64, 64, 0.25); /* Focus ring based on accent color */
}

/* --- Universal Settings --- */
body {
    margin: 0;
    background-color: var(--gen-light-bg);
    font-family: 'Inter', sans-serif;
}

/* --- Reusable Generator Component Styles --- */
.generator-section {
    padding: clamp(2rem, 8vw, 4rem) 1rem;
    overflow-x: hidden;
}

.generator-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--gen-card-bg);
    border-radius: 1rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0 10px 25px -5px var(--gen-shadow-color), 0 10px 10px -5px var(--gen-shadow-color);
    border: 1px solid var(--gen-card-border);
}

/* --- Header --- */
.generator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.generator-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--gen-primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.generator-subtitle {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: var(--gen-text-light);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Input Field --- */
.generator-input-section {
    margin-bottom: 2.5rem;
}

.generator-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1em;
    border: 1px solid var(--gen-input-border);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--gen-white);
    color: var(--gen-text-dark);
    box-sizing: border-box;
}

.generator-input:focus {
    border-color: var(--gen-highlight-color);
    box-shadow: 0 0 0 4px var(--gen-focus-ring-color);
}

/* --- Results Grid (Responsive) --- */
.generator-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.result-item {
    background: var(--gen-card-bg);
    border: 1px solid var(--gen-card-border);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-wrap: wrap;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px var(--gen-shadow-color);
}

.result-label {
    font-weight: 600;
    color: var(--gen-text-light);
    font-size: 0.9em;
    text-align: left;
    flex-basis: 150px;
    flex-shrink: 0;
}

.result-output {
    font-size: 1.25em;
    color: var(--gen-text-dark);
    text-align: left;
    word-break: break-all;
    flex-grow: 1;
    flex-basis: 50%;
    min-width: 0;
}

/* --- Copy Button --- */
.copy-btn {
    background: var(--gen-accent-color);
    color: var(--gen-white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 0.9em;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--gen-accent-dark);
    transform: translateY(-2px);
}

/* --- Copy Success Message --- */
.copy-message {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%, 150px);
    background: var(--gen-primary-color);
    color: var(--gen-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s;
    font-size: 14px;
    text-align: center;
}

.copy-message.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* --- MEDIA QUERIES for Tablet and Desktop --- */
@media (min-width: 768px) {
    .generator-results {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .generator-results {
        grid-template-columns: 1fr;
    }
}


















































/* ==========================================================
   FINAL SOCIAL BAR (ULTRA-COMPACT WITH TEXT ABOVE)
   ========================================================== */

/* This container holds both the text and the icon bar */
.floating-widget-container {
    position: fixed;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers the bar and text */
    z-index: 2000;
}

/* The small share counter text style */
.share-counter {
    font-size: 11px; /* Very small text */
    font-family: sans-serif;
    color: #888; /* Soft grey color */
    font-weight: 600; /* A bit bold */
    margin-bottom: 8px; /* Space between text and bar */
    white-space: nowrap;
}

/* The compact icon bar */
.floating-social-bar {
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    padding: 6px 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-social-bar a,
.floating-social-bar button {
    background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: 50%; display: flex;
    text-decoration: none; position: relative;
    transition: background-color 0.2s ease;
}

/* Remove blue outline on click */
.floating-social-bar a:focus,
.floating-social-bar button:focus {
    outline: none; box-shadow: none;
}

.floating-social-bar a:hover,
.floating-social-bar button:hover {
    background-color: #f0f0f0;
}

.floating-social-bar i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.floating-social-bar a:hover i,
.floating-social-bar button:hover i {
    transform: scale(1.1);
}

/* Icon Brand Colors */
#share-twitter i  { color: #1DA1F2; }
#share-facebook i { color: #1877F2; }
#share-pinterest i{ color: #E60023; }
#share-linkedin i { color: #0A66C2; }
#share-reddit i   { color: #FF4500; }
#share-telegram i { color: #26A5E4; }
#share-email i    { color: #7f7f7f; }
#copy-link i      { color: #343a40; }


/* Tooltip */
.floating-social-bar [data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute; left: 130%; top: 50%;
    transform: translateY(-50%);
    background-color: #212529; color: #fff;
    padding: 4px 8px; border-radius: 4px;
    font-size: 13px; white-space: nowrap;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease;
}

.floating-social-bar [data-tooltip]:hover::after {
    opacity: 1; visibility: visible;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .floating-widget-container {
        bottom: 8px; left: 50%; top: auto;
        transform: translateX(-50%);
        flex-direction: row; /* Puts text and bar side-by-side */
        align-items: center; /* Vertically aligns them */
        background-color: #ffffff;
        padding: 5px 10px;
        border-radius: 30px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    }

    .share-counter {
        margin-bottom: 0; /* Remove margin */
        margin-right: 8px; /* Add space to the right of the text */
        font-size: 10px;
    }

    .floating-social-bar {
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 0;
    }

     .floating-social-bar a,
     .floating-social-bar button {
        padding: 6px; /* Even smaller buttons for mobile */
     }

     .floating-social-bar i {
        font-size: 15px;
     }

    .floating-social-bar [data-tooltip]::after {
        left: 50%; top: -160%;
        transform: translateX(-50%);
    }
}


































/* --- START: STYLES FOR "NO BACKGROUND" GENERATOR SHOWCASE --- */

/* The <section> acts as a spacer with a neutral background color */
.generator-showcase-pro {
    padding: 40px 20px;
    background-color: #f7fdfb; /* Or #FFFFFF, depending on your page bg */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* The inner container is now transparent */
.generator-showcase-pro .font-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0; /* No extra padding needed */
}

/* Titles and Subtitles now use the default page text colors */
.generator-showcase-pro .showcase-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: #1B5244; /* Dark Green Title */
    text-align: center;
    margin-bottom: 10px;
}

.generator-showcase-pro .showcase-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #555; /* Medium Gray Subtitle */
    max-width: 500px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    text-align: center;
}

/* Flexbox Grid for perfect centering of items */
.generator-grid-pro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Individual Generator Item Styling */
.generator-card-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 8px;
    background-color: #FFFFFF; /* White card background */
    border: 1px solid #f0f0f0; /* Subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 125px; /* Consistent width */
}

.generator-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

/* Icon Wrapper */
.generator-icon-pro-wrapper {
    width: 60px;
    height: 60px;
    background-color: #E1FCF6; /* Lightest teal background for the icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.generator-icon-pro {
    font-size: 1.8rem;
    line-height: 1;
}

/* Card Title */
.generator-title-pro {
    font-size: 1rem;
    font-weight: 600;
    color: #1B5244; /* Dark Green Title */
    margin: 0 0 5px 0;
}

/* Short Description Text */
.generator-text-pro {
    font-size: 0.8rem;
    color: #555; /* Medium Gray Text */
    line-height: 1.4;
    margin: 0;
}

/* --- END: STYLES FOR "NO BACKGROUND" GENERATOR SHOWCASE --- */









































































  /* Import the Lato font for the entire article */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* =================================================== */
/* --- 1. GENERAL ARTICLE STYLING (THE CONTAINER) --- */
/* =================================================== */
.article-section {
    font-family: 'Lato', sans-serif; /* Applies Lato font to everything inside */
    color: #333; /* Default text color */
    line-height: 1.6; /* Spacing between lines of text */
    max-width: 720px; /* Sets the width of the article */
    margin: 30px auto; /* Centers the article on the page */
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px; /* Rounded corners for the container */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); /* Subtle shadow */
}

/* ============================================== */
/* --- 2. HEADINGS AND PARAGRAPHS (THE TEXT) --- */
/* ============================================== */
.article-section h1 {
    font-size: 2.1em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.article-section h2 {
    font-size: 1.6em;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #eaeaea; /* Line under subheadings */
    padding-bottom: 0.3em;
}

.article-section p {
    font-size: 1em;
    margin-bottom: 1.2em;
    color: #4f4f4f; /* Slightly softer text color for paragraphs */
}

.article-section strong {
    font-weight: 700;
    color: #000;
}

/* ======================================== */
/* --- 3. REFERENCE LINKS (IN RED) --- */
/* ======================================== */
.article-section a {
    color: #D32F2F; /* Vibrant Red */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.article-section a:hover {
    color: #B71C1C; /* Darker Red on hover */
    text-decoration: underline;
}

/* ===================================================== */
/* --- 4. TABLE OF CONTENTS (THE BOX WITH ICONS) --- */
/* ===================================================== */
/* This targets ONLY the list that comes right after the "Table of Contents" h2 */
.article-section h2 + ul {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 2em 0;
    list-style-type: none; /* Remove default bullets */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.article-section h2 + ul li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.article-section h2 + ul li:last-child {
    margin-bottom: 0;
}

/* This adds the icon before each list item in the TOC */
.article-section h2 + ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da"; /* Chevron icon */
    color: #D32F2F;
    margin-right: 12px;
    transition: transform 0.2s ease-in-out;
    display: inline-block;
}

.article-section h2 + ul li:hover::before {
    transform: translateX(3px); /* Move icon on hover */
}

/* This styles the links INSIDE the TOC */
.article-section h2 + ul li a {
    font-weight: normal;
    color: #343a40;
    text-decoration: none;
}

.article-section h2 + ul li a:hover {
    color: #D32F2F;
    text-decoration: none;
}

/* ================================= */
/* --- 5. IMAGES IN THE ARTICLE --- */
/* ================================= */
.article-section img {
    border-radius: 6px; /* Rounded corners for images */
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
}

/* ============================================= */
/* --- 6. RESPONSIVE DESIGN (FOR MOBILE) --- */
/* ============================================= */
@media (max-width: 768px) {
    .article-section {
        margin: 15px;
        padding: 20px;
    }

    .article-section h1 {
        font-size: 1.8em;
    }

    .article-section h2 {
        font-size: 1.4em;
    }
}