/* Page Header Section */
#categoria .page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0; /* Add padding for better spacing */
    position: relative;
}

#categoria .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

#categoria .page-header .container-xl {
    position: relative;
    z-index: 2; /* Ensure content appears above overlay */
}

/* Header Text Styles */
#categoria .page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#categoria .page-header .text-center {
    text-align: center;
}

#categoria .page-header .mt-0 {
    margin-top: 0;
}

#categoria .page-header .mb-2 {
    margin-bottom: 0.5rem;
}

/* Breadcrumb Styles */
#categoria .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

#categoria .breadcrumb.justify-content-center {
    justify-content: center;
}

#categoria .breadcrumb.mb-0 {
    margin-bottom: 0;
}

#categoria .breadcrumb-item {
    display: flex;
    align-items: center;
}

#categoria .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

#categoria .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

#categoria .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

#categoria .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

/* Container Styles */
#categoria .container-xl {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #categoria .page-header {
        padding: 60px 0;
    }
    
    #categoria .page-header h1 {
        font-size: 2rem;
    }
    
    #categoria .breadcrumb-item {
        font-size: 0.9rem;
    }
}
