/*
Theme Name:     Generatepress-child
Theme URI:      
Description:    Generatepress child theme.
Author:         Me
Author URI:     
Template:       generatepress
Version:        0.1.0
*/

/* === Claude Code: Visual Upgrade === */

/* 1. Global Typography */
body, button, input, select, textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* 2. AI Tool Cards */
.ai-tools-grid {
    padding: 20px 0;
}
.tool-card {
    border: none !important;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.tool-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}
.tool-card .button {
    background: linear-gradient(to right, #2563eb, #3b82f6) !important;
    border: none;
    color: white !important;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
}

/* 3. News Feed Timeline */
.news-feed-widget {
    position: relative;
    padding-left: 20px !important;
    border-left: 2px solid #e5e7eb !important;
}
.news-feed-widget li {
    position: relative;
    padding-bottom: 20px;
}
.news-feed-widget li::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    border: 2px solid #fff;
}
.news-feed-widget small {
    color: #6b7280 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dark Mode Adjustments */
body.dark-mode .tool-card {
    background: #2d2d2d;
    box-shadow: none;
}
body.dark-mode .news-feed-widget {
    border-left-color: #444 !important;
}
body.dark-mode .news-feed-widget li::before {
    background: #60a5fa;
    border-color: #1a1a1a;
}
