/* Dodatkowe style dla GrobNet - uzupełniają Bootstrap 5 */

/* Własne style dla lepszego wyglądu */
.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Animacje */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

/* Własne kolory dla badge */
.badge-purple {
    background-color: #8b5cf6;
}

/* Responsywność dla navbar */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
    }
}

/* Lepsze odstępy dla formularzy */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Stylowanie input-group */
.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: 1px solid #86b7fe;
}

/* Lepsze wyświetlanie komentarzy */
.comments-list .card {
    border-left: 3px solid #0d6efd;
}

/* Animacje dla alertów */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lepsze wyświetlanie statystyk */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

/* Stylowanie tabel */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Responsywność dla kart */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Lepsze wyświetlanie list */
.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

/* Stylowanie footer */
footer {
    margin-top: auto;
}

/* Lepsze odstępy */
.mb-section {
    margin-bottom: 3rem;
}

/* Ikony w navbar */
.navbar-brand i {
    margin-right: 0.5rem;
}

/* Stylowanie dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Lepsze wyświetlanie formularzy */
.form-control:focus,
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Stylowanie switch */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Lepsze wyświetlanie badge */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 500;
}

/* Animacje dla przycisków */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Stylowanie kart statystyk */
.card.border-primary,
.card.border-success,
.card.border-info,
.card.border-warning {
    border-width: 2px !important;
}

/* Lepsze wyświetlanie postów */
.post-view article {
    border-radius: 0.5rem;
}

/* Stylowanie komentarzy */
.comment-item {
    border-left: 3px solid #0d6efd;
    padding-left: 1rem;
}

/* Responsywność dla hero */
@media (max-width: 576px) {
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}
