/* LLMForge Custom Styles */

.md-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.md-header__title {
    font-weight: 700;
}

.md-button {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.md-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card styling */
.grid.cards {
    gap: 1.5rem;
}

.grid.cards > .card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.grid.cards > .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Code block enhancements */
.md-content code {
    border-radius: 4px;
    padding: 0.2em 0.4em;
}

.highlight {
    border-radius: 8px;
}

/* Navigation enhancements */
.md-nav__link {
    border-radius: 6px;
    padding: 0.5rem;
    transition: background 0.2s ease;
}

.md-nav__link:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Admonition styling */
.admonition {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Table styling */
.md-table {
    border-radius: 8px;
    overflow: hidden;
}

.md-table th {
    background: #f5f5f5;
}

/* Home page hero */
[data-md-page="home"] .md-hero {
    padding: 4rem 0;
}

/* Footer styling */
.md-footer {
    background: #1e3a5f;
}

/* Contributor cards */
.contributor-card {
    display: inline-block;
    margin: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    text-align: center;
    transition: all 0.3s ease;
    width: 150px;
}

.contributor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.contributor-card a {
    text-decoration: none;
    color: inherit;
}

.contributor-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.contributor-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contributor-count {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}
