/**
 * Skill Farm SEO Engine - Frontend Base Styles
 */

/* Import premium theme styles */
@import url('premium-theme.css');

/* Additional frontend styles */
.sfse-search-form {
    max-width: 600px;
    margin: 40px auto;
}

.sfse-search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.sfse-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--sfse-bg-tertiary);
    border-radius: 50px;
    font-size: 16px;
}

.sfse-search-button {
    padding: 12px 30px;
    background: var(--sfse-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sfse-search-button:hover {
    background: var(--sfse-gold);
    color: var(--sfse-primary);
}

.sfse-search-suggestions {
    text-align: center;
    color: var(--sfse-text-muted);
    font-size: 14px;
}

.sfse-search-suggestions a {
    color: var(--sfse-gold);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.sfse-search-suggestions a:hover {
    color: var(--sfse-gold-hover);
}

.sfse-no-results {
    text-align: center;
    padding: 40px;
    color: var(--sfse-text-secondary);
    font-size: 18px;
}

/* Archive pages */
.sfse-archive-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--sfse-bg-primary) 0%, var(--sfse-bg-secondary) 100%);
}

.sfse-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--sfse-primary);
    margin-bottom: 10px;
}

.sfse-archive-description {
    font-size: 18px;
    color: var(--sfse-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sharing buttons */
.sfse-sharing-buttons {
    margin: 40px 0;
    padding: 30px;
    background: var(--sfse-bg-primary);
    border-radius: 12px;
    text-align: center;
}

.sfse-sharing-buttons h4 {
    margin-bottom: 20px;
    color: var(--sfse-primary);
}

.sfse-share-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sfse-share-links a {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.sfse-share-linkedin {
    background: #0077b5;
    color: white;
}

.sfse-share-twitter {
    background: #1da1f2;
    color: white;
}

.sfse-share-facebook {
    background: #1877f2;
    color: white;
}

.sfse-share-email {
    background: var(--sfse-primary);
    color: white;
}

.sfse-share-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sfse-article-card {
    animation: fadeIn 0.5s ease;
}

/* Loading states */
.sfse-loading {
    text-align: center;
    padding: 40px;
}

.sfse-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--sfse-bg-tertiary);
    border-top-color: var(--sfse-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}