/* File: wwwroot/css/sections.css | Shared section-level utilities */
.section-title {
    margin: 0 0 1.25rem;
}

.btn-primary {
    display: inline-block;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    padding: .6rem 1rem;
    border-radius: .5rem;
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.project-detail {
    display: grid;
    gap: 1rem;
}

.project-detail img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.project-meta {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.project-meta div {
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    padding: .75rem;
    background: var(--color-surface);
}

.project-meta dt {
    font-weight: 700;
}

.project-meta dd {
    margin: .35rem 0 0;
    color: var(--color-text-muted);
}

@media (max-width: 700px) {
    .project-meta {
        grid-template-columns: 1fr;
    }
}


.notfound {
    min-height: calc(100vh - 200px); /* dostosujemy */
    display: flex;
    align-items: center;
    justify-content: center;
}


.notfound-container {
    text-align: center;
    margin: 0 auto;
}

.notfound-code {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F2B705;
}

.notfound-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.notfound-text {
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.notfound-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


