/**
 * LangGraphBot WordPress Plugin Styles
 * Version: 1.1.0
 * Beautiful, theme-independent styling for AI-generated blog content
 */

/* ===== SECTIONS ===== */
.lgb-section {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.lgb-section-default {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
}

.lgb-section-primary {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid #667eea;
}

.lgb-section-secondary {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.lgb-section-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.lgb-section-content {
    color: #4a5568;
    line-height: 1.7;
}

.lgb-section-content p:last-child {
    margin-bottom: 0;
}

/* ===== HIGHLIGHTS ===== */
.lgb-highlight {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 600;
}

.lgb-highlight-yellow {
    background-color: #fef3c7;
    color: #92400e;
}

.lgb-highlight-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.lgb-highlight-green {
    background-color: #d1fae5;
    color: #065f46;
}

.lgb-highlight-red {
    background-color: #fee2e2;
    color: #991b1b;
}

/* ===== CALL TO ACTION ===== */
.lgb-cta {
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lgb-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lgb-cta-secondary {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.lgb-cta-title {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 800;
}

.lgb-cta-primary .lgb-cta-title {
    color: white;
}

.lgb-cta-secondary .lgb-cta-title {
    color: #1a202c;
}

.lgb-cta-content {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.lgb-cta-primary .lgb-cta-content {
    color: rgba(255, 255, 255, 0.95);
}

.lgb-cta-secondary .lgb-cta-content {
    color: #4a5568;
}

.lgb-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lgb-cta-primary .lgb-cta-button {
    background: white;
    color: #667eea;
}

.lgb-cta-primary .lgb-cta-button:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.lgb-cta-secondary .lgb-cta-button {
    background: #667eea;
    color: white;
}

.lgb-cta-secondary .lgb-cta-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

/* ===== LISTS ===== */
.lgb-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.lgb-list-default {
    padding-left: 0;
}

.lgb-list-boxed {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.lgb-list-item {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.lgb-list-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 1.25rem;
    height: 1.25rem;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Check icon */
.lgb-list-icon-check .lgb-list-item:before {
    content: '✓';
    font-weight: bold;
    color: #10b981;
    font-size: 1.25rem;
    line-height: 1;
}

/* Arrow icon */
.lgb-list-icon-arrow .lgb-list-item:before {
    content: '→';
    font-weight: bold;
    color: #667eea;
    font-size: 1.25rem;
    line-height: 1;
}

/* Star icon */
.lgb-list-icon-star .lgb-list-item:before {
    content: '★';
    color: #fbbf24;
    font-size: 1.25rem;
    line-height: 1;
}

/* No icon */
.lgb-list-icon-none .lgb-list-item {
    padding-left: 1rem;
}

.lgb-list-icon-none .lgb-list-item:before {
    content: '•';
    color: #cbd5e0;
    font-size: 1.5rem;
    line-height: 0.8;
}

/* ===== QUOTES ===== */
.lgb-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    font-style: italic;
}

.lgb-quote-text {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
}

.lgb-quote-author {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    font-style: normal;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .lgb-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .lgb-section-title {
        font-size: 1.25rem;
    }

    .lgb-cta {
        padding: 2rem 1.5rem;
    }

    .lgb-cta-title {
        font-size: 1.5rem;
    }

    .lgb-cta-content {
        font-size: 1rem;
    }

    .lgb-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .lgb-quote {
        padding: 1.5rem;
    }

    .lgb-quote-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .lgb-section {
        padding: 1rem;
        margin: 1rem 0;
    }

    .lgb-cta {
        padding: 1.5rem 1rem;
    }

    .lgb-cta-button {
        display: block;
        width: 100%;
    }

    .lgb-list-boxed {
        padding: 1rem;
    }
}
