/* Showcase Public Page Styles with Bootstrap 5 Enhancements */

/* Category Card Hover Effects */
.category-card-hover {
    transition: all 0.3s ease;
}

.category-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Swiper Customizations for Bootstrap 5 */
.swiper {
    padding-bottom: 2rem;
}

.swiper-pagination-bullet {
    background: #6c757d;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}

/* Enhanced Card Styling */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

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

/* Button Enhancements */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Badge Styling */
.badge {
    font-size: 0.75em;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Category Badge (Primary with link) */
.showcase-categories a.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none !important;
}

/* Project Type Badge (Info color) */
.badge.bg-info {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

.badge.bg-info:hover {
    background-color: #31d2f2 !important;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .display-6 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}
