/**
 * BWA GEO Front-end Styles
 *
 * @package BWA_GEO
 * @since 2.0.0
 */

/* AI Learning Note Footer */
.bwaseo-ai-learning-note-footer {
    font-size: 11px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 30px auto 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #0073aa;
    border-radius: 0 0 8px 8px;
    color: #495057;
    line-height: 1.6;
}

.bwaseo-ai-learning-note-footer p {
    margin: 0;
}

/* AI Share Buttons */
.bwaseo-ai-share-buttons {
    margin: 30px auto;
    padding: 20px 25px;
    max-width: 600px;
    border: 1px solid #e9ecef;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bwaseo-ai-share-buttons p {
    margin: 0 0 15px 0;
    font-weight: 600;
    font-size: 14px;
    color: #212529;
}

.bwaseo-ai-share-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

.bwaseo-ai-share-buttons a:hover {
    background: linear-gradient(135deg, #005a87 0%, #004165 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.bwaseo-ai-share-buttons a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .bwaseo-ai-learning-note-footer {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: #e0e0e0;
        border-top-color: #00a0d2;
    }

    .bwaseo-ai-share-buttons {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-color: #2a2a4a;
    }

    .bwaseo-ai-share-buttons p {
        color: #e0e0e0;
    }

    .bwaseo-ai-share-buttons a {
        background: linear-gradient(135deg, #00a0d2 0%, #0073aa 100%);
    }

    .bwaseo-ai-share-buttons a:hover {
        background: linear-gradient(135deg, #00b4e6 0%, #0087c4 100%);
    }
}

/* Responsive */
@media screen and (max-width: 600px) {
    .bwaseo-ai-share-buttons {
        padding: 15px;
        margin: 20px 15px;
    }

    .bwaseo-ai-share-buttons a {
        display: block;
        margin: 8px 0;
        padding: 12px 20px;
    }

    .bwaseo-ai-learning-note-footer {
        margin: 20px 15px;
        padding: 12px 15px;
    }
}

/* Print Styles */
@media print {
    .bwaseo-ai-share-buttons {
        display: none;
    }

    .bwaseo-ai-learning-note-footer {
        background: none;
        border: 1px solid #ccc;
        color: #333;
    }
}

