/* ai_creative.css - Creative Delight Theme */

.theme-creative {
    --accent-color: #d946ef; /* Fuchsia/Purple */
    --accent-glow: rgba(217, 70, 239, 0.4);
    --bg-light: #fdf4ff;
    --border-light: #f0abfc;
    --text-dark: #701a75;
    --text-mute: #86198f;
    --box-shadow: 0 10px 30px rgba(217, 70, 239, 0.15);
    
    /* Sticky Sidebar Fix applied locally */
    overflow-x: clip; 
}

/* creative Hero Section */
.creative-hero {
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.creative-hero i {
    font-size: 5rem;
    color: #7c3aed;
    opacity: 0.9;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Info Box Styling (Replacing inline styles) */
.creative-info-box {
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.creative-info-box h3 {
    margin-top: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
}

.creative-info-box h3 i {
    color: var(--accent-color);
}

.creative-info-box p {
    color: var(--text-mute);
}

.creative-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0.5rem;
}

.creative-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #4a044e;
    font-weight: 500;
}

.creative-list li::before {
    content: "\f1d8"; /* fa-paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
    top: 4px;
}

/* AI Bridge Section - Creative Theme */
/* AI Bridge Section - Legacy Style Decomposed */
.ai-bridge-section {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #bae6fd;
    box-shadow: none; /* Legacy had no shadow here */
}

.ai-bridge-section h3 {
    margin-top: 0;
    color: #0369a1; /* Legacy Blue */
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ai-bridge-section p {
    font-size: 1rem;
    color: #64748b; /* Restored original slate color */
    line-height: 1.6;
}

.prompt-card {
    background: #fff;
    border: 2px dashed #7dd3fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: none; /* Legacy default */
}

.prompt-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.1);
}

.prompt-label {
    position: absolute;
    top: -0.8rem;
    left: 1.5rem;
    background: #38bdf8;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: none;
}

.prompt-content {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-family: inherit;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
    border-color: #cbd5e1; /* Keep border same or default */
}

.copy-btn.copied {
    background: #dcfce7 !important;
    color: #166534 !important;
    border-color: #86efac !important;
}

.ai-launch-pad {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.launch-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    box-shadow: none;
}

.launch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(110%);
}

.launch-btn.chatgpt { background: #10a37f; }
.launch-btn.gemini { background: #3b82f6; } /* Google Blue Legacy */
.launch-btn.claude { background: #d97757; }

/* Footer Styling */
.partner-footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    font-size: 0.9rem;
}
