/* Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-body);
    /* Inverted text color for contrast */
    border: 1px solid transparent;
}

[data-theme="dark"] .btn-primary {
    color: #0f172a;
    /* Dark text on white button in dark mode */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-surface);
    border-color: var(--text-muted);
}

.btn-text {
    padding: 0;
    color: var(--accent);
    background: none;
    border: none;
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Cards */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


.blog-card h3 a:hover {
    color: var(--accent);
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}